summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2022-11-15 15:10:56 +0200
committerGitHub <noreply@github.com>2022-11-15 08:10:56 -0500
commit8590eaad3c4b1460606763332ab84b70033ad6a1 (patch)
tree4c06da211bf8430e54a23f6ca248e63952c8f54a
parent30022984f6445fbc322cbe97bb99aab1ddb1e4fd (diff)
downloaddocker-py-8590eaad3c4b1460606763332ab84b70033ad6a1.tar.gz
ci: add support for Python 3.11 (#3064)
Signed-off-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--.github/workflows/release.yml2
-rw-r--r--setup.py1
-rw-r--r--tox.ini2
4 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d163412..f23873f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: ["3.7", "3.8", "3.9", "3.10", "3.11.0-alpha - 3.11.0"]
+ python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index dde656c..7c6358a 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -20,7 +20,7 @@ jobs:
- uses: actions/setup-python@v4
with:
- python-version: '3.10'
+ python-version: '3.x'
- name: Generate Pacakge
run: |
diff --git a/setup.py b/setup.py
index 68f7c27..ff6da71 100644
--- a/setup.py
+++ b/setup.py
@@ -71,6 +71,7 @@ setup(
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
+ 'Programming Language :: Python :: 3.11',
'Topic :: Software Development',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
diff --git a/tox.ini b/tox.ini
index d35d41a..9edc15c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py36, py37, flake8
+envlist = py{37,38,39,310,311}, flake8
skipsdist=True
[testenv]