Skip to content

Commit

Permalink
GitHub actions don't test in unsupported Python 3.6, update testing m…
Browse files Browse the repository at this point in the history
…atrix
  • Loading branch information
PetrDlouhy committed Aug 24, 2023
1 parent 556a416 commit 56476f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9, '3.10' ]
python-version: [ 3.7, 3.8, 3.9, '3.10', '3.11' ]

steps:
- uses: actions/checkout@v1
Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ envlist =
py{36,37,38,39}-django{2}
py{36,37,38,39,310}-django{21,22,3,31,32}
py{38,39,310}-django{40}
py{38,39,310}-django{41}
py{38,39,310}-django{41,42}
coverage-report

[gh-actions]
Expand All @@ -15,6 +15,7 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311

[testenv]
passenv = GITHUB_*
Expand All @@ -27,7 +28,8 @@ deps=
django31: Django>=3.1,<3.2
django32: Django>=3.2,<4.0
django40: Django>=4.0,<4.1
django41: Django>=4.1,<5.0
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5.0
coverage[toml]
pillow
ipdb
Expand Down

0 comments on commit 56476f9

Please sign in to comment.