From 59dc8ffcd8db35d5cd0df7a05d06a94aab596f6c Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Wed, 17 Jul 2024 09:00:47 -0600 Subject: [PATCH] deps: add python 3.12, drop python 3.8 --- .github/workflows/continuous-integration.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index abf994c..db5b1c8 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] defaults: run: shell: bash -l {0} diff --git a/pyproject.toml b/pyproject.toml index 2fb57f6..9eeea93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,12 +13,12 @@ classifiers = [ "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Programming Language :: Python :: 3", - "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", ] -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = ["stactools>=0.4.0"] [project.optional-dependencies]