File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -71,3 +71,9 @@ Examples
71
71
72
72
$ pip wheel --wheel-dir=/tmp/wheelhouse SomePackage
73
73
$ pip install --no-index --find-links=/tmp/wheelhouse SomePackage
74
+
75
+ #. Build a wheel for a package from source
76
+
77
+ ::
78
+
79
+ $ pip wheel --no-binary SomePackage SomePackage
Original file line number Diff line number Diff line change @@ -454,9 +454,9 @@ def no_binary():
454
454
help = "Do not use binary packages. Can be supplied multiple times, and "
455
455
"each time adds to the existing value. Accepts either :all: to "
456
456
"disable all binary packages, :none: to empty the set, or one or "
457
- "more package names with commas between them. Note that some "
458
- "packages are tricky to compile and may fail to install when "
459
- "this option is used on them." ,
457
+ "more package names with commas between them (no colons). Note "
458
+ "that some packages are tricky to compile and may fail to "
459
+ "install when this option is used on them." ,
460
460
)
461
461
462
462
You can’t perform that action at this time.
0 commit comments