Skip to content
Open
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 requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# during development.

# GAE packages should match the "libraries" section of app.yaml
django==1.2
django==4.2.27
Comment on lines 6 to +7

Choose a reason for hiding this comment

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

P1 Badge Upgrade to Django 4.2 incompatible with App Engine config

requirements.txt now pins django==4.2.27, but the app is configured to run on the legacy App Engine Python runtime (app.yaml api_version 1) and explicitly requests Django 1.2 via use_library('django', '1.2') in appengine_config.py:11-16. Django 4.2 requires Python 3.8+ and cannot be loaded through the App Engine bundled libraries, so installing the new requirement under the existing Python 2 stack will fail, and even if installed the runtime will still attempt to load 1.2, causing version skew and import errors. This change will break deployments/dev installs unless the runtime and codebase are migrated to Django 4.x first.

Useful? React with 👍 / 👎.

jinja2==2.6
markupsafe==0.15
webapp2==2.3
Expand Down