From 9290643562674378b69d3d78eeee0396d0e95f17 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 30 Nov 2024 20:12:26 +0100 Subject: [PATCH] Drop Python 3.8 --- .github/workflows/main.yml | 5 ++--- pyproject.toml | 3 +-- tox.ini | 4 ++-- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5d07d193..996b2a99 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,8 +15,8 @@ concurrency: env: FORCE_COLOR: "1" TOX_TESTENV_PASSENV: "FORCE_COLOR" - MIN_PYTHON_VERSION: "3.8" - DEFAULT_PYTHON_VERSION: "3.10" + MIN_PYTHON_VERSION: "3.9" + DEFAULT_PYTHON_VERSION: "3.11" permissions: contents: read @@ -38,7 +38,6 @@ jobs: strategy: matrix: python-version: - - "3.8" - "3.9" - "3.10" - "3.11" diff --git a/pyproject.toml b/pyproject.toml index 582ccaa9..aac84dde 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,6 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -29,7 +28,7 @@ classifiers = [ "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", ] -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = [ "pkginfo >= 1.8.1", "readme-renderer >= 35.0", diff --git a/tox.ini b/tox.ini index e5c71aab..81a70f10 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] -minversion = 3.8 -envlist = lint,types,py{38,39,310,311,312,313},integration,docs +minversion = 3.9 +envlist = lint,types,py{39,310,311,312,313},integration,docs isolated_build = True [testenv]