Skip to content

Commit

Permalink
Github Actions: Drop testing python 3.8
Browse files Browse the repository at this point in the history
xarray 2024.07.0 requires python >= 3.9
  • Loading branch information
bendudson committed Oct 30, 2024
1 parent b2c5eb8 commit 4a422fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
if: always()
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.x"]
python-version: ["3.9", "3.10", "3.11", "3.x"]
fail-fast: false

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
if: always()
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.x"]
python-version: ["3.9", "3.10", "3.x"]
fail-fast: false

steps:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
if: always()
strategy:
matrix:
python-version: ["3.8"]
python-version: ["3.9"]
fail-fast: false

steps:
Expand All @@ -61,7 +61,7 @@ jobs:
run: |
sudo apt-get update && sudo apt-get install libhdf5-dev libnetcdf-dev
python -m pip install --upgrade pip
pip install xarray~=0.18.0 pandas~=1.4.0
pip install xarray~=2024.7.0 pandas~=1.4.0
- name: Install package
run: |
pip install -e .[tests]
Expand Down

0 comments on commit 4a422fd

Please sign in to comment.