Skip to content

Commit a57558e

Browse files
feat!: Drop support for Python 3.8 (eol 2024-10-07) (#49)
Release-As: 1.3.0
1 parent 2af7640 commit a57558e

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
python-version: ["3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2020

2121
steps:
2222
- uses: actions/checkout@v4
@@ -55,7 +55,7 @@ jobs:
5555

5656
strategy:
5757
matrix:
58-
python-version: ["3.9", "3.10", "3.11", "3.12"]
58+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5959

6060
steps:
6161
- uses: actions/checkout@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This is a synchronous implementation which blocks the caller's thread when readi
1818

1919
## Supported Python versions
2020

21-
This version of the package is compatible with Python 3.8 and higher.
21+
This version of the package is compatible with Python 3.9 and higher.
2222

2323
## Contributing
2424

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ classifiers = [
1313
"License :: OSI Approved :: Apache Software License",
1414
"Operating System :: OS Independent",
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
2019
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
2121
"Topic :: Software Development",
2222
"Topic :: Software Development :: Libraries",
2323
]
@@ -27,7 +27,7 @@ exclude = [
2727
]
2828

2929
[tool.poetry.dependencies]
30-
python = ">=3.8"
30+
python = ">=3.9"
3131
urllib3 = ">=1.26.0,<3"
3232

3333

@@ -50,9 +50,9 @@ Flask = "2.2.5"
5050
optional = true
5151

5252
[tool.poetry.group.docs.dependencies]
53-
sphinx = "^1.3.0"
53+
sphinx = ">=6,<8"
5454
sphinx-autodoc-typehints = "^1.3.0"
55-
sphinx-rtd-theme = "^1.3.0"
55+
sphinx-rtd-theme = ">=1.3,<4.0"
5656
backoff = ">=1.4.3"
5757
certifi = ">=2018.4.16"
5858
expiringdict = ">=1.1.4"
@@ -63,7 +63,7 @@ urllib3 = ">=1.26.0"
6363
jinja2 = "3.0.0"
6464

6565
[tool.mypy]
66-
python_version = "3.8"
66+
python_version = "3.9"
6767
ignore_missing_imports = true
6868
install_types = true
6969
non_interactive = true

0 commit comments

Comments
 (0)