From 6bbf62bc0153cb5d455ef97484d11b8c77cd2b70 Mon Sep 17 00:00:00 2001 From: isabelrios Date: Mon, 29 Jul 2024 11:50:38 +0200 Subject: [PATCH 1/7] try upgrade pip --- .github/workflows/production-daily.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/production-daily.yml b/.github/workflows/production-daily.yml index 7cb60fe..b9b89f9 100644 --- a/.github/workflows/production-daily.yml +++ b/.github/workflows/production-daily.yml @@ -31,7 +31,9 @@ jobs: port: ${{ secrets.CLOUD_SQL_DATABASE_PORT }} - name: Install requirements - run: pip install -r requirements.txt + run: | + pip install --upgrade pip + pip install -r requirements.txt - name: Set env vars run: | From c03a6672da81b538cff6f9d91ba18f860560d0b4 Mon Sep 17 00:00:00 2001 From: isabelrios Date: Mon, 29 Jul 2024 11:57:54 +0200 Subject: [PATCH 2/7] try installing wheel --- .github/workflows/production-daily.yml | 2 +- .github/workflows/staging-push.yml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/production-daily.yml b/.github/workflows/production-daily.yml index b9b89f9..8b4d036 100644 --- a/.github/workflows/production-daily.yml +++ b/.github/workflows/production-daily.yml @@ -32,7 +32,7 @@ jobs: - name: Install requirements run: | - pip install --upgrade pip + pip install wheel pip install -r requirements.txt - name: Set env vars diff --git a/.github/workflows/staging-push.yml b/.github/workflows/staging-push.yml index ac96611..8f8e360 100644 --- a/.github/workflows/staging-push.yml +++ b/.github/workflows/staging-push.yml @@ -31,7 +31,9 @@ jobs: port: ${{ secrets.CLOUD_SQL_DATABASE_PORT }} - name: Install requirements - run: pip install -r requirements.txt + run: | + pip install wheel + pip install -r requirements.txt - name: Set env vars run: | From ecb960e58c1c841431a701ad7c6828ea9e12d33b Mon Sep 17 00:00:00 2001 From: isabelrios Date: Mon, 29 Jul 2024 12:07:24 +0200 Subject: [PATCH 3/7] try installing wheel and update pip --- .github/workflows/staging-push.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/staging-push.yml b/.github/workflows/staging-push.yml index 8f8e360..fc5ea74 100644 --- a/.github/workflows/staging-push.yml +++ b/.github/workflows/staging-push.yml @@ -32,6 +32,7 @@ jobs: - name: Install requirements run: | + pip install --upgrade pip pip install wheel pip install -r requirements.txt From 6d9080ccd6d94ebf9d61f82a00736bcbaf96e99b Mon Sep 17 00:00:00 2001 From: isabelrios Date: Mon, 29 Jul 2024 12:10:18 +0200 Subject: [PATCH 4/7] try installing wheel and update pip2 --- .github/workflows/staging-push.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/staging-push.yml b/.github/workflows/staging-push.yml index fc5ea74..57c332c 100644 --- a/.github/workflows/staging-push.yml +++ b/.github/workflows/staging-push.yml @@ -32,8 +32,7 @@ jobs: - name: Install requirements run: | - pip install --upgrade pip - pip install wheel + pip install --upgrade pip setuptools wheel pip install -r requirements.txt - name: Set env vars From 88c1561177faa96f94811b39288bf0bbbf338a01 Mon Sep 17 00:00:00 2001 From: isabelrios Date: Mon, 29 Jul 2024 12:14:07 +0200 Subject: [PATCH 5/7] updating SQAlchemy --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 423930a..6c9efeb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ numpy pandas PyMySQL -SQLAlchemy==1.4.46 +SQLAlchemy==2.0.0 certifi charset-normalizer idna From 38dbf9cab7802b24d980735407b1bb30307c4b91 Mon Sep 17 00:00:00 2001 From: isabelrios Date: Mon, 29 Jul 2024 12:19:04 +0200 Subject: [PATCH 6/7] updating SQAlchemy 1.4.49 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6c9efeb..ad4df77 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ numpy pandas PyMySQL -SQLAlchemy==2.0.0 +SQLAlchemy==1.4.49 certifi charset-normalizer idna From e4bbcbb7493275e1e3ceba61da1636508b111b95 Mon Sep 17 00:00:00 2001 From: isabelrios Date: Mon, 29 Jul 2024 12:22:12 +0200 Subject: [PATCH 7/7] remove extra pip upgrade --- .github/workflows/production-daily.yml | 1 - .github/workflows/staging-push.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/production-daily.yml b/.github/workflows/production-daily.yml index 8b4d036..0a09a00 100644 --- a/.github/workflows/production-daily.yml +++ b/.github/workflows/production-daily.yml @@ -32,7 +32,6 @@ jobs: - name: Install requirements run: | - pip install wheel pip install -r requirements.txt - name: Set env vars diff --git a/.github/workflows/staging-push.yml b/.github/workflows/staging-push.yml index 57c332c..411deeb 100644 --- a/.github/workflows/staging-push.yml +++ b/.github/workflows/staging-push.yml @@ -32,7 +32,6 @@ jobs: - name: Install requirements run: | - pip install --upgrade pip setuptools wheel pip install -r requirements.txt - name: Set env vars