Skip to content

Commit

Permalink
Support version pins for non-pip installables
Browse files Browse the repository at this point in the history
  • Loading branch information
dstufft committed Mar 22, 2018
1 parent 09276ff commit f135a3e
Show file tree
Hide file tree
Showing 5 changed files with 22,400 additions and 13 deletions.
4 changes: 2 additions & 2 deletions 2.6/get-pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ def parse_args(self, args):
if implicit_pip:
args += ["pip<10"]
if implicit_setuptools:
args += ["setuptools"]
args += ["setuptools<37"]
if implicit_wheel:
args += ["wheel"]
args += ["wheel<0.30"]

delete_tmpdir = False
try:
Expand Down
4 changes: 2 additions & 2 deletions 3.2/get-pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ def parse_args(self, args):
if implicit_pip:
args += ["pip<8"]
if implicit_setuptools:
args += ["setuptools"]
args += ["setuptools<30"]
if implicit_wheel:
args += ["wheel"]
args += ["wheel<0.30"]

delete_tmpdir = False
try:
Expand Down
Loading

0 comments on commit f135a3e

Please sign in to comment.