Skip to content

Commit

Permalink
Install missing dependency in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
tomseimandi committed Feb 20, 2024
1 parent 9d74b43 commit 51a6ace
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
cache: 'pip' # caching pip dependencies

- name: Install python Dependencies
run: pip install -r requirements.txt
run: |
pip install pybind11
pip install -r requirements.txt
- name: Download NLP requirements
run: ./download_nlp_reqs.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
cache: 'pip' # caching pip dependencies

- name: Install python Dependencies
run: pip install -r requirements.txt
run: |
pip install pybind11
pip install -r requirements.txt
- name: Download NLP requirements
run: ./download_nlp_reqs.sh
Expand Down

0 comments on commit 51a6ace

Please sign in to comment.