summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2022-11-16 18:04:02 +0200
committerHugo van Kemenade <hugovk@users.noreply.github.com>2022-11-16 18:04:02 +0200
commita8cdf46b26f2f7029d3749bc431e2b80fe28b04a (patch)
tree54915baa5f7f9340b95523d8a6b4317c7ab54727
parent334ef84a05c953ed5dbec7b9c6d4310879eeab5a (diff)
downloadsmmap-a8cdf46b26f2f7029d3749bc431e2b80fe28b04a.tar.gz
Add support for Python 3.11
-rw-r--r--.github/workflows/pythonpackage.yml6
-rw-r--r--tox.ini2
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml
index e6e68ff..d593fd0 100644
--- a/.github/workflows/pythonpackage.yml
+++ b/.github/workflows/pythonpackage.yml
@@ -15,14 +15,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
+ python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 1000
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
diff --git a/tox.ini b/tox.ini
index c34ab02..092c79d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
-envlist = flake8, py36, py37, py38, py39, py310
+envlist = flake8, py{36, 37, 38, 39, 310, 311}
[testenv]
commands = {envpython} -m pytest --cov smmap --cov-report xml {posargs}