Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
6c6d69e0
Commit
6c6d69e0
authored
Jul 26, 2020
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move all but a small shim in override into _distutils_hack
parent
1251a231
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
54 deletions
+52
-54
_distutils_hack/__init__.py
_distutils_hack/__init__.py
+51
-0
_distutils_hack/override.py
_distutils_hack/override.py
+1
-54
No files found.
_distutils_hack/__init__.py
View file @
6c6d69e0
import
sys
import
sys
import
os
import
os
import
re
import
importlib
import
warnings
is_pypy
=
'__pypy__'
in
sys
.
builtin_module_names
def
enabled
():
def
enabled
():
...
@@ -10,6 +16,51 @@ def enabled():
...
@@ -10,6 +16,51 @@ def enabled():
return
which
==
'local'
return
which
==
'local'
def
warn_distutils_present
():
if
'distutils'
not
in
sys
.
modules
:
return
if
is_pypy
and
sys
.
version_info
<
(
3
,
7
):
# PyPy for 3.6 unconditionally imports distutils, so bypass the warning
# https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250
return
warnings
.
warn
(
"Distutils was imported before Setuptools. This usage is discouraged "
"and may exhibit undesirable behaviors or errors. Please use "
"Setuptools' objects directly or at least import Setuptools first."
)
def
clear_distutils
():
if
'distutils'
not
in
sys
.
modules
:
return
warnings
.
warn
(
"Setuptools is replacing distutils."
)
mods
=
[
name
for
name
in
sys
.
modules
if
re
.
match
(
r'distutils\b'
,
name
)]
for
name
in
mods
:
del
sys
.
modules
[
name
]
def
ensure_local_distutils
():
clear_distutils
()
distutils
=
importlib
.
import_module
(
'setuptools._distutils'
)
distutils
.
__name__
=
'distutils'
sys
.
modules
[
'distutils'
]
=
distutils
# sanity check that submodules load as expected
core
=
importlib
.
import_module
(
'distutils.core'
)
assert
'_distutils'
in
core
.
__file__
,
core
.
__file__
def
do_override
():
"""
Ensure that the local copy of distutils is preferred over stdlib.
See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401
for more motivation.
"""
warn_distutils_present
()
if
enabled
():
ensure_local_distutils
()
class
DistutilsMetaFinder
:
class
DistutilsMetaFinder
:
def
find_spec
(
self
,
fullname
,
path
,
target
=
None
):
def
find_spec
(
self
,
fullname
,
path
,
target
=
None
):
if
path
is
not
None
or
fullname
!=
"distutils"
:
if
path
is
not
None
or
fullname
!=
"distutils"
:
...
...
_distutils_hack/override.py
View file @
6c6d69e0
"""
__import__
(
'_distutils_hack'
).
do_override
()
Ensure that the local copy of distutils is preferred over stdlib.
See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401
for more motivation.
"""
import
sys
import
re
import
importlib
import
warnings
from
.
import
enabled
is_pypy
=
'__pypy__'
in
sys
.
builtin_module_names
def
warn_distutils_present
():
if
'distutils'
not
in
sys
.
modules
:
return
if
is_pypy
and
sys
.
version_info
<
(
3
,
7
):
# PyPy for 3.6 unconditionally imports distutils, so bypass the warning
# https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250
return
warnings
.
warn
(
"Distutils was imported before Setuptools. This usage is discouraged "
"and may exhibit undesirable behaviors or errors. Please use "
"Setuptools' objects directly or at least import Setuptools first."
)
def
clear_distutils
():
if
'distutils'
not
in
sys
.
modules
:
return
warnings
.
warn
(
"Setuptools is replacing distutils."
)
mods
=
[
name
for
name
in
sys
.
modules
if
re
.
match
(
r'distutils\b'
,
name
)]
for
name
in
mods
:
del
sys
.
modules
[
name
]
def
ensure_local_distutils
():
clear_distutils
()
distutils
=
importlib
.
import_module
(
'setuptools._distutils'
)
distutils
.
__name__
=
'distutils'
sys
.
modules
[
'distutils'
]
=
distutils
# sanity check that submodules load as expected
core
=
importlib
.
import_module
(
'distutils.core'
)
assert
'_distutils'
in
core
.
__file__
,
core
.
__file__
warn_distutils_present
()
if
enabled
():
ensure_local_distutils
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment