diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2017-06-16 06:06:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-16 06:06:36 (GMT) |
commit | 04431c926a88be433203f89e3577addd0d41b602 (patch) | |
tree | 3357a1c5ab2a867a3541dc541b34f5257ec86790 /Misc/NEWS | |
parent | 292b421d48ab91b0c68ea4040fc7371e7d6d610e (diff) | |
download | cpython-04431c926a88be433203f89e3577addd0d41b602.zip cpython-04431c926a88be433203f89e3577addd0d41b602.tar.gz cpython-04431c926a88be433203f89e3577addd0d41b602.tar.bz2 |
bpo-30450: Pull Windows dependencies from GitHub rather than svn (GH-1783) (GH-2237)
The Windows build now depends on Python 3.6 to fetch externals, but it will be downloaded via NuGet (which is downloaded via PowerShell) if it is not available via `py -3.6`. This means the only thing that must be installed on a modern Windows box to do a full build of CPython with all extensions is Visual Studio.
Also fixes an outdated note about _lzma in PCbuild/readme.txt
(cherry-picked from commit 51599e2bdd10ab77212a7cbb41a13ea70ee13da8)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -286,7 +286,7 @@ Tools/Demos Tests ----- -* bpo-30357: test_thread: setUp() now uses support.threading_setup() and +- bpo-30357: test_thread: setUp() now uses support.threading_setup() and support.threading_cleanup() to wait until threads complete to avoid random side effects on following tests. Initial patch written by Grzegorz Grzywacz. @@ -297,6 +297,14 @@ Tests if it doesn't exist) now will be assigned to the target of the "as" clause, if there is one. +Windows +------- + +- bpo-30450: The build process on Windows no longer depends on Subversion, + instead pulling external code from GitHub via a Python script. If Python 3.6 + is not found on the system (via ``py -3.6``), NuGet is used to download a + copy of 32-bit Python. + What's New in Python 3.6.1? =========================== |