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 fcf728d commit b9495edCopy full SHA for b9495ed
pyproject.toml
@@ -35,7 +35,7 @@ dynamic = ["version"]
35
dependencies = ["cffi==1.15.0"]
36
37
[project.optional-dependencies]
38
-numpy = ["numpy==1.22.4"]
+numpy = ["numpy==1.23.1; python_version >= '3.8'", "numpy==1.21.6; python_version == '3.7'"]
39
gurobi = ["gurobipy>=8.*"]
40
41
[project.urls]
requirements.txt
@@ -1,4 +1,5 @@
1
cffi==1.15.0
2
networkx==2.6.3
3
-numpy==1.21.6
+numpy==1.21.6; python_version == '3.7'
4
+numpy==1.23.1; python_version >= '3.8'
5
pytest==7.1.2
0 commit comments