summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--docs/html/installation.md2
-rw-r--r--noxfile.py2
-rw-r--r--setup.py1
-rw-r--r--tox.ini2
5 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 019eba65b..d71ba0735 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -96,6 +96,7 @@ jobs:
- 3.7
- 3.8
- 3.9
+ - 3.10
steps:
- uses: actions/checkout@v2
@@ -137,6 +138,7 @@ jobs:
# - 3.7
# - 3.8
- 3.9
+ - 3.10
group: [1, 2]
steps:
diff --git a/docs/html/installation.md b/docs/html/installation.md
index ecb71a4aa..17cb0fc4b 100644
--- a/docs/html/installation.md
+++ b/docs/html/installation.md
@@ -67,7 +67,7 @@ distro community, cloud provider support channels, etc).
The current version of pip works on:
- Windows, Linux and MacOS.
-- CPython 3.6, 3.7, 3.8, 3.9 and latest PyPy3.
+- CPython 3.6, 3.7, 3.8, 3.9, 3.10 and latest PyPy3.
pip is tested to work on the latest patch version of the Python interpreter,
for each of the minor versions listed above. Previous patch versions are
diff --git a/noxfile.py b/noxfile.py
index dae585738..0067c7071 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -70,7 +70,7 @@ def should_update_common_wheels() -> bool:
# completely to nox for all our automation. Contributors should prefer using
# `tox -e ...` until this note is removed.
# -----------------------------------------------------------------------------
-@nox.session(python=["3.6", "3.7", "3.8", "3.9", "pypy3"])
+@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"])
def test(session: nox.Session) -> None:
# Get the common wheels.
if should_update_common_wheels():
diff --git a/setup.py b/setup.py
index a233bd253..75f5195cf 100644
--- a/setup.py
+++ b/setup.py
@@ -41,6 +41,7 @@ setup(
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
diff --git a/tox.ini b/tox.ini
index 5000f115e..a46ad04b7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,7 +2,7 @@
minversion = 3.4.0
envlist =
docs, packaging, lint, vendoring,
- py36, py37, py38, py39, pypy3
+ py36, py37, py38, py39, py310, pypy3
[helpers]
# Wrapper for calls to pip that make sure the version being used is the