From 3ff6a211d1bfaf636017a23a1a2c6891abb4863e Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Thu, 23 Jan 2025 16:29:46 +0000 Subject: [PATCH] Drop Python 3.8 (#713) --- .github/workflows/ci.yml | 4 ++-- setup.cfg | 2 +- setup.py | 5 +++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f25d79a9..4b134204 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,10 +51,10 @@ jobs: name: Test strategy: matrix: - pyver: ['3.8', '3.9', '3.10', '3.11'] + pyver: ['3.9', '3.10', '3.11'] os: [ubuntu, macos, windows] include: - - pyver: pypy-3.8 + - pyver: pypy-3.9 os: ubuntu runs-on: ${{ matrix.os }}-latest timeout-minutes: 15 diff --git a/setup.cfg b/setup.cfg index 0fa7a551..bccc9f93 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,4 +11,4 @@ max-line-length = 120 max-complexity = 10 [bdist_wheel] -python-tag = py38.py39.py310.py311 +python-tag = py39.py310.py311.py312.py313 diff --git a/setup.py b/setup.py index b44341f2..46d79ea0 100644 --- a/setup.py +++ b/setup.py @@ -22,10 +22,11 @@ 'Environment :: Console', 'Programming Language :: Python', '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", + "Programming Language :: Python :: 3.13", 'Intended Audience :: Developers', 'Intended Audience :: Information Technology', 'Intended Audience :: System Administrators', @@ -70,5 +71,5 @@ 'Pygments>=2.2.0', "watchfiles>=0.10" ], - python_requires=">=3.8", + python_requires=">=3.9", )