Skip to content

Commit

Permalink
Merge pull request #39 from mozilla-mobile/irios-fix-install-dependen…
Browse files Browse the repository at this point in the history
…cies

Fix dependencies installation by upgrading SQAlchemy
  • Loading branch information
jjSDET authored Jul 29, 2024
2 parents 1d0ce25 + e4bbcbb commit f452a77
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/production-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
port: ${{ secrets.CLOUD_SQL_DATABASE_PORT }}

- name: Install requirements
run: pip install -r requirements.txt
run: |
pip install -r requirements.txt
- name: Set env vars
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/staging-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
port: ${{ secrets.CLOUD_SQL_DATABASE_PORT }}

- name: Install requirements
run: pip install -r requirements.txt
run: |
pip install -r requirements.txt
- name: Set env vars
run: |
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
numpy
pandas
PyMySQL
SQLAlchemy==1.4.46
SQLAlchemy==1.4.49
certifi
charset-normalizer
idna
Expand Down

0 comments on commit f452a77

Please sign in to comment.