summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2022-12-02 18:42:35 +0200
committerHugo van Kemenade <hugovk@users.noreply.github.com>2022-12-02 18:42:35 +0200
commit0d4118d94964a87701b5a266f0ed816cf7fe0377 (patch)
treee20b9f0c7cf7421949624cb906aed6c4eab491da
parent1e48317df1468c2d3550d4251cb5649a407c52cc (diff)
downloadfeedgenerator-0d4118d94964a87701b5a266f0ed816cf7fe0377.tar.gz
Test Python 3.12-dev
-rw-r--r--.github/workflows/main.yml6
-rw-r--r--tox.ini3
2 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index d8b6da8..96f1bd5 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -11,12 +11,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
+ python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade Pip
diff --git a/tox.ini b/tox.ini
index beaf555..c2264be 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py{3.6,3.7,3.8,3.9,3.10,3.11}
+envlist = py{3.6,3.7,3.8,3.9,3.10,3.11,3.12}
[testenv]
basepython =
@@ -9,6 +9,7 @@ basepython =
py3.9: python3.9
py3.10: python3.10
py3.11: python3.11
+ py3.12: python3.12
commands =
{envpython} --version
pytest