-
Notifications
You must be signed in to change notification settings - Fork 6.6k
chore(deps): update dependency django to v6 #13663
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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 | ||
|
|
||
| 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 | ||
|
|
||
| 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,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" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to the previous file, Django 6.0 requires Python 3.10 or newer. Specifying |
||
| django-storages[google]==1.14.6 | ||
| django-environ==0.12.0 | ||
| psycopg2-binary==2.9.10 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.