Skip to content

Commit

Permalink
add Django 4.0, Python 3.10, drop Django 1.11 in tox.ini and GitHub a…
Browse files Browse the repository at this point in the history
…ctions
  • Loading branch information
PetrDlouhy committed Feb 24, 2022
1 parent bd3e807 commit 358bbcf
Show file tree
Hide file tree
Showing 2 changed files with 7 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 ]
python-version: [ 3.6, 3.7, 3.8, 3.9, '3.10' ]

steps:
- uses: actions/checkout@v1
Expand Down
8 changes: 6 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
envlist =
begin
py36-lint
py{36,37,38,39}-django{111,2,21,22,3,31}
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}
coverage-report

[gh-actions]
Expand All @@ -11,6 +13,7 @@ python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310

[testenv]
passenv = GITHUB_*
Expand All @@ -21,7 +24,8 @@ deps=
django22: Django>=2.2,<2.3
django3: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django111: Django>=1.11,<1.12
django32: Django>=3.2,<40
django40: Django>=4.0,<4.1
coverage[toml]
pillow
ipdb
Expand Down

0 comments on commit 358bbcf

Please sign in to comment.