mirror of
https://github.com/cisagov/log4j-affected-db.git
synced 2024-11-22 16:40:48 +00:00
All references to '-r' for pip calls have been replaced with the more verbose '--requirement'.
This commit is contained in:
parent
16872bfc74
commit
e96577bce4
3 changed files with 3 additions and 3 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -32,6 +32,6 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
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
|
- name: Run pre-commit on all files
|
||||||
run: pre-commit run --all-files
|
run: pre-commit run --all-files
|
||||||
|
|
|
@ -102,7 +102,7 @@ commands:
|
||||||
cd skeleton-generic
|
cd skeleton-generic
|
||||||
pyenv virtualenv <python_version_to_use> skeleton-generic
|
pyenv virtualenv <python_version_to_use> skeleton-generic
|
||||||
pyenv local skeleton-generic
|
pyenv local skeleton-generic
|
||||||
pip install -r requirements-dev.txt
|
pip install --requirement requirements-dev.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Installing the pre-commit hook ####
|
#### Installing the pre-commit hook ####
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
-r requirements-test.txt
|
--requirement requirements-test.txt
|
||||||
ipython
|
ipython
|
||||||
|
|
Loading…
Reference in a new issue