Skip to content

Commit d2ddcf7

Browse files
committed
upper pin only on linux
1 parent 1bedbf1 commit d2ddcf7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@ license = { text = "BSD-3-Clause" }
1515
dependencies = [
1616
"numpy>=2.0.0,<2.3.0", # Upper pin is because of numba incompatibility
1717
"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",
18+
# Upper-pin on Linux to avoid recent wheel regressions that surface as "NetCDF: HDF error"
19+
"netCDF4<1.7.0; sys_platform == 'linux'",
20+
"h5py<3.13.0; sys_platform == 'linux'",
2221
"attrs",
2322
"pooch",
2423
"tqdm",

0 commit comments

Comments
 (0)