Skip to content

Commit 88b7e0a

Browse files
committed
Try bumping minimum pip requirement to get pip on Python 3.12
1 parent e69f924 commit 88b7e0a

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
# These versions match the minimum and maximum versions of pip in
2323
# requirements.txt.
2424
# An empty string here represents the latest version.
25-
pip-version: ['==21.2.4', '']
25+
pip-version: ['==23.0', '']
2626
# The minimum version should be represented in setup.py.
2727
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12-dev"]
2828

CHANGELOG.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22
Release History
33
---------------
44

5+
2.5.0
6+
7+
- Support Python 3.10.
8+
- Bump `pip` requirement to 23.0.
9+
510
2.4.4
611

7-
- Bump `packaging` requirement to >= 20.5. Older versions of `pip-check-reqs` may be broken with the previously-specified version requirements.
12+
- Bump `packaging` requirement to >= 20.5. Older versions of `pip-check-reqs` may be broken with the previously-specified version requirements.
813

914
2.4.3
1015

pip_check_reqs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Package for finding missing and extra requirements."""
22

3-
__version__ = "2.4.4"
3+
__version__ = "2.5.0"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
packaging >= 20.5
22
# Pinned pip versions are matched in the GitHub workflows CI matrix.
3-
pip >= 21.2.4
3+
pip >= 23.0

0 commit comments

Comments
 (0)