From 2131c3e312efe0faa061a0a67f134542b7608080 Mon Sep 17 00:00:00 2001 From: Brad Macdonald Date: Wed, 27 Mar 2024 11:01:45 -0700 Subject: [PATCH] drop 3.8 support --- .github/workflows/ci.yml | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f407cab..daf5682 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: strategy: matrix: python: - - "3.8" + - "3.9" - "3.11" # newest Python that is stable platform: - ubuntu-latest diff --git a/setup.cfg b/setup.cfg index 7969a26..19b23da 100644 --- a/setup.cfg +++ b/setup.cfg @@ -41,7 +41,7 @@ package_dir = =src # Require a min/specific Python version (comma-separated conditions) -python_requires = >=3.8 +python_requires = >=3.9 # Add here dependencies of your project (line-separated), e.g. requests>=2.2,<3.0. # Version specifiers like >=2.2,<3.0 avoid problems due to API changes in