Skip to content

Commit

Permalink
Drop Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lafrech committed Oct 24, 2024
1 parent dcd276b commit 33b5000
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint,py38,py39,py310,py311,py312
envlist = lint,py39,py310,py311,py312
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 33b5000

Please sign in to comment.