Skip to content

Commit e667c43

Browse files
committed
Simplify some dependency constraints #578
(no more need for py3.7 related hacks)
1 parent fc85bc0 commit e667c43

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

setup.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,13 @@
2222
"mock",
2323
"requests-mock>=1.8.0",
2424
"httpretty>=1.1.4",
25-
# TODO #578 Conditional netCDF4 constraint: no more py3.7 wheels since 1.6.5 (#489)
26-
"netCDF4<1.6.5 ; python_version <= '3.7'",
27-
"netCDF4 ; python_version > '3.7'",
28-
"matplotlib",
25+
"netCDF4>=1.7.0",
26+
"matplotlib", # TODO: eliminate matplotlib as test dependency
2927
"geopandas",
3028
"flake8>=5.0.0",
3129
"time_machine",
3230
"pyproj>=3.2.0", # Pyproj is an optional, best-effort runtime dependency
33-
"dirty_equals>=0.6.0",
34-
# TODO #578 On Python 3.7: avoid dirty_equals 0.7.1 which wrongly claims to be Python 3.7 compatible
35-
"dirty_equals<0.7.1 ; python_version <= '3.7'",
31+
"dirty_equals>=0.8.0",
3632
"pyarrow>=10.0.1", # For Parquet read/write support in pandas
3733
]
3834

0 commit comments

Comments
 (0)