Skip to content

Commit 4ee9a4a

Browse files
committed
Add Python 3.10 support
1 parent 2aac073 commit 4ee9a4a

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ jobs:
9696
- 3.7
9797
- 3.8
9898
- 3.9
99+
- 3.10
99100

100101
steps:
101102
- uses: actions/checkout@v2
@@ -137,6 +138,7 @@ jobs:
137138
# - 3.7
138139
# - 3.8
139140
- 3.9
141+
- 3.10
140142
group: [1, 2]
141143

142144
steps:

docs/html/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ distro community, cloud provider support channels, etc).
6767
The current version of pip works on:
6868

6969
- Windows, Linux and MacOS.
70-
- CPython 3.6, 3.7, 3.8, 3.9 and latest PyPy3.
70+
- CPython 3.6, 3.7, 3.8, 3.9, 3.10 and latest PyPy3.
7171

7272
pip is tested to work on the latest patch version of the Python interpreter,
7373
for each of the minor versions listed above. Previous patch versions are

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def should_update_common_wheels() -> bool:
7070
# completely to nox for all our automation. Contributors should prefer using
7171
# `tox -e ...` until this note is removed.
7272
# -----------------------------------------------------------------------------
73-
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "pypy3"])
73+
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"])
7474
def test(session: nox.Session) -> None:
7575
# Get the common wheels.
7676
if should_update_common_wheels():

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def get_version(rel_path: str) -> str:
4141
"Programming Language :: Python :: 3.7",
4242
"Programming Language :: Python :: 3.8",
4343
"Programming Language :: Python :: 3.9",
44+
"Programming Language :: Python :: 3.10",
4445
"Programming Language :: Python :: Implementation :: CPython",
4546
"Programming Language :: Python :: Implementation :: PyPy",
4647
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
minversion = 3.4.0
33
envlist =
44
docs, packaging, lint, vendoring,
5-
py36, py37, py38, py39, pypy3
5+
py36, py37, py38, py39, py310, pypy3
66

77
[helpers]
88
# Wrapper for calls to pip that make sure the version being used is the

0 commit comments

Comments
 (0)