File tree 4 files changed +19
-7
lines changed
kubernetes_engine/django_tutorial
4 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 1
- Django == 3.0.1
1
+ Django == 3.0.2 ; python_version > '3.5'
2
+ Django == 2.2.9 ; python_version == '3.5'
2
3
# mysqlclient==1.4.1 # Uncomment this line if using MySQL
3
4
wheel == 0.33.6
4
5
gunicorn == 20.0.4
5
- psycopg2 == 2.8.4
6
+ #psycopg2==2.8.4 # uncomment if you prefer to build from source
7
+ psycopg2-binary == 2.8.4
Original file line number Diff line number Diff line change 1
- Django == 3.0.1
2
- gunicorn == 20.0.4
1
+ Django == 3.0.2 ; python_version > '3.5'
2
+ Django == 2.2.9 ; python_version == '3.5'
3
+ Django == 1.11.27 ; python_version < '3.0'
4
+ gunicorn == 20.0.4 ; python_version > '3.0'
5
+ gunicorn == 19.10.0 ; python_version < '3.0'
Original file line number Diff line number Diff line change 1
- Django == 3.0.1
1
+ Django == 3.0.2 ; python_version > '3.5'
2
+ Django == 2.2.9 ; python_version == '3.5'
3
+ Django == 1.11.27 ;python_version < '3.0'
2
4
# Uncomment the mysqlclient requirement if you are using MySQL rather than
3
5
# PostgreSQL. You must also have a MySQL client installed in that case.
4
6
#mysqlclient==1.4.1
5
7
wheel == 0.33.6
6
- gunicorn == 20.0.4
7
- psycopg2 == 2.8.4
8
+ gunicorn == 20.0.4 ; python_version > '3.0'
9
+ gunicorn == 19.10.0 ; python_version < '3.0'
10
+ # psycopg2==2.8.4 # uncomment if you prefer to build from source
11
+ psycopg2-binary == 2.8.4
Original file line number Diff line number Diff line change @@ -146,6 +146,9 @@ def _setup_appengine_sdk(session):
146
146
str (Path (sample ).absolute ().relative_to (REPO_ROOT )).startswith (
147
147
"appengine/standard_python37"
148
148
)
149
+ or str (Path (sample ).absolute ().relative_to (REPO_ROOT )).startswith (
150
+ "appengine/flexible/django_cloudsql"
151
+ )
149
152
or str (Path (sample ).absolute ().relative_to (REPO_ROOT )).startswith ("functions/" )
150
153
or str (Path (sample ).absolute ().relative_to (REPO_ROOT )).startswith (
151
154
"bigquery/pandas-gbq-migration"
You can’t perform that action at this time.
0 commit comments