Skip to content

Commit 535471b

Browse files
add python 3.12 and 3.13 support (#93)
1 parent 9f72a9d commit 535471b

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
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.9", "3.10", "3.11"]
26+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2727
include:
2828
- os: Ubuntu
2929
image: ubuntu-20.04
@@ -32,10 +32,10 @@ jobs:
3232
run:
3333
shell: bash
3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To enable plotting also install the `plot` extra:
1919
pip install openeo-pg-parser-networkx[plot]
2020
```
2121

22-
Currently Python versions 3.9-3.11 are supported.
22+
Currently Python versions 3.9-3.13 are supported.
2323

2424
## Basic usage
2525
(An example notebook of using `openeo-pg-parser-networkx` together with a process implementation source like [`openeo-processes-dask`](https://github.com/Open-EO/openeo-processes-dask) can be found in `openeo-pg-parser-networkx/examples/01_minibackend_demo.ipynb`.)

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.9",
1717
"Programming Language :: Python :: 3.10",
1818
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
1921
]
2022

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

2527
[tool.poetry.dependencies]
26-
python = ">=3.9,<3.12"
28+
python = ">=3.9,<3.14"
2729
pydantic = "^2.4.0"
2830
pyproj = "^3.4.0"
2931
networkx = "^2.8.6"

0 commit comments

Comments
 (0)