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 60ffc66 commit 2e467f1Copy full SHA for 2e467f1
pyproject.toml
@@ -19,12 +19,12 @@ classifiers = [
19
"Intended Audience :: Science/Research",
20
]
21
dependencies = [
22
- "numpy~=2.1",
23
- "pandas~=2.2.3",
24
- "Shapely~=2.0.6",
25
- "scipy~=1.14",
26
- "matplotlib~=3.9",
27
- "h5py~=3.12",
+ "numpy>=2.1,<3.0",
+ "pandas>=2.2.3,<3.0",
+ "Shapely>=2.0.6,<3.0",
+ "scipy>=1.14,<2.0",
+ "matplotlib>=3.9,<4.0",
+ "h5py>=3.12,<4.0",
28
29
30
requires-python = ">=3.11"
requirements.txt
@@ -1,9 +1,9 @@
1
-numpy~=2.1
2
-pandas~=2.2.3
3
-Shapely~=2.0.6
4
-scipy~=1.14
5
-matplotlib~=3.9
6
-h5py~=3.12
+numpy>=2.1,<3.0
+pandas>=2.2.3,<3.0
+Shapely>=2.0.6,<3.0
+scipy>=1.14,<2.0
+matplotlib>=3.9,<4.0
+h5py>=3.12,<4.0
7
8
# testing
9
pytest~=8.3
0 commit comments