Skip to content

Commit

Permalink
add python 3.12 and 3.13 support (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago authored Jan 29, 2025
1 parent 9f72a9d commit 535471b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [Ubuntu]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: Ubuntu
image: ubuntu-20.04
Expand All @@ -32,10 +32,10 @@ jobs:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To enable plotting also install the `plot` extra:
pip install openeo-pg-parser-networkx[plot]
```

Currently Python versions 3.9-3.11 are supported.
Currently Python versions 3.9-3.13 are supported.

## Basic usage
(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`.)
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,16 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

packages = [
{ include = "openeo_pg_parser_networkx" }
]

[tool.poetry.dependencies]
python = ">=3.9,<3.12"
python = ">=3.9,<3.14"
pydantic = "^2.4.0"
pyproj = "^3.4.0"
networkx = "^2.8.6"
Expand Down

0 comments on commit 535471b

Please sign in to comment.