Skip to content

Commit

Permalink
Drop Python 3.8 support (#924)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Nov 19, 2024
1 parent ffa6109 commit fb2ed4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- build
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12']
os: [ubuntu]
registry: ['1']
pytest-arg: ['']
Expand Down
1 change: 1 addition & 0 deletions CHANGES/924.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Removed Python 3.8 support as it has reached end of life.
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ dynamic = ["version"]
readme = "README.rst"
description = "A simple Docker HTTP API wrapper written with asyncio and aiohttp."
license = { text = "Apache 2.0" }
requires-python = ">=3.8.0"
requires-python = ">=3.9.0"

classifiers = [
"Programming Language :: Python :: 3",
"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",
Expand Down

0 comments on commit fb2ed4b

Please sign in to comment.