Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support/wagtail 50 #80

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Unreleased
==========
- Update for Wagtail 5.1
- Drop support for Django 3.7
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


4.1.0
=====
Expand Down
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
minversion = 3.14.6
envlist =
py{37,38,39,310}-django32-wagtail{41,42,50}-factoryboy32
py{38,39,310}-django40-wagtail{41,42,50}-factoryboy32
py{38,39,310,311}-django41-wagtail{41,42,50}-factoryboy32
py{38,39,310}-django{32,41}-wagtail{41,42,50,51}-factoryboy32
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
py{38,39,310}-django{32,41}-wagtail{41,42,50,51}-factoryboy32
py{38,39,310}-django{32,41}-wagtail{41,50,51}-factoryboy32

py311-django41-wagtail{41,42,50,51}-factoryboy32
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
py311-django41-wagtail{41,42,50,51}-factoryboy32
py311-django41-wagtail{41,50,51}-factoryboy32

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

and the wagtail42: wagtail>=4.2,<5.0 line can go

py311-django42-wagtail{50,51}-factoryboy32
coverage-report
lint

Expand All @@ -26,7 +26,7 @@ deps =
factoryboy32: factory-boy>=3.2,<3.3

[testenv:coverage-report]
basepython = python3.7
basepython = python3.8
deps = coverage
pip_pre = true
skip_install = true
Expand All @@ -35,7 +35,7 @@ commands =
coverage report

[testenv:lint]
basepython = python3.7
basepython = python3.8
deps = flake8
commands =
flake8 src tests setup.py
Expand Down
Loading