passagemath-setup 10.6.1rc1__py3-none-any.whl → 10.6.1rc2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: passagemath-setup
3
- Version: 10.6.1rc1
3
+ Version: 10.6.1rc2
4
4
  Summary: passagemath: Build system of the Sage library
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  Maintainer: Matthias Köppe, passagemath contributors
@@ -1,4 +1,4 @@
1
- sage_setup/__init__.py,sha256=WVIY9MryzKdAt0di0ypXfKwZnA_bEAc-UJX3LsKjDQ4,7208
1
+ sage_setup/__init__.py,sha256=FoNCqleZ2QbyLbnRTj6WG6Bu4vG2OHRxS5oP3UOAyIM,7228
2
2
  sage_setup/cython_options.py,sha256=xqwDB-L_Jr8L5IOwjnkUoEWlGKqR_lG8z9qkuFETlIw,1417
3
3
  sage_setup/excepthook.py,sha256=OG1ff-ctLzA2Kz07NjCkdClFNDfsTBM8n1CXzKGyjwg,1041
4
4
  sage_setup/extensions.py,sha256=Zya8xIx24ayuaHx1w8fbbA7tmry2xhSWfMfFh-I0y2o,500
@@ -32,7 +32,7 @@ sage_setup/command/sage_build_ext.py,sha256=vKOeuDuZfkoX8k520pNXzk6os9uHH8z_csNG
32
32
  sage_setup/command/sage_build_ext_minimal.py,sha256=dA5MXCTCohHXu6mBCDf_i_0L_YcgG5ApoX7FDCpn_84,1330
33
33
  sage_setup/command/sage_build_py.py,sha256=bzuRHXKnhItGMkjYxZ276jHz030B85lq45Bp6shI9Nw,311
34
34
  sage_setup/command/sage_install.py,sha256=MRArCc0exyqJpVpILvgnM-FNZQ1XJzk-AXIvw5Qxp6U,1340
35
- passagemath_setup-10.6.1rc1.dist-info/METADATA,sha256=Oy7GZLu30N5ZOUVojOQX4xVd2pkOmPkG2qrVdLhWozY,1715
36
- passagemath_setup-10.6.1rc1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
37
- passagemath_setup-10.6.1rc1.dist-info/top_level.txt,sha256=CNueJfE_I7DXDeFCPmCEMgfqRRZuufTzxVW0sPkbamc,11
38
- passagemath_setup-10.6.1rc1.dist-info/RECORD,,
35
+ passagemath_setup-10.6.1rc2.dist-info/METADATA,sha256=lsr8FaibYwajHDzEQcUmNXXaUEwA7qL5Ab8nTgN4SGs,1715
36
+ passagemath_setup-10.6.1rc2.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
37
+ passagemath_setup-10.6.1rc2.dist-info/top_level.txt,sha256=CNueJfE_I7DXDeFCPmCEMgfqRRZuufTzxVW0sPkbamc,11
38
+ passagemath_setup-10.6.1rc2.dist-info/RECORD,,
sage_setup/__init__.py CHANGED
@@ -45,8 +45,9 @@ def sage_setup(distributions, *,
45
45
 
46
46
  # Work around a Cython problem in Python 3.8.x on macOS
47
47
  # https://github.com/cython/cython/issues/3262
48
- import os
49
- if os.uname().sysname == 'Darwin':
48
+
49
+ import platform
50
+ if platform.system() == 'Darwin':
50
51
  import multiprocessing
51
52
  multiprocessing.set_start_method('fork', force=True)
52
53
 
@@ -71,6 +72,7 @@ def sage_setup(distributions, *,
71
72
  import setuptools.command.egg_info
72
73
  setuptools.command.egg_info.walk_revctrl = lambda: ()
73
74
 
75
+ import os
74
76
  import sys
75
77
 
76
78
  from sage_setup.excepthook import excepthook