Skip to content

Commit

Permalink
Upgrade python dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaudcolas committed Dec 16, 2024
1 parent 283ce81 commit cb64bcd
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion demo/core/templatetags/wagtailcore_tags.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from wagtail.core.templatetags.wagtailcore_tags import register
from wagtail.templatetags.wagtailcore_tags import register

from pattern_library.monkey_utils import override_tag

Expand Down
13 changes: 12 additions & 1 deletion demo/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"wagtail.documents",
"wagtail.images",
"wagtail.admin",
"wagtail.core",
"wagtail",
"modelcluster",
"taggit",
"django.contrib.admin",
Expand All @@ -42,6 +42,13 @@
"rest_framework",
]

DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": "db.sqlite3",
}
}

MIDDLEWARE = [
"django.middleware.security.SecurityMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
Expand Down Expand Up @@ -119,3 +126,7 @@
STORYBOOK_DIR = os.path.join(PROJECT_DIR, "demo", "storybook_compiled")

X_FRAME_OPTIONS = "SAMEORIGIN"

SILENCED_SYSTEM_CHECKS = ["templates.W003"]

WAGTAILADMIN_BASE_URL = "/admin/"
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
django==3.2.11
wagtail==2.16.1
django-pattern-library==0.7.0
django==5.1.4
wagtail==6.3.1
django-pattern-library==1.3.0
black==22.3.0
flake8==4.0.1
gunicorn==20.1.0

0 comments on commit cb64bcd

Please sign in to comment.