passagemath-setup 10.4.38__py3-none-any.whl → 10.4.40__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.1
2
2
  Name: passagemath-setup
3
- Version: 10.4.38
3
+ Version: 10.4.40
4
4
  Summary: passagemath: Build system of the Sage library
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  License: GNU General Public License (GPL) v2 or later
@@ -2,7 +2,7 @@ sage_setup/__init__.py,sha256=pdtV0MZsLNuKUUGVnuf8cFcVVfOY2_eZ6gMBoT9I3Ug,6855
2
2
  sage_setup/cython_options.py,sha256=xqwDB-L_Jr8L5IOwjnkUoEWlGKqR_lG8z9qkuFETlIw,1417
3
3
  sage_setup/excepthook.py,sha256=RMZ-rNsSEL9clgLAnXrMnczR6Dzqw3tNeozBzEd1gKM,1040
4
4
  sage_setup/extensions.py,sha256=Zya8xIx24ayuaHx1w8fbbA7tmry2xhSWfMfFh-I0y2o,500
5
- sage_setup/find.py,sha256=o7ua2Cgt09sWMsOKeykYtXrX_1JxPd-pJKfwkGaxTmk,17604
5
+ sage_setup/find.py,sha256=l5QsfhBUPiFK5s4XsZ-E8PSs2MGf-Bt9nM3vz1lfGEU,17581
6
6
  sage_setup/library_order.py,sha256=A-6vD3fnsYzCmeWikNIyhx4MkKSpLLuc2GGsUoxpkGY,1783
7
7
  sage_setup/run_parallel.py,sha256=0M1f7x1qkadHmEltscLIUFFgVRwWqYyvpzsMriciJLQ,4516
8
8
  sage_setup/setenv.py,sha256=runuIG6m09duI7cxgPm8tJZAPh5BY_e4rHbzk2stWVc,2182
@@ -32,7 +32,7 @@ sage_setup/command/sage_build_ext.py,sha256=gND-AnQhP7c_AIvMIJPS1ZRBBeSZyGuDOzoK
32
32
  sage_setup/command/sage_build_ext_minimal.py,sha256=ihOR25hbJ6xtxDjv5FqwZhl2-Eq--P9Qy2V-zCgftp8,1328
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.4.38.dist-info/METADATA,sha256=D1o5ULwiWCha0M6qxBOvFU71yqmFXfHEYLTxdxl_UCg,1288
36
- passagemath_setup-10.4.38.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
37
- passagemath_setup-10.4.38.dist-info/top_level.txt,sha256=CNueJfE_I7DXDeFCPmCEMgfqRRZuufTzxVW0sPkbamc,11
38
- passagemath_setup-10.4.38.dist-info/RECORD,,
35
+ passagemath_setup-10.4.40.dist-info/METADATA,sha256=hGnEPYTxJ2sf8jh5bJdpeil19lkgu4H3SmJE1e3cKNI,1288
36
+ passagemath_setup-10.4.40.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
37
+ passagemath_setup-10.4.40.dist-info/top_level.txt,sha256=CNueJfE_I7DXDeFCPmCEMgfqRRZuufTzxVW0sPkbamc,11
38
+ passagemath_setup-10.4.40.dist-info/RECORD,,
sage_setup/find.py CHANGED
@@ -160,7 +160,7 @@ def find_python_sources(src_dir, modules=['sage'], distributions=None,
160
160
  for filename in filenames:
161
161
  base, ext = os.path.splitext(filename)
162
162
  filepath = os.path.join(dirpath, filename)
163
- if ext == PYMOD_EXT and base != '__init__':
163
+ if ext == PYMOD_EXT:
164
164
  if filepath in distribution_filter:
165
165
  python_modules.append(package + '.' + base)
166
166
  if ext == '.pyx':