Skip to content

Commit b96d7cb

Browse files
committed
add python 3.12
1 parent 26bc19b commit b96d7cb

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,24 @@ on:
99
- '*'
1010
pull_request:
1111
env:
12-
LATEST_PY_VERSION: '3.10'
12+
LATEST_PY_VERSION: '3.11'
1313

1414
jobs:
1515
tests:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ['3.8', '3.9', '3.10', '3.11']
19+
python-version:
20+
- '3.8'
21+
- '3.9'
22+
- '3.10'
23+
- '3.11'
24+
- '3.12'
2025

2126
steps:
22-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2328
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v4
29+
uses: actions/setup-python@v5
2530
with:
2631
python-version: ${{ matrix.python-version }}
2732

@@ -53,9 +58,9 @@ jobs:
5358
runs-on: ubuntu-latest
5459
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
5560
steps:
56-
- uses: actions/checkout@v3
57-
- name: Set up Python
58-
uses: actions/setup-python@v4
61+
- uses: actions/checkout@v4
62+
- name: Set up Python ${{ env.LATEST_PY_VERSION }}
63+
uses: actions/setup-python@v5
5964
with:
6065
python-version: ${{ env.LATEST_PY_VERSION }}
6166

@@ -94,7 +99,7 @@ jobs:
9499
runs-on: ubuntu-latest
95100
steps:
96101
- name: Checkout
97-
uses: actions/checkout@v2
102+
uses: actions/checkout@v4
98103

99104
- name: Set up QEMU
100105
uses: docker/setup-qemu-action@v1

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## 0.12.1 (2024-04-18)
22

33
* fix GET range parsing
4+
* add python 3.12 official support
45

56
## 0.12.0 (2024-01-24)
67

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers = [
1616
"Programming Language :: Python :: 3.9",
1717
"Programming Language :: Python :: 3.10",
1818
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
1920
"Topic :: Scientific/Engineering :: GIS",
2021
]
2122
dynamic = ["version", "readme"]

0 commit comments

Comments
 (0)