Skip to content

Commit

Permalink
Dj32 (encode#7713)
Browse files Browse the repository at this point in the history
adds django 3.2 line to the build matrix
  • Loading branch information
auvipy authored and sigvef committed Dec 3, 2022
1 parent 6493859 commit 3579d5f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
*.db
*~
.*
*.py.bak


/site/
/htmlcov/
Expand Down
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,20 @@ matrix:
- { python: "3.6", env: DJANGO=2.2 }
- { python: "3.6", env: DJANGO=3.0 }
- { python: "3.6", env: DJANGO=3.1 }
- { python: "3.6", env: DJANGO=master }
- { python: "3.6", env: DJANGO=3.2 }

- { python: "3.7", env: DJANGO=2.2 }
- { python: "3.7", env: DJANGO=3.0 }
- { python: "3.7", env: DJANGO=3.1 }
- { python: "3.7", env: DJANGO=master }
- { python: "3.7", env: DJANGO=3.2 }

- { python: "3.8", env: DJANGO=3.0 }
- { python: "3.8", env: DJANGO=3.1 }
- { python: "3.8", env: DJANGO=3.2 }
- { python: "3.8", env: DJANGO=master }

- { python: "3.9", env: DJANGO=3.1 }
- { python: "3.9", env: DJANGO=3.2 }
- { python: "3.9", env: DJANGO=master }

- { python: "3.8", env: TOXENV=base }
Expand All @@ -38,6 +40,7 @@ matrix:

allow_failures:
- env: DJANGO=master
- env: DJANGO=3.2

install:
- pip install tox tox-travis
Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ envlist =
{py35,py36,py37}-django22,
{py36,py37,py38}-django30,
{py36,py37,py38,py39}-django31,
{py36,py37,py38,py39}-djangomaster,
{py36,py37,py38,py39}-django32,
{py38,py39}-djangomaster,
base,dist,lint,docs,

[travis:env]
DJANGO =
2.2: django22
3.0: django30
3.1: django31
3.2: django32
master: djangomaster

[testenv]
Expand All @@ -23,6 +25,7 @@ deps =
django22: Django>=2.2,<3.0
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2a1,<4.0
djangomaster: https://github.com/django/django/archive/master.tar.gz
-rrequirements/requirements-testing.txt
-rrequirements/requirements-optionals.txt
Expand Down

0 comments on commit 3579d5f

Please sign in to comment.