Skip to content

Commit 6f37d1b

Browse files
committed
skip python 3.9
1 parent 4a70b83 commit 6f37d1b

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-python@v5
2020
with:
21-
python-version: "3.9"
21+
python-version: "3.10"
2222
- name: Install tox
2323
run: |
2424
pip install tox>=4.0
@@ -33,12 +33,12 @@ jobs:
3333
strategy:
3434
matrix:
3535
include:
36-
- tox-env: py39-extra
37-
python-version: "3.9"
3836
- tox-env: py310-extra
3937
python-version: "3.10"
4038
- tox-env: py311-extra
4139
python-version: "3.11"
40+
- tox-env: py311-extra
41+
python-version: "3.12"
4242
steps:
4343
- uses: actions/checkout@v4
4444
- name: Install packages 📦
@@ -54,7 +54,7 @@ jobs:
5454
- name: Run tests with tox ⚙️
5555
run: tox -e ${{ matrix.tox-env }}
5656
- name: Run coveralls ⚙️
57-
if: matrix.python-version == 3.9
57+
if: matrix.python-version == 3.10
5858
uses: AndreMiras/coveralls-python-action@develop
5959

6060
docs:
@@ -64,9 +64,9 @@ jobs:
6464
steps:
6565
- uses: actions/checkout@v4
6666
- uses: actions/setup-python@v5
67-
name: Setup Python 3.9
67+
name: Setup Python 3.10
6868
with:
69-
python-version: 3.9
69+
python-version: 3.10
7070
- name: Build documentation 🏗️
7171
run: |
7272
pip install -e .[dev]

environment.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@ dependencies:
1717
- geotiff
1818
# tests
1919
- pytest
20+
- ruff >=0.5.7
21+
# docs
22+
- sphinx >=7.0.0
2023

0 commit comments

Comments
 (0)