summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2017-10-07 19:32:12 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2018-07-17 15:02:49 +0300
commita4672d2cadf1975d595b9aafd4eb9c28a9425403 (patch)
treeff5085b18895ea06fb4e5784be2e94035bbb6af6 /docs
parentfa5cc2234bab7a6c644d6dd4f74a3e8c1a3a562d (diff)
downloadwheel-git-a4672d2cadf1975d595b9aafd4eb9c28a9425403.tar.gz
Fixed the egg file names in the examples
Diffstat (limited to 'docs')
-rw-r--r--docs/user_guide.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/user_guide.rst b/docs/user_guide.rst
index 1df9c8f..370b59a 100644
--- a/docs/user_guide.rst
+++ b/docs/user_guide.rst
@@ -60,7 +60,7 @@ The wheel tool is capable of converting eggs to the wheel format.
It works on both ``.egg`` files and ``.egg`` directories, and you can convert
multiple eggs with a single command::
- wheel convert blah-1.2.3.egg foo-2.0b1.egg
+ wheel convert blah-1.2.3-py2.7.egg foo-2.0b1-py3.5.egg
The command supports wildcard expansion as well (via :func:`~glob.iglob`) to
accommodate shells that do not do such expansion natively::
@@ -70,7 +70,7 @@ accommodate shells that do not do such expansion natively::
By default, the resulting wheels are written to the current working directory.
This can be changed with the ``--dest-dir`` option::
- wheel convert --dest-dir /tmp blah-1.2.3.egg
+ wheel convert --dest-dir /tmp blah-1.2.3-py2.7.egg
Installing Wheels
-----------------