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

chore: update requirements #294

Merged
merged 1 commit into from
Aug 23, 2024
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Changelog

Unreleased
----------
* Add Wagtail 6.2 support.
* EntryPage: auto slug generation from title

2.1.1 (2024-06-25)
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get_metadata(package, field):
install_requires=[
'wagtail>=5.2,<7.0',
'django-el-pagination==4.0.0',
'django-taggit>=3.1.0,<4.1',
'django-taggit>=5.0,<5.1',
'wagtail-markdown==0.11.1'
],
url='http://github.com/APSL/puput',
Expand All @@ -41,6 +41,7 @@ def get_metadata(package, field):
'Framework :: Django :: 5.0',
'Framework :: Wagtail',
'Framework :: Wagtail :: 5',
'Framework :: Wagtail :: 6',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
Expand Down
17 changes: 10 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[tox]
envlist =
py{38,39}-dj{42}-{wt52,60,61}
py{310,311,312}-dj{42,50}-wt{52,60,61}
py{38,39}-dj{42}-{wt52,60,61,62}
py{310,311,312}-dj{42,50}-wt{52,60,61,62}
flake8
black

[gh-actions]
python =
3.8: py38-dj42-wt{52,60,61}
3.9: py39-dj42-wt{52,60,61}
3.10: py310-dj{42,50}-wt{52,60,61}
3.11: py311-dj{42,50}-wt{52,60,61}
3.12: py312-dj{42,50}-wt{52,60,61}, flake8, black
3.8: py38-dj42-wt{52,60,61,62}
3.9: py39-dj42-wt{52,60,61,62}
3.10: py310-dj{42,50}-wt{52,60,61,62}
3.11: py311-dj{42,50}-wt{52,60,61,62}
3.12: py312-dj{42,50}-wt{52,60,61,62}, flake8, black

[flake8]
max-line-length = 120
Expand All @@ -35,6 +35,9 @@ deps =
dj42: Django>=4.2,<4.3
dj50: Django>=5.0,<5.1
wt52: wagtail>=5.2,<5.3
wt60: wagtail>=6.0,<6.1
wt61: wagtail>=6.1,<6.2
wt62: wagtail>=6.2,<6.3

[testenv:flake8]
basepython = python3.12
Expand Down
Loading