-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Address django/python version compatibility (#8031)
* Address django/python version compatibility * chore: apply review suggestion Co-authored-by: Katie McLaughlin <katie@glasnt.com> * chore: fix version numbers * chore: fix version numbers * chore: fix version numbers * chore: fix version numbers Co-authored-by: Katie McLaughlin <katie@glasnt.com> Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> Co-authored-by: Ace Nassri <anassri@google.com>
- Loading branch information
1 parent
8dd8275
commit 0f21f48
Showing
5 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
Django==4.0.4 | ||
Django==4.0.4; python_version >= '3.8' | ||
Django==3.2.13; python_version < '3.8' | ||
gunicorn==20.1.0 | ||
psycopg2-binary==2.9.3 | ||
django-environ==0.8.1 | ||
google-cloud-secret-manager==2.11.1 | ||
django-storages[google]==1.12.3 | ||
django-storages[google]==1.12.3 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
Django==4.0.4 | ||
Django==4.0.4; python_version >= '3.8' | ||
Django==3.2.13; python_version < '3.8' | ||
gunicorn==20.1.0; python_version > '3.0' | ||
gunicorn==19.10.0; python_version < '3.0' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
Django==4.0.4 | ||
Django==4.0.4; python_version >= '3.8' | ||
Django==3.2.13; python_version < '3.8' | ||
django-environ==0.8.1 | ||
psycopg2-binary==2.9.3 | ||
google-cloud-secret-manager==2.11.1 | ||
google-cloud-secret-manager==2.11.1 |
This file contains 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
This file contains 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