Skip to content

Commit d3f9e28

Browse files
Revert "add python 3.12 and 3.13 support" (#95)
1 parent 535471b commit d3f9e28

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
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", "3.12", "3.13"]
26+
python-version: ["3.9", "3.10", "3.11"]
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@v4
35+
- uses: actions/checkout@v3
3636

3737
- name: Set up Python ${{ matrix.python-version }}
38-
uses: actions/setup-python@v5
38+
uses: actions/setup-python@v4
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.13 are supported.
22+
Currently Python versions 3.9-3.11 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: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,14 @@ 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",
2119
]
2220

2321
packages = [
2422
{ include = "openeo_pg_parser_networkx" }
2523
]
2624

2725
[tool.poetry.dependencies]
28-
python = ">=3.9,<3.14"
26+
python = ">=3.9,<3.12"
2927
pydantic = "^2.4.0"
3028
pyproj = "^3.4.0"
3129
networkx = "^2.8.6"

0 commit comments

Comments
 (0)