-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #343 from CSHS-CWRA/drop-python38
Drop Python3.8, Support Python3.12 and newer xclim/xarray/pandas
- Loading branch information
Showing
6 changed files
with
51 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ maintainers = [ | |
{name = "Trevor James Smith", email = "[email protected]"} | ||
] | ||
readme = {file = "README.rst", content-type = "text/x-rst"} | ||
requires-python = ">=3.8.0" | ||
requires-python = ">=3.9.0" | ||
keywords = ["raven", "raven-hydro", "hydrology", "gis", "analysis", "modelling"] | ||
license = {file = "LICENSE"} | ||
classifiers = [ | ||
|
@@ -24,7 +24,6 @@ classifiers = [ | |
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
|
@@ -38,52 +37,52 @@ dynamic = ["description", "version"] | |
dependencies = [ | ||
"cftime", | ||
# cf-xarray is differently named on conda-forge | ||
"cf-xarray[all]<0.8.5; python_version == '3.8'", | ||
"cf-xarray[all]; python_version >= '3.9'", | ||
"climpred>=2.4.0", | ||
"cf-xarray[all]", | ||
"climpred >=2.4.0", | ||
"dask", | ||
"haversine", | ||
"h5netcdf", | ||
"matplotlib", | ||
"netCDF4", | ||
"numpy<1.25", | ||
"owslib>=0.24.1,<0.29", # see: https://github.com/geopython/OWSLib/issues/871 | ||
"pandas<2.0.0; python_version == '3.8'", | ||
"pandas<2.2.0; python_version >= '3.9'", | ||
"pint>=0.20", | ||
"numpy", | ||
"owslib >=0.24.1,<0.29", # see: https://github.com/geopython/OWSLib/issues/871 | ||
"pandas >=2.2.0", | ||
"pint >=0.20", | ||
"platformdirs", | ||
"pydantic>=2.0", | ||
"pydantic >=2.0", | ||
"pymbolic", | ||
"raven-hydro==0.2.4", | ||
"raven-hydro ==0.2.4", | ||
"requests", | ||
"scipy", | ||
"spotpy", | ||
"statsmodels", | ||
"typing-extensions", | ||
"xarray>=2022.12.0,<2023.9.0", # xarray v2023.9.0 is incompatible with xclim<=0.45.0 | ||
"xclim>=0.43.0,<0.48.0", | ||
"xarray >=2023.11.0", | ||
"xclim >=0.48.2", | ||
"xskillscore" | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"black>=24.1.1", | ||
"black >=24.2.0", | ||
"bump2version", | ||
"coverage", | ||
"coveralls", | ||
"filelock", | ||
"flake8>=7.0.0", | ||
"flake8 >=7.0.0", | ||
"flit", | ||
"holoviews", | ||
"hvplot", | ||
"isort>=5.13.2", | ||
"isort >=5.13.2", | ||
"mypy", | ||
"pre-commit", | ||
"pytest", | ||
"pytest-cov", | ||
"pytest-xdist>=3.2.0", | ||
"pytest-xdist >=3.2.0", | ||
"setuptools >=68.0", | ||
"tox", | ||
"watchdog" | ||
"watchdog", | ||
"wheel >=0.42.0" | ||
] | ||
docs = [ | ||
"autodoc-pydantic", | ||
|
@@ -94,7 +93,7 @@ docs = [ | |
# Needed for notebooks/HydroShare_integration.ipynb | ||
# See: https://github.com/CSHS-CWRA/RavenPy/pull/326 | ||
# "hsclient", | ||
"intake", | ||
"intake <2.0.0", | ||
"intake-esm", | ||
"intake-xarray", | ||
"ipykernel", | ||
|
@@ -114,17 +113,17 @@ docs = [ | |
"sphinx-click", | ||
"sphinx-codeautolink", | ||
"sphinx-copybutton", | ||
"sphinx-rtd-theme>=1.0", | ||
"sphinx-rtd-theme >=1.0", | ||
"xesmf" | ||
] | ||
gis = [ | ||
"affine", | ||
"fiona>=1.9", | ||
"geopandas>=0.13.0", | ||
"fiona >=1.9", | ||
"geopandas >=0.13.0", | ||
"gdal", | ||
"lxml", | ||
"pyogrio", | ||
"pyproj>=3.0.0", | ||
"pyproj >=3.0.0", | ||
"rasterio", | ||
"rioxarray", | ||
"shapely" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters