Skip to content

Commit c03a667

Browse files
committed
try installing wheel
1 parent 6bbf62b commit c03a667

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/production-daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Install requirements
3434
run: |
35-
pip install --upgrade pip
35+
pip install wheel
3636
pip install -r requirements.txt
3737
3838
- name: Set env vars

.github/workflows/staging-push.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
port: ${{ secrets.CLOUD_SQL_DATABASE_PORT }}
3232

3333
- name: Install requirements
34-
run: pip install -r requirements.txt
34+
run: |
35+
pip install wheel
36+
pip install -r requirements.txt
3537
3638
- name: Set env vars
3739
run: |

0 commit comments

Comments
 (0)