Skip to content

Commit

Permalink
DOC: use python -m pip (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsipocz authored Jul 25, 2023
1 parent 0a068ae commit 547fecd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:

- name: Install packages
run: |
pip install --upgrade pip
pip install -r requirements.txt
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Lint
run: pre-commit run --all-files --show-diff-on-failure --color always
2 changes: 1 addition & 1 deletion spec-0004/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ To install the nightly version of your dependencies check which of them are avai
at https://anaconda.org/scientific-python-nightly-wheels/. For example to install the NumPy and scipy nightlies use:

```
pip install --pre --upgrade --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy scipy
python -m pip install --pre --upgrade --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy scipy
```

Complete examples of how projects implement this in their CI setup are linked in the Notes section.
Expand Down

0 comments on commit 547fecd

Please sign in to comment.