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
2888d3c0
Commit
2888d3c0
authored
Sep 05, 2020
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Emit a warning when the fallback spawn was triggered. Ref pypa/distutils#15.
parent
6e92cdab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
distutils/_msvccompiler.py
distutils/_msvccompiler.py
+3
-0
pytest.ini
pytest.ini
+1
-0
No files found.
distutils/_msvccompiler.py
View file @
2888d3c0
...
...
@@ -16,6 +16,7 @@ for older versions in distutils.msvc9compiler and distutils.msvccompiler.
import
os
import
subprocess
import
contextlib
import
warnings
import
unittest.mock
with
contextlib
.
suppress
(
ImportError
):
import
winreg
...
...
@@ -524,6 +525,8 @@ class MSVCCompiler(CCompiler) :
raise
else
:
return
warnings
.
warn
(
"Fallback spawn triggered. Please update distutils monkeypatch."
)
with
unittest
.
mock
.
patch
(
'os.environ'
,
env
):
bag
.
value
=
super
().
spawn
(
cmd
)
...
...
pytest.ini
View file @
2888d3c0
...
...
@@ -3,3 +3,4 @@ addopts=--doctest-modules
filterwarnings
=
# acknowledge that TestDistribution isn't a test
ignore:cannot
collect
test
class
'TestDistribution'
ignore:Fallback
spawn
triggered
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