Skip to content

Commit b967eba

Browse files
committed
Remove python_version constraints
The python_version actually means the constraint only applies to that Python version. We need the packages installed no matter the Python version; we just need the constraint on Python < 3.11. It's simpler and still works to not add the python_version, so let's just remove them.
1 parent 41093bd commit b967eba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

requirements.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ setuptools==68.2.2
3131
# because pip may try to install incompatible versions, or the higher versions
3232
# require Python 3.11+ and we want to maintain Python 3.10 compatibility.
3333
jax<=0.5
34-
contourpy<=1.3.2; python_version < "3.11"
35-
networkx<=3.4; python_version < "3.11"
34+
contourpy<=1.3.2
35+
networkx<=3.4

0 commit comments

Comments
 (0)