Skip to content

Commit 6be19fb

Browse files
docs: Use 'develop' extra over removed 'complete' (#2113)
* Update all uses of the removed 'complete' extra to 'develop'. - The 'complete' extra was removed when moving to hatchling in PR #2095, but the 'develop' extra retains most of that functionality. - Update the 'complete' extra to 'all' for the Binder postBuild to reduce the number of dependencies that need to be installed. * Quote the extra for best practice to ensure compatibility across shells.
1 parent 8940361 commit 6be19fb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ We recommend first reading the "[Developing](https://scikit-hep.org/pyhf/develop
5555
You can install the development environment (which includes a number of extra) libraries and all others needed to run the tests via `pip`:
5656

5757
```console
58-
python -m pip install --upgrade --editable .[complete]
58+
python -m pip install --upgrade --editable '.[develop]'
5959
```
6060

6161
To make the PR process much smoother we also strongly recommend that you setup the Git pre-commit hook for [Black](https://github.com/psf/black) by running

binder/postBuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
python -m pip install --upgrade .[complete]
1+
python -m pip install --upgrade '.[all]'
22
python -m pip install altair

docs/development.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ and install all necessary packages for development
2020

2121
.. code-block:: console
2222
23-
python -m pip install --upgrade --editable '.[complete]'
23+
python -m pip install --upgrade --editable '.[develop]'
2424
2525
Then setup the Git `pre-commit <https://pre-commit.com/>`__ hooks by running
2626

0 commit comments

Comments
 (0)