diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 107d6ad..68461c4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", pypy3.9] + python-version: ["3.9", "3.10", "3.11", "3.12", pypy3.9] with: use_poetry: true use_sphinx: true diff --git a/CHANGELOG b/CHANGELOG index a2ee470..e701445 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +Unreleased +---------- + +- Dropped support for end-of-life Python 3.8. + v3.1.0 ------ diff --git a/pyproject.toml b/pyproject.toml index 7b5465d..86c8d64 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,6 @@ classifiers = [ 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', @@ -30,7 +29,7 @@ include = [ ] [tool.poetry.dependencies] -python = "^3.8" +python = "^3.9" pytz = ">=2022.7" Flask = ">=2.0" Babel = ">=2.12"