Skip to content

Commit 5f2eeba

Browse files
authored
Drop support for Python 3.8 (#27)
2 parents f874c28 + 95bdb6b commit 5f2eeba

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
14+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1515

1616
steps:
1717
- uses: actions/checkout@v4

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ and automatically uses the correct file paths.
2626
You can install **blurb** from PyPI using `pip`. Alternatively,
2727
simply add `blurb` to a directory on your path.
2828

29-
**blurb**'s only dependency is Python 3.8+.
30-
3129

3230
## Files used by blurb
3331

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@ maintainers = [
1515
authors = [
1616
{ name = "Larry Hastings", email = "[email protected]" },
1717
]
18-
requires-python = ">=3.8"
18+
requires-python = ">=3.9"
1919
classifiers = [
2020
"Intended Audience :: Developers",
2121
"License :: OSI Approved :: BSD License",
2222
"Programming Language :: Python :: 3 :: Only",
23-
"Programming Language :: Python :: 3.8",
2423
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
requires =
33
tox>=4.2
44
env_list =
5-
py{313, 312, 311, 310, 39, 38}
5+
py{313, 312, 311, 310, 39}
66

77
[testenv]
88
extras =

0 commit comments

Comments
 (0)