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
d9a42d35
Commit
d9a42d35
authored
Jul 04, 2016
by
Jason R. Coombs
Committed by
GitHub
Jul 04, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #628 from JGoutin/patch-1
Minor change : Link to MSVC14 Standalone
parents
fd01aba5
cb29ee77
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
3 deletions
+13
-3
CHANGES.rst
CHANGES.rst
+8
-2
setuptools/msvc.py
setuptools/msvc.py
+5
-1
No files found.
CHANGES.rst
View file @
d9a42d35
...
...
@@ -2,6 +2,12 @@
CHANGES
=======
v24
.0.2
-------
*
If
MSVC
++
14
is
needed
``
setuptools
.
msvc
``
now
redirect
user
to
Visual
C
++
Build
Tools
web
page
.
v24
.0.1
-------
...
...
@@ -14,8 +20,8 @@ v24.0.0
*
Pull
Request
#
174
:
Add
more
aggressive
support
for
standalone
Microsoft
Visual
C
++
compilers
in
msvc9compiler
patch
.
Particularly
:
Windows
SDK
6.
0
and
6.1
(
MSVC
++
9.0
),
Windows
SDK
7.
0
(
MSVC
++
10.0
),
Particularly
:
Windows
SDK
6.
1
and
7.0
(
MSVC
++
9.0
),
Windows
SDK
7.
1
(
MSVC
++
10.0
),
Visual
C
++
Build
Tools
2015
(
MSVC
++
14
)
*
Renamed
``
setuptools
.
msvc9_support
``
to
``
setuptools
.
msvc
``.
...
...
setuptools/msvc.py
View file @
d9a42d35
...
...
@@ -221,7 +221,7 @@ def _augment_exception(exc, version, arch=''):
if
"vcvarsall"
in
message
.
lower
()
or
"visual c"
in
message
.
lower
():
# Special error message if MSVC++ not installed
tmpl
=
'Microsoft Visual C++ {version:0.1f} is required
{message}
.'
tmpl
=
'Microsoft Visual C++ {version:0.1f} is required.'
message
=
tmpl
.
format
(
**
locals
())
msdownload
=
'www.microsoft.com/download/details.aspx?id=%d'
if
version
==
9.0
:
...
...
@@ -239,6 +239,10 @@ def _augment_exception(exc, version, arch=''):
# For VC++ 10.0 Redirect user to Windows SDK 7.1
message
+=
' Get it with "Microsoft Windows SDK 7.1": '
message
+=
msdownload
%
8279
elif
version
>=
14.0
:
# For VC++ 14.0 Redirect user to Visual C++ Build Tools
message
+=
(
' Get it with "Microsoft Visual C++ Build Tools": '
r'http://landinghub.visualstudio.com/visual-cpp-build-tools'
)
exc
.
args
=
(
message
,
)
...
...
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