Skip to content

Commit

Permalink
Merge pull request #1204 from metno/set-minimum-xarray-pandas-version
Browse files Browse the repository at this point in the history
Set minimum requirement for pandas+xarray
  • Loading branch information
heikoklein authored Jun 14, 2024
2 parents 331944d + 9f4b8dc commit 63ca935
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyaerocom_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ channels:
- conda-forge
dependencies:
- iris >=3.8.1
- xarray
- xarray >=2022.10.0
- cartopy >=0.21.1
- matplotlib-base >=3.7.1
- scipy >=1.10.1
- pandas
- pandas >=1.5.3
- numpy >=1.24.4
- seaborn >=0.12.2
- dask
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ classifiers = [
requires-python = ">=3.10"
dependencies = [
"scitools-iris>=3.8.1",
"xarray",
"xarray>=2022.10.0",
"cartopy>=0.21.1",
"matplotlib>=3.7.1",
"scipy>=1.10.1",
"pandas",
"pandas>=1.5.3",
"numpy>=1.24.4",
"seaborn>=0.12.2",
"dask",
Expand Down Expand Up @@ -224,6 +224,8 @@ deps =
pydantic ==2.7.1; python_version < "3.11"
pyaro == 0.0.10; python_version < "3.11"
pooch ==1.7.0; python_version < "3.11"
xarray ==2022.10.0; python_version < "3.11"
pandas ==1.5.3; python_version < "3.11"
[testenv:format]
commands =
Expand Down

0 comments on commit 63ca935

Please sign in to comment.