Skip to content

Commit

Permalink
Add testing on Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Jun 13, 2023
1 parent 36bd490 commit b024747
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ envlist =
py3{7,8,9,10}-django32
py3{8,9,10}-django40
py3{8,9,10}-django41
py3{8,9,10}-django42
py3{8,9,10,11}-django42
py3{8,9,10}-main

[testenv]
Expand All @@ -12,6 +12,7 @@ basepython =
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
commands = {envpython} setup.py test
setenv=
PYTHONWARNINGS=default
Expand Down

0 comments on commit b024747

Please sign in to comment.