Skip to content

Commit

Permalink
Drop testing against Django 3.0
Browse files Browse the repository at this point in the history
Testing against 2.2 (LTS) and 3.1 (latest release) should be sufficient
  • Loading branch information
cwdavies committed Aug 14, 2020
1 parent 71150d6 commit 2371e5e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,20 @@ jobs:
strategy:
matrix:
toxenv:
- py36-dj22-wag23
- py36-dj22-wag210
- py36-dj30-wag210
- py36-dj31-wag210
- py38-dj22-wag210
- py38-dj30-wag210
- py38-dj31-wag210
include:
- toxenv: py36-dj22-wag210
- toxenv: py36-dj22-wag23
python-version: 3.6
- toxenv: py36-dj30-wag210
- toxenv: py36-dj22-wag210
python-version: 3.6
- toxenv: py36-dj31-wag210
python-version: 3.6
- toxenv: py38-dj22-wag210
python-version: 3.8
- toxenv: py38-dj30-wag210
python-version: 3.8
- toxenv: py38-dj31-wag210
python-version: 3.8

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Wagtail-Flags adds a Wagtail admin UI and Wagtail Site-based condition on top of
## Dependencies

- Python 3.6+
- Django 2.2-3.1
- Django 2.2, 3.1
- Django-Flags 4.2+
- Wagtail 2.3, 2.9, 2.10

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
classifiers=[
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Wagtail",
"Framework :: Wagtail :: 2",
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ skipsdist=True
envlist=
lint,
py{36}-dj{22}-wag{23,29},
py{36,38}-dj{22,30,31}-wag{210}
py{36,38}-dj{22,31}-wag{210}

[testenv]
install_command=pip install -e ".[testing]" -U {opts} {packages}
Expand All @@ -20,7 +20,6 @@ basepython=

deps=
dj22: Django>=2.2,<2.3
dj30: Django>=3.0,<3.1
dj31: Django>=3.1,<3.2
wag23: wagtail>=2.3,<2.4
wag29: wagtail>=2.9,<2.10
Expand Down

0 comments on commit 2371e5e

Please sign in to comment.