Upgrade bakerydemo to Django 6.0 - #594
Merged
Merged
Conversation
gasman
reviewed
Jan 5, 2026
| "django.contrib.messages", | ||
| "django.contrib.staticfiles", | ||
| "django.contrib.sitemaps", | ||
| "django.contrib.postgres", |
Contributor
There was a problem hiding this comment.
This isn't valid if we're running against a non-Postgres database. There's an existing PR #587 dealing with this, which I'll merge shortly.
Contributor
Author
There was a problem hiding this comment.
Thanks for the clarification.
I will keep this PR focused on the Django 6.0 upgrade itself and defer any Postgres-specific changes to PR #587.
Contributor
|
Thanks @Coll76! |
ArneTR
added a commit
to green-coding-solutions/bakerydemo
that referenced
this pull request
Jan 6, 2026
* upstream/main: Update PostgreSQL and Redis images to latest versions (wagtail#588) Upgrade bakerydemo to Django 6.0 (wagtail#594) Fix cache collision in blog index by adding tag to cache key (wagtail#592) Conditionally add postgres app to INSTALLED_APPS (wagtail#587)
ArneTR
added a commit
to green-coding-solutions/bakerydemo
that referenced
this pull request
Jan 6, 2026
* upstream/main: Update PostgreSQL and Redis images to latest versions (wagtail#588) Upgrade bakerydemo to Django 6.0 (wagtail#594) Fix cache collision in blog index by adding tag to cache key (wagtail#592) Conditionally add postgres app to INSTALLED_APPS (wagtail#587)
gaumrab
pushed a commit
to gaumrab/bakerydemo
that referenced
this pull request
Mar 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR updates bakerydemo to be compatible with Django 6.0, following the discussion in issue #558.
Changes
Testing
Notes
During testing, the project ran successfully on Python 3.12.
I observed issues when running on Python versions below 3.12 where the installation failed with python version 3.11.2. However, this PR does not enforce a Python version change and follows the existing project setup.
Fixes #558