summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2021-10-11 22:30:36 +0300
committerHugo van Kemenade <hugovk@users.noreply.github.com>2021-10-11 23:06:12 +0300
commita9de3432103141c7519783ad4d8088797c892914 (patch)
treee1157d9ad26c7b605bf7d4d0dd646b454369815e
parent7172269b067271911a9e643ebdcdca8318f2ded3 (diff)
downloaddocker-py-a9de3432103141c7519783ad4d8088797c892914.tar.gz
Add support for Python 3.10
Signed-off-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--setup.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b692508..a73bcba 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
- python-version: [3.6, 3.7, 3.8, 3.9]
+ python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
diff --git a/setup.py b/setup.py
index a966fea..1e76fdb 100644
--- a/setup.py
+++ b/setup.py
@@ -75,6 +75,7 @@ setup(
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
+ 'Programming Language :: Python :: 3.10',
'Topic :: Software Development',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',