-
Notifications
You must be signed in to change notification settings - Fork 6.6k
chore(deps): update dependency django-environ to v0.12.0 #13401
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
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,6 +1,6 @@ | ||
Django==5.2.1 | ||
gunicorn==23.0.0 | ||
psycopg2-binary==2.9.10 | ||
django-environ==0.11.2 | ||
django-environ==0.12.0 | ||
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. A notable change in If any Has this potential impact been assessed across the samples? Projects relying on this feature might need to:
|
||
google-cloud-secret-manager==2.21.1 | ||
django-storages[google]==1.14.5 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Django==5.2.1 | ||
gunicorn==23.0.0 | ||
psycopg2-binary==2.9.10 | ||
django-environ==0.11.2 | ||
django-environ==0.12.0 | ||
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. This update to The Given this,
|
||
google-cloud-secret-manager==2.21.1 | ||
django-storages[google]==1.14.5 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Django==5.2.1; python_version >= "3.10" | ||
Django==4.2.21; python_version >= "3.8" and python_version < "3.10" | ||
django-storages[google]==1.14.5 | ||
django-environ==0.11.2 | ||
django-environ==0.12.0 | ||
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. The update to This Django==4.2.21; python_version >= "3.8" and python_version < "3.10" If this sample is deployed or run in a Python 3.8 environment, How should this incompatibility be addressed? Some options could be:
|
||
psycopg2-binary==2.9.10 | ||
gunicorn==23.0.0 | ||
google-cloud-secret-manager==2.21.1 |
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.
The update to
django-environ==0.12.0
is likely to cause this sample to fail. According to the django-environ v0.12.0 release notes, this version removes support for Python 3.7 and 3.8.The
app.yaml
configuration for this sample (appengine/flexible/django_cloudsql/app.yaml
) explicitly setspython_version: 3.7
:This mismatch will likely lead to installation or runtime errors.
Could you clarify how this incompatibility should be handled? Possible solutions include:
app.yaml
to Python 3.9 or newer.django-environ
to a version compatible with Python 3.7 (e.g.,django-environ<0.12.0
).