-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump pip to 20.3.3 and wheel to 0.36.2 (#2036)
- Loading branch information
1 parent
26943f6
commit 39fdf95
Showing
9 changed files
with
58 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Bump embed pip to ``20.3.3``, setuptools to ``51.1.1`` and wheel to ``0.36.2`` - by :user:`gaborbernat`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file renamed
BIN
+1.45 MB
...els/embed/pip-20.3.1-py2.py3-none-any.whl → ...els/embed/pip-20.3.3-py2.py3-none-any.whl
Binary file not shown.
Binary file renamed
BIN
+767 KB
.../embed/setuptools-51.0.0-py3-none-any.whl → .../embed/setuptools-51.1.2-py3-none-any.whl
Binary file not shown.
Binary file renamed
BIN
+34 KB
...s/embed/wheel-0.36.1-py2.py3-none-any.whl → ...s/embed/wheel-0.36.2-py2.py3-none-any.whl
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
def get_short_path_name(long_name): | ||
""" | ||
Gets the short path name of a given long path. | ||
http://stackoverflow.com/a/23598461/200291 | ||
""" | ||
import ctypes | ||
from ctypes import wintypes | ||
|
||
_GetShortPathNameW = ctypes.windll.kernel32.GetShortPathNameW | ||
_GetShortPathNameW.argtypes = [wintypes.LPCWSTR, wintypes.LPWSTR, wintypes.DWORD] | ||
_GetShortPathNameW.restype = wintypes.DWORD | ||
output_buf_size = 0 | ||
while True: | ||
output_buf = ctypes.create_unicode_buffer(output_buf_size) | ||
needed = _GetShortPathNameW(long_name, output_buf, output_buf_size) | ||
if output_buf_size >= needed: | ||
return output_buf.value | ||
else: | ||
output_buf_size = needed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters