Skip to content

Commit ca04bf7

Browse files
committed
Bump embedded packages
Signed-off-by: Bernát Gábor <[email protected]>
1 parent b4aef0a commit ca04bf7

10 files changed

+5
-0
lines changed
File renamed without changes.

docs/changelog/2151.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump embedded pip/setuptools/wheel - by :user:`gaborbernat`.

virtualenv.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -998,8 +998,12 @@ def find_wheels(projects, search_dirs):
998998
)
999999
if project == "pip" and sys.version_info[0:2] == (3, 4):
10001000
wheel = next(p for v, p in versions if v <= (19, 1, 1))
1001+
elif project == "pip" and sys.version_info[0:2] == (3, 5):
1002+
wheel = next(p for v, p in versions if v <= (20, 3, 4))
10011003
elif project == "setuptools" and sys.version_info[0:2] == (3, 4):
10021004
wheel = next(p for v, p in versions if v < (44,))
1005+
elif project == "setuptools" and sys.version_info[0:2] == (3, 5):
1006+
wheel = next(p for v, p in versions if v < (51,))
10031007
else:
10041008
wheel = versions[0][1]
10051009
wheels.append(wheel)
Binary file not shown.
Binary file not shown.
1.48 MB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)