Skip to content

Commit

Permalink
Drop Python 3.8 support
Browse files Browse the repository at this point in the history
Python 3.8 is at [end-of-life](https://devguide.python.org/versions/).
This commit will drop support for Python 3.8.
  • Loading branch information
br3ndonland committed Oct 5, 2024
1 parent 9a164e2 commit a8a4c59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
id-token: write
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
env:
HATCH_ENV: "ci"
HATCH_VERSION: "1.12.0"
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -30,7 +29,7 @@ keywords = ["asgi", "dotenv", "environment variables", "fastapi", "settings"]
license = "MIT"
name = "fastenv"
readme = "README.md"
requires-python = ">=3.8.1,<4"
requires-python = ">=3.9,<4"

[project.optional-dependencies]
checks = [
Expand Down

0 comments on commit a8a4c59

Please sign in to comment.