From 39530b651e926616b53e68d9bd7eb5a5dcf1b9b8 Mon Sep 17 00:00:00 2001 From: clausmichele Date: Fri, 14 Jul 2023 12:09:02 +0200 Subject: [PATCH 1/2] Add python 3.11 --- .github/workflows/main.yml | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 870bab56..25a188b5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [Ubuntu] - python-version: ["3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11"] include: - os: Ubuntu image: ubuntu-20.04 diff --git a/pyproject.toml b/pyproject.toml index 8e4d867b..c4b1936c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,6 +15,7 @@ classifiers = [ "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ] packages = [ @@ -22,7 +23,7 @@ packages = [ ] [tool.poetry.dependencies] -python = ">=3.9,<3.11" +python = ">=3.9,<=3.11" geopandas = { version = ">=0.11.1,<1", optional = true } xarray = { version = ">=2022.11.0", optional = true } dask = {extras = ["array"], version = ">=2022.11.1", optional = true} From 2ead4766a3190b9101e06a5a38e88d88cd63eb2b Mon Sep 17 00:00:00 2001 From: clausmichele Date: Fri, 14 Jul 2023 12:14:01 +0200 Subject: [PATCH 2/2] set upper limit 3.12 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c4b1936c..c383ddd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ packages = [ ] [tool.poetry.dependencies] -python = ">=3.9,<=3.11" +python = ">=3.9,<3.12" geopandas = { version = ">=0.11.1,<1", optional = true } xarray = { version = ">=2022.11.0", optional = true } dask = {extras = ["array"], version = ">=2022.11.1", optional = true}