Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9fa4ced

Browse files
committed
Update third-party libraries for OS X installers:
XZ 5.0.3 -> 5.0.5 SQLite 3.7.13 -> 3.8.1
1 parent 44a0db0 commit 9fa4ced

3 files changed

Lines changed: 15 additions & 11 deletions

File tree

Mac/BuildScript/README.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $DESTROOT, massages that installation to remove .pyc files and such, creates
88
an Installer package from the installation plus other files in ``resources``
99
and ``scripts`` and placed that on a ``.dmg`` disk image.
1010

11-
As of Python 3.3.0, PSF practice is to build two installer variants
11+
For Python 3.4.0, PSF practice is to build two installer variants
1212
for each release.
1313

1414
1. 32-bit-only, i386 and PPC universal, capable on running on all machines
@@ -22,8 +22,8 @@ for each release.
2222
- builds the following third-party libraries
2323

2424
* NCurses 5.9 (http://bugs.python.org/issue15037)
25-
* SQLite 3.7.13
26-
* XZ 5.0.3
25+
* SQLite 3.8.1
26+
* XZ 5.0.5
2727

2828
- uses system-supplied versions of third-party libraries
2929

@@ -56,10 +56,10 @@ for each release.
5656
- builds the following third-party libraries
5757

5858
* NCurses 5.9 (http://bugs.python.org/issue15037)
59-
* SQLite 3.7.13
59+
* SQLite 3.8.1
6060
* Tcl 8.5.15
6161
* Tk 8.5.15
62-
* XZ 5.0.3
62+
* XZ 5.0.5
6363

6464
- uses system-supplied versions of third-party libraries
6565

Mac/BuildScript/build-installer.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,9 @@ def library_recipes():
237237
if getVersionTuple() >= (3, 3):
238238
result.extend([
239239
dict(
240-
name="XZ 5.0.3",
241-
url="http://tukaani.org/xz/xz-5.0.3.tar.gz",
242-
checksum='fefe52f9ecd521de2a8ce38c21a27574',
240+
name="XZ 5.0.5",
241+
url="http://tukaani.org/xz/xz-5.0.5.tar.gz",
242+
checksum='19d924e066b6fff0bc9d1981b4e53196',
243243
configure_pre=[
244244
'--disable-dependency-tracking',
245245
]
@@ -282,9 +282,9 @@ def library_recipes():
282282
),
283283
),
284284
dict(
285-
name="SQLite 3.7.13",
286-
url="http://www.sqlite.org/sqlite-autoconf-3071300.tar.gz",
287-
checksum='c97df403e8a3d5b67bb408fcd6aabd8e',
285+
name="SQLite 3.8.1",
286+
url="http://www.sqlite.org/2013/sqlite-autoconf-3080100.tar.gz",
287+
checksum='8b5a0a02dfcb0c7daf90856a5cfd485a',
288288
extra_cflags=('-Os '
289289
'-DSQLITE_ENABLE_FTS4 '
290290
'-DSQLITE_ENABLE_FTS3_PARENTHESIS '

Misc/NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,10 @@ Build
397397

398398
- Issue #19551: PEP 453 - the OS X installer now installs pip by default.
399399

400+
- Update third-party libraries for OS X installers:
401+
xz 5.0.3 -> 5.0.5
402+
SQLite 3.7.13 -> 3.8.1
403+
400404
Tools/Demos
401405
-----------
402406

0 commit comments

Comments
 (0)