Skip to content

Commit cea5268

Browse files
committed
Ignore shapely deprecation warnings from pandera; pin libs
More strictly pin numpy and pyproj, which preserves accepted calculations in tests. We may want to update numpy and pyproj to the latest versions and accept the computation differences, but a review of the CHANGELOGs for those projects would be helpful.
1 parent 4659af5 commit cea5268

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ classifiers = [
2424
"Typing :: Typed",
2525
]
2626
dependencies = [
27-
"numpy >=2.0.1",
27+
"numpy ~=2.0.1",
2828
"earthaccess >=0.10.0",
2929
"pandas >=2.2",
3030
"h5py >=3.11",
3131
"gps-timemachine >=1.1.4",
32-
"pyproj >=3.6.1",
32+
"pyproj ~=3.6.1",
3333
"shapely >=2.0.5",
34-
"pandera[mypy] ~= 0.20.3",
34+
"pandera[mypy] ~=0.23.0",
3535
"pydantic >=2.8.2",
3636
"loguru >=0.7.2",
3737
"dask[dataframe] >=2024.10.0",
@@ -83,6 +83,7 @@ addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
8383
xfail_strict = true
8484
filterwarnings = [
8585
"error",
86+
"ignore:The 'shapely.geos' module is deprecated",
8687
]
8788
log_cli_level = "INFO"
8889

0 commit comments

Comments
 (0)