Skip to content

Commit 661b8b4

Browse files
authored
Merge pull request #26 from jacobwhall/python-3.12-support
Add Python 3.12 support
2 parents d522adc + 47d68d6 commit 661b8b4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/test-with-coverage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
12+
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Set up Python ${{ matrix.python-version }} 🐍
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies ⚙️
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
pytest --cov=distancerasters
3030
- name: Coveralls 👖
31-
if: matrix.python-version == '3.11'
31+
if: matrix.python-version == '3.12'
3232
env:
3333
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
3434
GITHUB_TOKEN: $COVERALLS_REPO_TOKEN

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
10+
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Set up Python ${{ matrix.python-version }} 🐍
15-
uses: actions/setup-python@v4
15+
uses: actions/setup-python@v5
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818
- name: Install dependencies ⚙️

0 commit comments

Comments
 (0)