From 33b5000193585b7b5402efc4a60faf98f63c765e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lafr=C3=A9choux?= Date: Fri, 25 Oct 2024 00:51:25 +0200 Subject: [PATCH] Drop Python 3.8 --- .github/workflows/build-release.yml | 2 +- pyproject.toml | 3 +-- tox.ini | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index dae47ba5..33d72ce1 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: include: - - { name: '3.8', python: '3.8', tox: py38 } + - { name: '3.9', python: '3.9', tox: py39 } - { name: '3.12', python: '3.12', tox: py312 } steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 29e4cea6..b4685cdf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,13 +16,12 @@ classifiers = [ "Framework :: Flask", "License :: OSI Approved :: MIT License", "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", "Programming Language :: Python :: 3.12", ] -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = [ "werkzeug>=3.0.1,<4", "flask>=3.0.2,<4", diff --git a/tox.ini b/tox.ini index 3e462d5f..3afb7cc5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint,py38,py39,py310,py311,py312 +envlist = lint,py39,py310,py311,py312 skip_missing_interpreters = True [testenv]