Skip to content

Commit

Permalink
All references to '-r' for pip calls have been replaced with the more…
Browse files Browse the repository at this point in the history
… verbose '--requirement'.
  • Loading branch information
mcdonnnj committed Feb 18, 2020
1 parent 16872bf commit e96577b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade -r requirements-test.txt
pip install --upgrade --requirement requirements-test.txt
- name: Run pre-commit on all files
run: pre-commit run --all-files
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ commands:
cd skeleton-generic
pyenv virtualenv <python_version_to_use> skeleton-generic
pyenv local skeleton-generic
pip install -r requirements-dev.txt
pip install --requirement requirements-dev.txt
```

#### Installing the pre-commit hook ####
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
-r requirements-test.txt
--requirement requirements-test.txt
ipython

0 comments on commit e96577b

Please sign in to comment.