Skip to content

Commit 09147e7

Browse files
authored
Remove Python 3.9, add Python 3.12 (#104)
1 parent e1e24f5 commit 09147e7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
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.10", "3.11", "3.12"]
2727
include:
2828
- os: Ubuntu
2929
image: ubuntu-latest

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,28 @@ classifiers = [
1313
"Programming Language :: Python",
1414
"Programming Language :: Python :: 3",
1515
"Programming Language :: Python :: 3 :: Only",
16-
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
18+
"Programming Language :: Python :: 3.12",
1919
]
2020

2121
packages = [
2222
{ include = "openeo_pg_parser_networkx" }
2323
]
2424

2525
[tool.poetry.dependencies]
26-
python = ">=3.9,<3.12"
26+
python = ">=3.10,<3.13"
2727
pydantic = "^2.4.0"
2828
pyproj = "^3.4.0"
29-
networkx = "^2.8.6"
29+
networkx = ">=3.0.0"
3030
shapely = ">=1.8"
3131
geojson-pydantic = "^1.0.0"
3232
numpy = "^1.20.3"
33-
pendulum = "^2.1.2"
33+
pendulum = ">=3.0.0"
3434
matplotlib = { version = "^3.7.1", optional = true }
35-
traitlets = "<=5.9.0"
35+
traitlets = "<=5.13.0"
3636
yprov4wfs = ">=0.0.8"
37-
xarray = ">=2022.11.0,<=2024.3.0"
37+
xarray = ">=2022.11.0,<=2025.08.01"
3838
dask = ">=2023.4.0,<2025.2.0"
3939

4040
[tool.poetry.group.dev.dependencies]

0 commit comments

Comments
 (0)