Skip to content
Open
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 appengine/flexible/django_cloudsql/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django==5.2.8
Django==6.0
gunicorn==23.0.0
psycopg2-binary==2.9.10
django-environ==0.12.0
Expand Down
2 changes: 1 addition & 1 deletion appengine/flexible/hello_world_django/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Django==5.2.5
Django==6.0
gunicorn==23.0.0
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django==5.2.5
Django==6.0
gunicorn==23.0.0
psycopg2-binary==2.9.10
django-environ==0.12.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Django==5.2.5
Django==6.0
gunicorn==23.0.0
4 changes: 2 additions & 2 deletions kubernetes_engine/django_tutorial/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Django==5.2.5; python_version >= "3.10"
Django==4.2.24; python_version >= "3.8" and python_version < "3.10"
Django==6.0; python_version >= "3.10"
Django==6.0; python_version >= "3.8" and python_version < "3.10"
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Django 6.0 officially supports Python 3.10 and newer. The line Django==6.0; python_version >= "3.8" and python_version < "3.10" is incorrect as Django 6.0 does not support Python 3.8 or 3.9. This will lead to installation failures or runtime errors. Please either remove this line if Python 3.8/3.9 support is being dropped, or specify a compatible older Django version for these Python versions.

# Uncomment the mysqlclient requirement if you are using MySQL rather than
# PostgreSQL. You must also have a MySQL client installed in that case.
#mysqlclient==1.4.1
Expand Down
4 changes: 2 additions & 2 deletions run/django/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Django==5.2.5; python_version >= "3.10"
Django==4.2.24; python_version >= "3.8" and python_version < "3.10"
Django==6.0; python_version >= "3.10"
Django==6.0; python_version >= "3.8" and python_version < "3.10"
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Similar to the previous file, Django 6.0 requires Python 3.10 or newer. Specifying Django==6.0 for python_version >= "3.8" and python_version < "3.10" is incompatible and will cause issues. This line should be removed or updated to reflect a Django version compatible with Python 3.8/3.9 if those versions are still intended to be supported.

django-storages[google]==1.14.6
django-environ==0.12.0
psycopg2-binary==2.9.10
Expand Down