diff options
author | Steve Dower <steve.dower@python.org> | 2021-11-09 16:47:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-09 16:47:28 (GMT) |
commit | bcc4e46832010469bb35a97c1d1e962a82ee7fd9 (patch) | |
tree | 3db9cdd7ba5fed36970e3a88872ce2204fec3e87 | |
parent | c3bc0fe5a6e4ee50bd186eebb638e881b1c4bf54 (diff) | |
download | cpython-bcc4e46832010469bb35a97c1d1e962a82ee7fd9.zip cpython-bcc4e46832010469bb35a97c1d1e962a82ee7fd9.tar.gz cpython-bcc4e46832010469bb35a97c1d1e962a82ee7fd9.tar.bz2 |
bpo-45732: Update bundled Tcl/Tk on Windows to 8.6.12 (GH-29477)
-rw-r--r-- | Misc/NEWS.d/next/Windows/2021-11-08-21-53-11.bpo-45732.idl5kx.rst | 1 | ||||
-rw-r--r-- | PCbuild/get_externals.bat | 6 | ||||
-rw-r--r-- | PCbuild/tcltk.props | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/Misc/NEWS.d/next/Windows/2021-11-08-21-53-11.bpo-45732.idl5kx.rst b/Misc/NEWS.d/next/Windows/2021-11-08-21-53-11.bpo-45732.idl5kx.rst new file mode 100644 index 0000000..563bcd3 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2021-11-08-21-53-11.bpo-45732.idl5kx.rst @@ -0,0 +1 @@ +Updates bundled Tcl/Tk to 8.6.12. diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat index 484543d..207f91b 100644 --- a/PCbuild/get_externals.bat +++ b/PCbuild/get_externals.bat @@ -55,8 +55,8 @@ set libraries=%libraries% bzip2-1.0.6 if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi-3.4.2 if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-1.1.1l set libraries=%libraries% sqlite-3.36.0.0 -if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.11.1 -if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.11.1 +if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.12.0 +if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.12.0 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tix-8.4.3.6 set libraries=%libraries% xz-5.2.2 set libraries=%libraries% zlib-1.2.11 @@ -78,7 +78,7 @@ echo.Fetching external binaries... set binaries= if NOT "%IncludeLibffi%"=="false" set binaries=%binaries% libffi-3.4.2 if NOT "%IncludeSSL%"=="false" set binaries=%binaries% openssl-bin-1.1.1l -if NOT "%IncludeTkinter%"=="false" set binaries=%binaries% tcltk-8.6.11.1 +if NOT "%IncludeTkinter%"=="false" set binaries=%binaries% tcltk-8.6.12.0 if NOT "%IncludeSSLSrc%"=="false" set binaries=%binaries% nasm-2.11.06 for %%b in (%binaries%) do ( diff --git a/PCbuild/tcltk.props b/PCbuild/tcltk.props index 228efb3..16dc35d 100644 --- a/PCbuild/tcltk.props +++ b/PCbuild/tcltk.props @@ -4,8 +4,8 @@ <PropertyGroup> <TclMajorVersion>8</TclMajorVersion> <TclMinorVersion>6</TclMinorVersion> - <TclPatchLevel>11</TclPatchLevel> - <TclRevision>1</TclRevision> + <TclPatchLevel>12</TclPatchLevel> + <TclRevision>0</TclRevision> <TkMajorVersion>$(TclMajorVersion)</TkMajorVersion> <TkMinorVersion>$(TclMinorVersion)</TkMinorVersion> <TkPatchLevel>$(TclPatchLevel)</TkPatchLevel> |