Have these doctest errors on OS X been reported? env.py and limit_valuation.py:
src/bin/sage -t --long --warn-long 30.0 --random-seed=98448027346439960956059533789739743147 src/sage/env.py
**********************************************************************
File "src/sage/env.py", line 365, in sage.env.cython_aliases
Failed example:
cython( # optional - sage.misc.cython
'''
#distutils: extra_compile_args = OPENMP_CFLAGS
#distutils: extra_link_args = OPENMP_CFLAGS
from cython.parallel import prange
cdef int i
cdef int n = 30
cdef int sum = 0
for i in prange(n, num_threads=4, nogil=True):
sum += i
print(sum)
''')
Exception raised:
Traceback (most recent call last):
File "/Users/palmieri/Sage/TESTING/sage-10.9.beta5/local/var/lib/sage/venv-python3.14/lib/python3.14/site-packages/setuptools/_distutils/spawn.py", line 87, in spawn
subprocess.check_call(cmd, env=_inject_macos_ver(env))
~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/pyt...@3.14/3.14.2_1/Frameworks/Python.framework/Versions/3.14/lib/python3.14/subprocess.py", line 419, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['/usr/bin/gcc', '-fno-strict-overflow', '-Wsign-compare', '-Wunreachable-code', '-fno-common', '-dynamic', '-DNDEBUG', '-g', '-O3', '-Wall', '-I/Users/palmieri/Sage/TESTING/sage-10.9.beta5', '-I/Users/palmieri/Sage/TESTING/sage-10.9.beta5/src', '-I/Users/palmieri/Sage/TESTING/sage-10.9.beta5/build/sage-distro/src', '-I/Users/palmieri/Sage/TESTING/sage-10.9.beta5/local/var/lib/sage/venv-python3.14/include', '-I/opt/homebrew/opt/pyt...@3.14/Frameworks/Python.framework/Versions/3.14/include/python3.14', '-c', '/var/folders/z6/yjw_7s357yx3_mhh81__lplc0000gn/T/sage_zm6m0_lc/spyx_3zdiwgte/_var_folders_z6_yjw_7s357yx3_mhh81__lplc0000gn_T_sage_zm6m0_lc_tmp_hcvmfeqs_pyx/_var_folders_z6_yjw_7s357yx3_mhh81__lplc0000gn_T_sage_zm6m0_lc_tmp_hcvmfeqs_pyx_0.c', '-o', '/var/folders/z6/yjw_7s357yx3_mhh81__lplc0000gn/T/sage_zm6m0_lc/spyx_3zdiwgte/_var_folders_z6_yjw_7s357yx3_mhh81__lplc0000gn_T_sage_zm6m0_lc_tmp_hcvmfeqs_pyx/build/temp.macosx-26.0-arm64-cpython-314/var/folders/z6/yjw_7s357yx3_mhh81__lplc0000gn/T/sage_zm6m0_lc/spyx_3zdiwgte/_var_folders_z6_yjw_7s357yx3_mhh81__lplc0000gn_T_sage_zm6m0_lc_tmp_hcvmfeqs_pyx/_var_folders_z6_yjw_7s357yx3_mhh81__lplc0000gn_T_sage_zm6m0_lc_tmp_hcvmfeqs_pyx_0.o', '-fopenmp', '-w']' returned non-zero exit status 1.
[snip]
File "sage/misc/lazy_import.pyx", line 413, in sage.misc.lazy_import.LazyImport.__call__
File "/Users/palmieri/Sage/TESTING/sage-10.9.beta5/src/sage/misc/cython.py", line 730, in cython_compile
return cython_import_all(tmpfile, get_globals(), **kwds)
File "/Users/palmieri/Sage/TESTING/sage-10.9.beta5/src/sage/misc/cython.py", line 616, in cython_import_all
m = cython_import(filename, **kwds)
File "/Users/palmieri/Sage/TESTING/sage-10.9.beta5/src/sage/misc/cython.py", line 584, in cython_import
name, build_dir = cython(filename, **kwds)
~~~~~~^^^^^^^^^^^^^^^^^^
File "/Users/palmieri/Sage/TESTING/sage-10.9.beta5/src/sage/misc/cython.py", line 463, in cython
raise RuntimeError(msg.strip())
RuntimeError: command '/usr/bin/gcc' failed with exit code 1
clang: error: unsupported option '-fopenmp'
**********************************************************************
src/bin/sage -t --long --warn-long 30.0 --random-seed=98448027346439960956059533789739743147 src/sage/rings/valuation/limit_valuation.py
**********************************************************************
File "src/sage/rings/valuation/limit_valuation.py", line 680, in sage.rings.valuation.limit_valuation.MacLaneLimitValuation._ge_
Failed example:
valuations.LimitValuation(V[0], F) >= valuations.LimitValuation(V[1], F)
Exception raised:
Traceback (most recent call last):
File "/Users/palmieri/Sage/TESTING/sage-10.9.beta5/src/sage/doctest/forker.py", line 734, in _run
self.compile_and_execute(example, compiler, test.globs)
~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/palmieri/Sage/TESTING/sage-10.9.beta5/src/sage/doctest/forker.py", line 1158, in compile_and_execute
exec(compiled, globs)
~~~~^^^^^^^^^^^^^^^^^
File "<doctest sage.rings.valuation.limit_valuation.MacLaneLimitValuation._ge_[4]>", line 1, in <module>
valuations.LimitValuation(V[Integer(0)], F) >= valuations.LimitValuation(V[Integer(1)], F)
File "sage/structure/element.pyx", line 1101, in sage.structure.element.Element.__richcmp__
File "sage/categories/morphism.pyx", line 351, in sage.categories.morphism.Morphism._richcmp_
File "/Users/palmieri/Sage/TESTING/sage-10.9.beta5/src/sage/rings/valuation/valuation.py", line 187, in _richcmp_
return self._ge_(other)
~~~~~~~~~^^^^^^^
File "/Users/palmieri/Sage/TESTING/sage-10.9.beta5/src/sage/rings/valuation/limit_valuation.py", line 701, in _ge_
assert self._G.gcd(other._G).is_one()
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
AssertionError
**********************************************************************