Skip to content

Commit 3a9aae6

Browse files
add python 3.13 support (#770)
1 parent 4491fa1 commit 3a9aae6

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

.github/workflows/cicd.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1414
timeout-minutes: 20
1515

1616
steps:
@@ -24,7 +24,7 @@ jobs:
2424
python-version: ${{ matrix.python-version }}
2525

2626
- name: Lint code
27-
if: ${{ matrix.python-version == 3.8 }}
27+
if: ${{ matrix.python-version == 3.13 }}
2828
run: |
2929
python -m pip install pre-commit
3030
pre-commit run --all-files
@@ -63,7 +63,7 @@ jobs:
6363
- name: Setup Python
6464
uses: actions/setup-python@v5
6565
with:
66-
python-version: "3.11"
66+
python-version: "3.13"
6767

6868
- name: Install types
6969
run: |

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
TWINE_USERNAME: ${{ secrets.PYPI_STACUTILS_USERNAME }}
2828
TWINE_PASSWORD: ${{ secrets.PYPI_STACUTILS_PASSWORD }}
2929
run: |
30-
scripts/publish
30+
scripts/publish

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
* Add `numberMatched` and `numberReturned` properties in `types.stac.ItemCollection` model
1212
* Add `numberMatched` and `numberReturned` properties in `types.stac.Collections` model
13+
* Add `python3.13` support
1314

1415
## Changed
1516

stac_fastapi/api/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"Programming Language :: Python :: 3.10",
4242
"Programming Language :: Python :: 3.11",
4343
"Programming Language :: Python :: 3.12",
44+
"Programming Language :: Python :: 3.13",
4445
"License :: OSI Approved :: MIT License",
4546
],
4647
keywords="STAC FastAPI COG",

stac_fastapi/extensions/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"Programming Language :: Python :: 3.10",
3939
"Programming Language :: Python :: 3.11",
4040
"Programming Language :: Python :: 3.12",
41+
"Programming Language :: Python :: 3.13",
4142
"License :: OSI Approved :: MIT License",
4243
],
4344
keywords="STAC FastAPI COG",

stac_fastapi/types/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"Programming Language :: Python :: 3.10",
4141
"Programming Language :: Python :: 3.11",
4242
"Programming Language :: Python :: 3.12",
43+
"Programming Language :: Python :: 3.13",
4344
"License :: OSI Approved :: MIT License",
4445
],
4546
keywords="STAC FastAPI COG",

0 commit comments

Comments
 (0)