Skip to content
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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.13.1
1.14.0
2 changes: 1 addition & 1 deletion config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
"allauth.account",
"allauth.socialaccount",
"django_celery_beat",
"captcha",
"django_recaptcha",
"wagtailautocomplete",
"wagtailcaptcha",
"wagtailmenus",
Expand Down
24 changes: 12 additions & 12 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pytz==2023.3.post1 # https://github.com/stub42/pytz
python-slugify==8.0.1 # https://github.com/un33k/python-slugify
Pillow==10.1.0 # https://github.com/python-pillow/Pillow
rcssmin==1.1.1 # https://github.com/ndparker/rcssmin
rcssmin==1.2.2 # https://github.com/ndparker/rcssmin
argon2-cffi==23.1.0 # https://github.com/hynek/argon2_cffi
whitenoise==6.6.0 # https://github.com/evansd/whitenoise
redis==5.0.1 # https://github.com/redis/redis-py
Expand All @@ -12,13 +12,13 @@ xmltodict==0.13.0 # https://github.com/martinblech/xmltodict.git

# Django
# ------------------------------------------------------------------------------
django==5.0.7
django==5.2.12
django-environ==0.11.2 # https://github.com/joke2k/django-environ
django-model-utils==4.5.1 # https://github.com/jazzband/django-model-utils
django-allauth==0.63.6 # https://github.com/pennersr/django-allauth
django-crispy-forms==2.3 # https://github.com/django-crispy-forms/django-crispy-forms
crispy-bootstrap5==2024.2 # https://github.com/django-crispy-forms/crispy-bootstrap5
django-compressor==4.4 # https://github.com/django-compressor/django-compressor
django-compressor==4.6.0 # https://github.com/django-compressor/django-compressor
django-redis==5.4.0 # https://github.com/jazzband/django-redis4

# Django REST
Expand All @@ -27,33 +27,33 @@ djangorestframework-simplejwt==5.3.1 # https://django-rest-framework-simplejwt.

# Wagtail
# ------------------------------------------------------------------------------
wagtail==6.3.2 # https://github.com/wagtail/wagtail
wagtail==7.3.1 # https://github.com/wagtail/wagtail

# Wagtail Recaptcha
# ------------------------------------------------------------------------------
django-recaptcha==3.0.0
wagtail-django-recaptcha==1.0
django-recaptcha==4.1.0
wagtail-django-recaptcha==2.1.1

# Wagtail Menu
# ------------------------------------------------------------------------------
wagtailmenus==4.0
wagtailmenus==4.0.6

# Wagtail Localize
# ------------------------------------------------------------------------------
wagtail-localize==1.9
wagtail-localize==1.13

#Wagtail Admin
# ------------------------------------------------------------------------------
wagtail-modeladmin==2.0.0
wagtail-modeladmin==2.2.0

# Django celery
# ------------------------------------------------------------------------------
django-celery-beat==2.6.0 # https://github.com/celery/django-celery-beat
django_celery_results==2.5.1
django-celery-beat==2.9.0 # https://github.com/celery/django-celery-beat
django_celery_results==2.6.0

# Wagtail-Autocomplete
# ------------------------------------------------------------------------------
wagtail-autocomplete==0.11.0 # https://github.com/wagtail/wagtail-autocomplete
wagtail-autocomplete==0.12.0 # https://github.com/wagtail/wagtail-autocomplete

# Minio
minio==7.2.7
Expand Down
4 changes: 2 additions & 2 deletions requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ watchgod==0.8.2 # https://github.com/samuelcolvin/watchgod

# Testing
# ------------------------------------------------------------------------------
mypy==1.6.1 # https://github.com/python/mypy
django-stubs==4.2.6 # https://github.com/typeddjango/django-stubs
mypy==1.10.0 # https://github.com/python/mypy
django-stubs==5.2.9 # https://github.com/typeddjango/django-stubs
Copy link

Copilot AI Mar 9, 2026

Choose a reason for hiding this comment

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

Upgrading django-stubs from 4.2.6 to 5.2.9 likely requires a corresponding upgrade of mypy (line 10). The django-stubs 5.x series typically requires mypy >= 1.10.0, but mypy is still pinned at 1.6.1 on the line above. This version mismatch will likely cause installation or runtime errors when running type checks. Please also update mypy to a compatible version (e.g., mypy>=1.10.0).

Copilot uses AI. Check for mistakes.
pytest==7.4.3 # https://github.com/pytest-dev/pytest
pytest-sugar==0.9.7 # https://github.com/Frozenball/pytest-sugar

Expand Down