Skip to content

Commit

Permalink
Revert "add python 3.12 and 3.13 support" (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinaHutter authored Jan 29, 2025
1 parent 535471b commit d3f9e28
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 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", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11"]
include:
- os: Ubuntu
image: ubuntu-20.04
Expand All @@ -32,10 +32,10 @@ jobs:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v4
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.13 are supported.
Currently Python versions 3.9-3.11 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: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,14 @@ 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.14"
python = ">=3.9,<3.12"
pydantic = "^2.4.0"
pyproj = "^3.4.0"
networkx = "^2.8.6"
Expand Down

0 comments on commit d3f9e28

Please sign in to comment.