From fbc74a33f662e05e841ff50bd3808f445fe369ec Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 6 Feb 2020 02:19:45 +0000 Subject: [PATCH 1/4] chore(deps): update dependency sqlalchemy to v1.3.13 --- appengine/standard_python37/cloudsql/requirements.txt | 2 +- cloud-sql/mysql/sqlalchemy/requirements.txt | 2 +- cloud-sql/postgres/sqlalchemy/requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/appengine/standard_python37/cloudsql/requirements.txt b/appengine/standard_python37/cloudsql/requirements.txt index e3a501e447c..0c2b52431e7 100644 --- a/appengine/standard_python37/cloudsql/requirements.txt +++ b/appengine/standard_python37/cloudsql/requirements.txt @@ -2,4 +2,4 @@ flask==1.1.1 psycopg2==2.8.4 psycopg2-binary==2.8.4 PyMySQL==0.9.3 -SQLAlchemy==1.3.12 +SQLAlchemy==1.3.13 diff --git a/cloud-sql/mysql/sqlalchemy/requirements.txt b/cloud-sql/mysql/sqlalchemy/requirements.txt index 695f442dc83..ce5b5a7fb8c 100644 --- a/cloud-sql/mysql/sqlalchemy/requirements.txt +++ b/cloud-sql/mysql/sqlalchemy/requirements.txt @@ -1,3 +1,3 @@ Flask==1.1.1 -SQLAlchemy==1.3.12 +SQLAlchemy==1.3.13 PyMySQL==0.9.3 diff --git a/cloud-sql/postgres/sqlalchemy/requirements.txt b/cloud-sql/postgres/sqlalchemy/requirements.txt index 5e83520bc9b..e582a15f78b 100644 --- a/cloud-sql/postgres/sqlalchemy/requirements.txt +++ b/cloud-sql/postgres/sqlalchemy/requirements.txt @@ -1,3 +1,3 @@ Flask==1.1.1 -SQLAlchemy==1.3.12 +SQLAlchemy==1.3.13 pg8000==1.13.2 From ddc8a2199b4df52c2e6d5e9379246de37871d89f Mon Sep 17 00:00:00 2001 From: Leah Cole Date: Thu, 6 Feb 2020 09:49:32 -0800 Subject: [PATCH 2/4] Comment out requirement, add explanation for user --- appengine/standard_python37/cloudsql/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appengine/standard_python37/cloudsql/requirements.txt b/appengine/standard_python37/cloudsql/requirements.txt index e3a501e447c..3e3178c53c0 100644 --- a/appengine/standard_python37/cloudsql/requirements.txt +++ b/appengine/standard_python37/cloudsql/requirements.txt @@ -1,5 +1,5 @@ flask==1.1.1 -psycopg2==2.8.4 -psycopg2-binary==2.8.4 +#psycopg2==2.8.4 +psycopg2-binary==2.8.4 # you will need either the binary or the regular - for more info see http://initd.org/psycopg/docs/install.html PyMySQL==0.9.3 SQLAlchemy==1.3.12 From 56b43ec113bd49dc847fbffcf279236a68561fae Mon Sep 17 00:00:00 2001 From: Leah Cole Date: Thu, 6 Feb 2020 09:53:43 -0800 Subject: [PATCH 3/4] Add explanation of requirements --- appengine/standard_python37/cloudsql/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appengine/standard_python37/cloudsql/requirements.txt b/appengine/standard_python37/cloudsql/requirements.txt index 29e88585c93..e60e7062c6d 100644 --- a/appengine/standard_python37/cloudsql/requirements.txt +++ b/appengine/standard_python37/cloudsql/requirements.txt @@ -1,5 +1,5 @@ flask==1.1.1 -#psycopg2==2.8.4 +# psycopg2==2.8.4 psycopg2-binary==2.8.4 # you will need either the binary or the regular - for more info see http://initd.org/psycopg/docs/install.html PyMySQL==0.9.3 SQLAlchemy==1.3.13 From 4be35d2904a8fd2ab9dae8993eed50cd93e9dfd3 Mon Sep 17 00:00:00 2001 From: Leah Cole Date: Thu, 6 Feb 2020 10:03:02 -0800 Subject: [PATCH 4/4] specify pg8000 version for py2 --- cloud-sql/postgres/sqlalchemy/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cloud-sql/postgres/sqlalchemy/requirements.txt b/cloud-sql/postgres/sqlalchemy/requirements.txt index e582a15f78b..858464e1a8d 100644 --- a/cloud-sql/postgres/sqlalchemy/requirements.txt +++ b/cloud-sql/postgres/sqlalchemy/requirements.txt @@ -1,3 +1,4 @@ Flask==1.1.1 SQLAlchemy==1.3.13 -pg8000==1.13.2 +pg8000==1.13.2; python_version > '3.0' +pg8000==1.12.5; python_version < '3.0'