diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-28 10:19:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-28 10:19:36 -0400 |
commit | 9e36a56309bce218b5f920a60218a48c3714d25c (patch) | |
tree | b0db821d600738734865ed592e09ee15679327d2 | |
parent | 6e0a29decbf6395e35f4b352e6d75d46b523727d (diff) | |
parent | d506d3d7411e890028092b72f1005d487a5398f1 (diff) | |
download | external_python_setuptools-9e36a56309bce218b5f920a60218a48c3714d25c.tar.gz external_python_setuptools-9e36a56309bce218b5f920a60218a48c3714d25c.tar.bz2 external_python_setuptools-9e36a56309bce218b5f920a60218a48c3714d25c.zip |
Merge pull request #699 from JGoutin/patch-1
Fix regression in commit e404a4a
-rw-r--r-- | setuptools/msvc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/msvc.py b/setuptools/msvc.py index 2a665c92..c762c28f 100644 --- a/setuptools/msvc.py +++ b/setuptools/msvc.py @@ -909,7 +909,7 @@ class EnvironmentInfo: os.path.join(self.si.WindowsSdkDir, 'UnionMetadata'), os.path.join( ref, - 'Windows.Foundation.UniversalApiContract' + 'Windows.Foundation.UniversalApiContract', '1.0.0.0', ), os.path.join( @@ -919,7 +919,7 @@ class EnvironmentInfo: ), os.path.join( ref, - 'Windows.Networking.Connectivity.WwanContract' + 'Windows.Networking.Connectivity.WwanContract', '1.0.0.0', ), os.path.join( |