Skip to content

Commit f452a77

Browse files
authored
Merge pull request #39 from mozilla-mobile/irios-fix-install-dependencies
Fix dependencies installation by upgrading SQAlchemy
2 parents 1d0ce25 + e4bbcbb commit f452a77

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/production-daily.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ 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 -r requirements.txt
3536
3637
- name: Set env vars
3738
run: |

.github/workflows/staging-push.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ 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 -r requirements.txt
3536
3637
- name: Set env vars
3738
run: |

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
numpy
22
pandas
33
PyMySQL
4-
SQLAlchemy==1.4.46
4+
SQLAlchemy==1.4.49
55
certifi
66
charset-normalizer
77
idna

0 commit comments

Comments
 (0)