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 af5bae1 commit df6885d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
needs: [setup]
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
fail-fast: false
matrix:
linux-version: ["alpine", "bookworm", "slim-bookworm"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion docs/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ The _pyproject.toml_ could look like this:
license = "MIT"
name = "package-name"
readme = "README.md"
requires-python = ">=3.8.1,<4"
requires-python = ">=3.9,<4"

[project.optional-dependencies]
checks = [
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ classifiers = [
"Framework :: FastAPI",
"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 @@ -31,7 +30,7 @@ keywords = ["asgi", "docker", "fastapi", "gunicorn", "uvicorn"]
license = "MIT"
name = "inboard"
readme = "README.md"
requires-python = ">=3.8.1,<4"
requires-python = ">=3.9,<4"

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

0 comments on commit df6885d

Please sign in to comment.