Skip to content

Commit 4c48b63

Browse files
committed
add python 3.13 and 3.14 support in CI
1 parent 6ee01a5 commit 4c48b63

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [Ubuntu]
26-
python-version: ["3.10", "3.11", "3.12"]
26+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2727
include:
2828
- os: Ubuntu
2929
image: ubuntu-latest
@@ -32,10 +32,10 @@ jobs:
3232
run:
3333
shell: bash
3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v5
3636

3737
- name: Set up Python ${{ matrix.python-version }}
38-
uses: actions/setup-python@v4
38+
uses: actions/setup-python@v6
3939
with:
4040
python-version: ${{ matrix.python-version }}
4141

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v5
1818

19-
- name: Set up Python 3.10
20-
uses: actions/setup-python@v4
19+
- name: Set up Python 3.14
20+
uses: actions/setup-python@v6
2121
with:
22-
python-version: "3.10"
22+
python-version: "3.14"
2323

2424
- name: Bootstrap poetry
2525
run: |

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,16 @@ classifiers = [
1616
"Programming Language :: Python :: 3.10",
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
1921
]
2022

2123
packages = [
2224
{ include = "openeo_pg_parser_networkx" }
2325
]
2426

2527
[tool.poetry.dependencies]
26-
python = ">=3.10,<3.13"
28+
python = ">=3.10,<3.15"
2729
pydantic = "^2.4.0"
2830
pyproj = "^3.4.0"
2931
networkx = ">=3.0.0"

0 commit comments

Comments
 (0)