Gonzalo Tornaría

Results 138 comments of Gonzalo Tornaría

Here's my suggestion from https://github.com/cython/cython/pull/6124#issuecomment-2282955499. First chunk is reverting #6124, second chunk is the proposed fix for #6122. ```diff --- a/Cython/Compiler/Nodes.py +++ b/Cython/Compiler/Nodes.py @@ -710,10 +710,8 @@ class CFuncDeclaratorNode(CDeclaratorNode): and...

The failures here are real: ``` ---------------------------------------------------------------------- sage -t --random-seed=130925441006892428060280565126983766193 src/sage/categories/simplicial_sets.py # 7 doctests failed sage -t --random-seed=130925441006892428060280565126983766193 src/sage/groups/finitely_presented.py # 5 doctests failed sage -t --random-seed=130925441006892428060280565126983766193 src/sage/groups/perm_gps/permgroup_named.py # 3 doctests...

> We had specific tags for Python 2 and 3 differences. Since there are only a few differences (some of which are really not easy to rectify by changing the...

Here's another (maybe simpler?) idea. See src/sage/arith/long.pxd where we have this doctest: ``` sage: a^(2**258) Traceback (most recent call last): ... OverflowError: exponent must be at most 2147483647 # 32-bit...

I don't see any problem with system gap 4.13.0, but nobody here has given any concrete problem. If you have an issue, please document it properly. ``` $ time echo...

> In a virtual machine with fedora 40 and gap 4.13.1 installed I got plenty of errors, some of them for change of order in some outputs, but many timed...

Please, we need to move forward. If some systems have miscompiled gap 4.13, it should be rejected only on those. I'm building gap 4.13.1 from the original source and it...

> As this PR cannot be merged without the upgrade in #38169 (which has merged the branch), let's close this PR. Fine with me as long as #38169 moves forward...

> I tried to crosscompile sagemath from aarch64 to x86_64: it looks like we should add to hostmakedepends "python3-gmpy2 python3-memory_allocator python3-numpy ecl python3-cypari2 python3-cysignals python3-devel". Makes sense? Sure, but we...

@dkwo is something like this enough to cross-compile: ```diff --- a/srcpkgs/sagemath/template +++ b/srcpkgs/sagemath/template @@ -6,7 +6,9 @@ _pypi_version=${version/.beta/b} _pypi_version=${_pypi_version/.rc/rc} build_style=python3-pep517 hostmakedepends="pkg-config python3-Cython python3-Jinja2 - python3-pkgconfig python3-setuptools python3-wheel" + python3-pkgconfig python3-setuptools...