Skip to content

Commit

Permalink
Fix #4733 by changing the failing example
Browse files Browse the repository at this point in the history
This example did not make sense unless it was possible to install specify a
version of a package one installs referencing by the path (here: `.`).
A new example for the local installation with an extra has been added
instead.
  • Loading branch information
smartsammler committed Nov 12, 2018
1 parent b8ee4a6 commit f92ac73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/html/reference/pip_install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -845,8 +845,8 @@ Examples

$ pip install SomePackage[PDF]
$ pip install git+https://git.repo/some_pkg.git#egg=SomePackage[PDF]
$ pip install .[PDF] # project in current directory
$ pip install SomePackage[PDF]==3.0
$ pip install -e .[PDF]==3.0 # editable project in current directory
$ pip install SomePackage[PDF,EPUB] # multiple extras


Expand Down
1 change: 1 addition & 0 deletions news/4733.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replace a failing example of pip installs with extras with a working one.

0 comments on commit f92ac73

Please sign in to comment.