10000 Drop support for Python 3.8 · python/blurb@95bdb6b · GitHub
[go: up one dir, main page]

Skip to content

Commit 95bdb6b

Browse files
committed
Drop support for Python 3.8
1 parent f874c28 commit 95bdb6b

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 0 additions & 2 deletions
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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@ maintainers = [
1515
authors = [
1616
{ name = "Larry Hastings", email = "larry@hastings.org" },
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

Lines changed: 1 addition & 1 deletion
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)
0