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 1bedbf1 commit d2ddcf7Copy full SHA for d2ddcf7
pyproject.toml
@@ -15,10 +15,9 @@ license = { text = "BSD-3-Clause" }
15
dependencies = [
16
"numpy>=2.0.0,<2.3.0", # Upper pin is because of numba incompatibility
17
"pandas",
18
- # Upper-pin h5py and netcdf4 to avoid recent wheel regressions that surface as "NetCDF: HDF error"
19
- "h5py<3.13.0",
20
- "netCDF4<1.7.0",
21
- "h5py",
+ # Upper-pin on Linux to avoid recent wheel regressions that surface as "NetCDF: HDF error"
+ "netCDF4<1.7.0; sys_platform == 'linux'",
+ "h5py<3.13.0; sys_platform == 'linux'",
22
"attrs",
23
"pooch",
24
"tqdm",
0 commit comments