From d8be77d07a00cf6cf23c16f279570ed834bf9cf7 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Mon, 23 Dec 2024 04:04:42 -0700 Subject: [PATCH] fix: bump min python to 3.10 --- .github/workflows/continuous-integration.yml | 8 ++++---- docs/index.rst | 2 +- pyproject.toml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index bdd4e7e2..ad079281 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12", "3.13"] defaults: run: shell: bash -l {0} @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12", "3.13"] defaults: run: shell: bash -l {0} @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12", "3.13"] defaults: run: shell: bash -l {0} @@ -73,7 +73,7 @@ jobs: continue-on-error: true strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12", "3.13"] defaults: run: shell: bash -l {0} diff --git a/docs/index.rst b/docs/index.rst index 688c9864..8a556cc5 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -19,7 +19,7 @@ See the `stactools-packages website `_ and Requirements ============ -* `Python 3.8 or greater `_ +* `Python 3.10 or greater `_ STAC version support ==================== diff --git a/pyproject.toml b/pyproject.toml index de7ed700..27373c93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,12 +12,12 @@ keywords = ["pystac", "imagery", "raster", "catalog", "STAC"] classifiers = [ "Development Status :: 4 - Beta", "License :: OSI Approved :: Apache Software License", - "Programming Language :: Python :: 3.8", - "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", ] -requires-python = ">=3.8" +requires-python = ">=3.10" dependencies = [ "antimeridian>=0.2.6", "click>=8.1.3",