Skip to content

Commit cbdc0c0

Browse files
committed
CI: add Python 3.13 tests
1 parent b259ebf commit cbdc0c0

File tree

8 files changed

+11
-10
lines changed

8 files changed

+11
-10
lines changed

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"name": "Torchgeo DevContainer",
44
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
5-
"image": "mcr.microsoft.com/devcontainers/python:3.12",
5+
"image": "mcr.microsoft.com/devcontainers/python:3.13",
66

77
// Features to add to the dev container. More info: https://containers.dev/features.
88
"features": {

.github/workflows/deploy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up python
1414
uses: actions/[email protected]
1515
with:
16-
python-version: '3.12'
16+
python-version: '3.13'
1717
- name: Install pip dependencies
1818
run: pip install build
1919
- name: List pip dependencies

.github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
id: setup-python
2121
uses: actions/[email protected]
2222
with:
23-
python-version: '3.12'
23+
python-version: '3.13'
2424
- name: Cache dependencies
2525
uses: actions/[email protected]
2626
id: cache
@@ -49,7 +49,7 @@ jobs:
4949
id: setup-python
5050
uses: actions/[email protected]
5151
with:
52-
python-version: '3.12'
52+
python-version: '3.13'
5353
- name: Cache dependencies
5454
uses: actions/[email protected]
5555
id: cache

.github/workflows/style.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
id: setup-python
2323
uses: actions/[email protected]
2424
with:
25-
python-version: '3.12'
25+
python-version: '3.13'
2626
- name: Cache dependencies
2727
uses: actions/[email protected]
2828
id: cache
@@ -48,7 +48,7 @@ jobs:
4848
id: setup-python
4949
uses: actions/[email protected]
5050
with:
51-
python-version: '3.12'
51+
python-version: '3.13'
5252
- name: Cache dependencies
5353
uses: actions/[email protected]
5454
id: cache

.github/workflows/tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest, macos-latest, windows-latest]
21-
python-version: ['3.10', '3.11', '3.12']
21+
python-version: ['3.10', '3.11', '3.12', '3.13']
2222
steps:
2323
- name: Clone repo
2424
uses: actions/[email protected]
@@ -91,7 +91,7 @@ jobs:
9191
id: setup-python
9292
uses: actions/[email protected]
9393
with:
94-
python-version: '3.12'
94+
python-version: '3.13'
9595
- name: Cache dependencies
9696
uses: actions/[email protected]
9797
id: cache

.github/workflows/tutorials.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id: setup-python
2525
uses: actions/[email protected]
2626
with:
27-
python-version: '3.12'
27+
python-version: '3.13'
2828
- name: Cache dependencies
2929
uses: actions/[email protected]
3030
id: cache

.readthedocs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version: 2
88
build:
99
os: ubuntu-lts-latest
1010
tools:
11-
python: '3.12'
11+
python: '3.13'
1212

1313
# Configuration of the Python environment to be used
1414
python:

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ classifiers = [
3232
"Programming Language :: Python :: 3.10",
3333
"Programming Language :: Python :: 3.11",
3434
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
3536
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3637
"Topic :: Scientific/Engineering :: GIS",
3738
]

0 commit comments

Comments
 (0)