From 19074484beb130f59e8039680ca855573ae9125c Mon Sep 17 00:00:00 2001 From: dfguerrerom Date: Fri, 20 Sep 2024 17:33:55 +0200 Subject: [PATCH] build: drop support for python 3.8. closes#942 --- .github/workflows/unit.yml | 2 +- pyproject.toml | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 8dc74e89..0cdd5a7d 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -41,7 +41,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11"] include: - os: macos-latest # macos test python-version: "3.10" diff --git a/pyproject.toml b/pyproject.toml index 995aac8f..b86f694a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,12 +12,11 @@ classifiers = [ "Intended Audience :: Developers", "Topic :: Software Development :: Build Tools", "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", ] -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = [ # building widgets "tomli", @@ -33,7 +32,6 @@ dependencies = [ # read local data "rioxarray", "dask", # used by rioxarray in the inspector - 'geopandas==0.13.2; python_version == "3.8"', 'geopandas>=0.14.0; python_version > "3.8"', "matplotlib", "jupyter-server-proxy", # required for localtileserver