Skip to content

Commit 0b9231c

Browse files
committed
fix: update Python dependency installation to include requirements.txt
1 parent bbe5cb9 commit 0b9231c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/backend-ci.yml

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

3232
- name: Install Python Dependencies
3333
run: |
34-
pip install --only-binary :all: --require-hashes -r requirements-dev.txt
34+
pip install --only-binary :all: --require-hashes -r requirements.txt -r requirements-dev.txt
3535
3636
- name: Linting
3737
run: |

.github/workflows/backend-compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
6262
- name: Install Python Dependencies
6363
run: |
64-
pip install --only-binary :all: --require-hashes -r backend/requirements-dev.txt
64+
pip install --only-binary :all: --require-hashes -r backend/requirements.txt -r backend/requirements-dev.txt
6565
6666
- name: Generate version_info.txt dynamically
6767
run: python backend/scripts/generate_version.py

0 commit comments

Comments
 (0)