Skip to content

feat!: Drop support for Python 3.8 (eol 2024-10-07) #49

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This is a synchronous implementation which blocks the caller's thread when readi

## Supported Python versions

This version of the package is compatible with Python 3.8 and higher.
This version of the package is compatible with Python 3.9 and higher.

## Contributing

Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
Expand All @@ -27,7 +27,7 @@ exclude = [
]

[tool.poetry.dependencies]
python = ">=3.8"
python = ">=3.9"
urllib3 = ">=1.26.0,<3"


Expand All @@ -50,9 +50,9 @@ Flask = "2.2.5"
optional = true

[tool.poetry.group.docs.dependencies]
sphinx = "^1.3.0"
sphinx = ">=6,<8"
sphinx-autodoc-typehints = "^1.3.0"
sphinx-rtd-theme = "^1.3.0"
sphinx-rtd-theme = ">=1.3,<4.0"
backoff = ">=1.4.3"
certifi = ">=2018.4.16"
expiringdict = ">=1.1.4"
Expand All @@ -63,7 +63,7 @@ urllib3 = ">=1.26.0"
jinja2 = "3.0.0"

[tool.mypy]
python_version = "3.8"
python_version = "3.9"
ignore_missing_imports = true
install_types = true
non_interactive = true
Expand Down