Skip to content

Commit 2a4ddb1

Browse files
authored
make xarray a requirement (#100)
1 parent d0d28e0 commit 2a4ddb1

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

ci/requirements/environment.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ channels:
55
dependencies:
66
- cartopy
77
- matplotlib-base
8+
- numpy
9+
- seaborn
810
- xarray
11+
# formatting
12+
- black
13+
- isort
14+
- flake8
915
# for testing
1016
- pytest
1117
- pytest-cov

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
cartopy >= 0.21
66
matplotlib >= 3.6
77
numpy >= 1.22
8+
xarray >= 2022.12

setup.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@ zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.htm
2525
include_package_data = True
2626
python_requires = >=3.9
2727
install_requires =
28-
cartopy >= 0.21
29-
matplotlib >= 3.6
30-
numpy >= 1.22
28+
cartopy >=0.21
29+
matplotlib >=3.6
30+
numpy >=1.22
31+
xarray >=2022.12
3132

3233
[tool:pytest]
3334
filterwarnings =

0 commit comments

Comments
 (0)