Skip to content

Commit

Permalink
build: Correct how the dependencies get installed.
Browse files Browse the repository at this point in the history
Without this change we were getting a weird error that the 'install'
package could not be found because github action was combining the two
lines into a single `pip install setuptools pip install -r
requirements/ci.txt` call.
  • Loading branch information
feanil committed Jul 29, 2024
1 parent e392d8e commit 797a862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: pip install -r requirements/pip.txt

- name: Install Dependencies
run:
run: |
pip install setuptools
pip install -r requirements/ci.txt
Expand Down

0 comments on commit 797a862

Please sign in to comment.