Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ jobs:
# XXX: We don't currently have OpenGL installation on other platforms
#os: ["windows-latest", "ubuntu-latest", "macos-latest"]
os: ["ubuntu-latest"]
python-version: ["3.9", "3.11"]
python-version: ["3.9", "3.11", "3.12"]
experimental: [false]
include:
- python-version: "3.11"
- python-version: "3.12"
os: "ubuntu-latest"
experimental: true

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ jobs:
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
python-version: ${{ matrix.python-version }}
environment-file: continuous_integration/environment.yaml
activate-environment: test-environment
channels: conda-forge
Expand Down
8 changes: 2 additions & 6 deletions continuous_integration/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: test-environment
channels:
- conda-forge
dependencies:
# limiting python due to ecmwflibs
- python<=3.11
- python<=3.12
- appdirs
- defusedxml
- Cython
Expand All @@ -26,8 +25,6 @@ dependencies:
- bottleneck
- dask
- donfig
# 2.19.1 seems to cause library linking issues
- eccodes>=2.20
- cfgrib
- fsspec
- h5netcdf
Expand All @@ -38,7 +35,6 @@ dependencies:
- pooch
- pyhdf
- pyresample
- python-eccodes
- python-geotiepoints
- pyyaml
- rasterio
Expand All @@ -61,4 +57,4 @@ dependencies:
- trollimage
- pyspectral
- pyorbital
- ecmwflibs
- eccodes>=2.37 # 2.37.0 has ecmwflibs integrated
7 changes: 2 additions & 5 deletions continuous_integration/rtd_environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
dependencies:
# limiting python due to ecmwflibs
- python<=3.11
- python<=3.12
- appdirs
- defusedxml
- Cython
Expand All @@ -26,8 +26,6 @@ dependencies:
- bottleneck
- dask
- donfig
# 2.19.1 seems to cause library linking issues
- eccodes>=2.20
- cfgrib
- fsspec
- h5netcdf
Expand All @@ -38,7 +36,6 @@ dependencies:
- pooch
- pyhdf
- pyresample
- python-eccodes
- python-geotiepoints
- pyyaml
- rasterio
Expand All @@ -61,11 +58,11 @@ dependencies:
- trollimage
- pyspectral
- pyorbital
- ecmwflibs
# docs:
- blockdiag
- sphinx
- sphinx-rtd-theme
- sphinxcontrib-seqdiag
- sphinxcontrib-blockdiag
- psutil
- eccodes>=2.37 # 2.37.0 has ecmwflibs integrated
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,7 @@ def run(self):
"trollsift",
"vispy>=0.10.0",
'pygrib;sys_platform=="linux" or sys_platform=="darwin"',
"ecmwflibs",
"eccodes",
"eccodes>=2.37", # has ecmwflibs included
"cfgrib",
],
tests_requires=["pytest", "pytest-qt", "pytest-mock"],
Expand Down
Loading