We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f08da7 commit 527d369Copy full SHA for 527d369
.ci/scripts/calc_constraints.py
@@ -53,6 +53,9 @@ def to_upper_bound(req):
53
if requirement.name == "pulpcore":
54
# An exception to allow for pulpcore deprecation policy.
55
return fetch_pulpcore_upper_bound(requirement)
56
+ # skip requirement with environment scopes. E.g 'foo==1.0.0;python_version>=3.9'
57
+ if requirement.marker:
58
+ return f"# ENVIRONMENT IS UNTRACKABLE: {req}"
59
for spec in requirement.specifier:
60
if spec.operator == "~=":
61
return f"# NO BETTER CONSTRAINT: {req}"
0 commit comments