From 770170dd3c1d9946a2ecfb4bfb29e5d73daffd2a Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 19 Nov 2024 09:22:19 -0500 Subject: [PATCH] chore: drop EOLed Python 3.8, switch to 3.9 where needed --- .github/workflows/benchmark.yml | 1 - .github/workflows/test.yml | 5 ++--- setup.cfg | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index e53b99a..fffb07d 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -10,7 +10,6 @@ jobs: fail-fast: false matrix: python-version: - - '3.8' - '3.9' - '3.10' - '3.11' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c037dea..74d408f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,6 @@ jobs: - ubuntu-latest - windows-latest python-version: - - '3.8' - '3.9' - '3.10' - '3.11' @@ -28,10 +27,10 @@ jobs: - py include: - os: ubuntu-latest - python-version: '3.8' + python-version: '3.9' toxenv: py-dev - os: ubuntu-latest - python-version: '3.8' + python-version: '3.9' toxenv: lint steps: - name: Check out repository diff --git a/setup.cfg b/setup.cfg index dc675c6..bd9a1b1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,7 +20,6 @@ classifiers = #Development Status :: 5 - Production/Stable Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 @@ -39,7 +38,7 @@ project_urls = packages = find: package_dir = =src -python_requires = >=3.8 +python_requires = >=3.9 install_requires = joblib ~= 1.1 platformdirs