Skip to content

Commit 43fc490

Browse files
committed
Remove support for Python 3.8
1 parent 4bfe082 commit 43fc490

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# An empty string here represents the latest version.
2525
pip-version: ['==23.2', '']
2626
# The minimum version should be represented in setup.py.
27-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12-dev"]
27+
python-version: ["3.9", "3.10", "3.11", "3.12-dev"]
2828

2929
steps:
3030
- uses: actions/checkout@v4

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Release History
55
2.5.0
66

77
- Support Python 3.10.
8+
- Remove support for Python 3.8.
89
- Bump `pip` requirement to 23.2.
910

1011
2.4.4

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ def _get_dependencies(requirements_file: Path) -> list[str]:
5151
"Intended Audience :: Developers",
5252
"Topic :: Software Development :: Build Tools",
5353
"License :: OSI Approved :: MIT License",
54-
"Programming Language :: Python :: 3.8",
5554
"Programming Language :: Python :: 3.9",
5655
"Programming Language :: Python :: 3.10",
5756
"Programming Language :: Python :: 3.11",
57+
"Programming Language :: Python :: 3.12",
5858
],
59-
python_requires=">=3.8.0",
59+
python_requires=">=3.9.0",
6060
packages=["pip_check_reqs"],
6161
entry_points={
6262
"console_scripts": [

0 commit comments

Comments
 (0)