Skip to content

Commit eb95f6b

Browse files
committed
bump python to 3.12 in CI
1 parent 714ae2d commit eb95f6b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
- uses: actions/checkout@v5
1414
- uses: actions/setup-python@v6
1515
with:
16-
python-version: '3.11'
16+
python-version: '3.12'
1717
- uses: pre-commit/action@v3.0.1
1818

1919
test:
2020
runs-on: ${{ matrix.os }}
2121
strategy:
2222
matrix:
2323
os: [ubuntu-latest]
24-
python-version: ['3.11', '3.12']
24+
python-version: ['3.12', '3.13']
2525

2626
steps:
2727
- uses: actions/checkout@v5
@@ -53,7 +53,7 @@ jobs:
5353
uv run pytest tests/ -v --tb=short -m "not network" --cov=eopf_geozarr --cov-report=xml --cov-report=term-missing
5454
5555
- name: Upload coverage to Codecov
56-
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
56+
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'
5757
uses: codecov/codecov-action@v5
5858
with:
5959
file: ./coverage.xml
@@ -78,7 +78,7 @@ jobs:
7878
- name: Set up Python
7979
uses: actions/setup-python@v6
8080
with:
81-
python-version: '3.11'
81+
python-version: '3.12'
8282

8383
- name: Install dependencies
8484
run: |

0 commit comments

Comments
 (0)