File tree Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 99 - ' *'
1010 pull_request :
1111env :
12- LATEST_PY_VERSION : ' 3.10 '
12+ LATEST_PY_VERSION : ' 3.11 '
1313
1414jobs :
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
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
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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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]
2122dynamic = [" version" , " readme" ]
You can’t perform that action at this time.
0 commit comments