Skip to content

Commit 7bde05c

Browse files
Release Managervbraun
Release Manager
authored andcommitted
Trac #25680: Upgrade to Python 3.7.x
'''Tarball''': https://www.python.org/ftp/python/3.7.3/Python-3.7.3.tar.xz URL: https://trac.sagemath.org/25680 Reported by: jdemeyer Ticket author(s): Jeroen Demeyer Reviewer(s): Vincent Klein, Erik Bray, Frédéric Chapoton
2 parents 1ac4304 + 5a09cf1 commit 7bde05c

17 files changed

+29
-393
lines changed

build/pkgs/python3/checksums.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tarball=Python-VERSION.tar.gz
2-
sha1=ae1fc9ddd29ad8c1d5f7b0d799ff0787efeb9652
3-
md5=9a080a86e1a8d85e45eee4b1cd0a18a2
4-
cksum=3720721727
1+
tarball=Python-VERSION.tar.xz
2+
sha1=e3584650a06ae2765da0678176deae9d133f1b3d
3+
md5=93df27aec0cd18d6d42173e601ffbbfd
4+
cksum=1160005949

build/pkgs/python3/dependencies

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
zlib readline sqlite libpng bzip2 xz
1+
zlib readline sqlite libpng bzip2 xz libffi
22

33
----------
44
All lines of this file are ignored except the first.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.6.6.p0
1+
3.7.3.p0

build/pkgs/python3/patches/2.6.5-ncurses-abi6.patch

-21
This file was deleted.

build/pkgs/python3/patches/3.2.6-getpath-exe-extension.patch

-33
This file was deleted.

build/pkgs/python3/patches/3.2.6-no-native-tls.patch

-107
This file was deleted.

build/pkgs/python3/patches/3.4.5-issue13756.patch

-46
This file was deleted.

build/pkgs/python3/patches/3.4.5-struct.patch

-24
This file was deleted.

build/pkgs/python3/patches/3.5.2-struct_siginfo_si_band.patch

-67
This file was deleted.

build/pkgs/python3/patches/cygwin64.patch

-32
This file was deleted.

build/pkgs/python3/patches/linux_linking_issue_25229.patch

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py
2-
index 3f321c2..cc295a3 100644
3-
--- a/Lib/distutils/unixccompiler.py
4-
+++ b/Lib/distutils/unixccompiler.py
5-
@@ -236,7 +236,7 @@ class UnixCCompiler(CCompiler):
6-
elif sys.platform[:7] == "irix646" or sys.platform[:6] == "osf1V5":
7-
return ["-rpath", dir]
1+
diff -ru a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py
2+
--- a/Lib/distutils/unixccompiler.py 2018-06-27 05:07:35.000000000 +0200
3+
+++ b/Lib/distutils/unixccompiler.py 2018-06-28 09:32:52.719006731 +0200
4+
@@ -234,7 +234,7 @@
5+
return ["-Wl,+s", "-L" + dir]
6+
return ["+s", "-L" + dir]
87
else:
98
- if self._is_gcc(compiler):
109
+ if sys.platform[:5] == "linux" or self._is_gcc(compiler):

build/pkgs/python3/patches/sdist.patch

-20
This file was deleted.

0 commit comments

Comments
 (0)