Skip to content

Commit

Permalink
add python 3.10-3.11, and django 4.1-5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Micah Denbraver committed May 6, 2024
1 parent fef1bab commit 8d79718
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v2
Expand Down
19 changes: 14 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,29 @@
skipsdist = False
usedevelop = true
envlist =
py{37,38,39}-dj{22,32}
py{38,39}-dj{40,405}
py{37,38,39}-dj22
py{38,39,310}-dj40
py{38,39,310,311}-dj41
py{38,39,310,311}-dj42
py{310,311}-dj50
flake8

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39, flake8
3.10: py310
3.11: py311

[gh-actions:env]
DJANGO =
2.2: dj22
3.2: dj32
4.0: dj40
4.0.5: dj405
4.1: dj41
4.2: dj42
5.0: dj50

[testenv]
usedevelop = true
Expand All @@ -40,8 +47,10 @@ deps =
firebase-admin>=6.2
dj22: Django>=2.2,<3.0
dj32: Django>=3.2,<3.3
dj40: Django>=4.0,<4.0.5
dj405: Django>=4.0.5,<4.1
dj40: Django>=4.0,<4.1
dj41: Django>=4.1.3,<4.2
dj42: Django>=4.2.8,<4.3
dj50: Django>=5.0,<5.1

[testenv:flake8]
commands = flake8 --exit-zero
Expand Down

0 comments on commit 8d79718

Please sign in to comment.