Re: [sage-support] Re: Error when makeing Sage

2025-01-07 Thread Éricles Lima
Now I downgraded to python 10.5, and it stopped yielding that error (also, there's evidence gmpy2 had issues with newer python version , but I'm not entirely sure that is related). However, it's now failing on building scipy :/ There's a similar er

[sage-support] Re: sage-doc-html + urllib3 + openSSL problem when building from source on M4 Macbook

2025-01-07 Thread Dima Pasechnik
Our docbuilder isn't great, it uses some custom outdated tricks for parallel building. Switching to a more standard sphinx setup is overdue... Try cleaning docs by make doc-clean and then run make -j1 On Tuesday, January 7, 2025 at 2:56:47 AM UTC-6 pgal...@gmail.com wrote: > Thank you for th

[sage-support] Re: sage-doc-html + urllib3 + openSSL problem when building from source on M4 Macbook

2025-01-07 Thread Pavel Galashin
That doesn't seem to help: [sagemath_doc_html-none] Setting up build directory /Users/user/sage/sage/local/var/tmp/sage/build/sagemath_doc_html-none [sagemath_doc_html-none] Host system: Darwin PG-Mac-2.local 24.2.0 Darwin Kernel Version 24.2.0: Fri Dec 6 19:03:40 PST 2024; root:xnu-11215.61.5

[sage-support] sage days 127, TU Vienna, Austria

2025-01-07 Thread 'Martin R' via sage-support
Dear all, this is the final announcement of sage days 127 - https://wiki.sagemath.org/days127 from Saturday 22 February to Tuesday 25 February 2025 at TU Wien, Austria. In this workshop, we will provide tutorials for beginners as needed and discover ways how to profit from SageMath's capabilit

[sage-support] Re: Multivariate Non-Commuting power series

2025-01-07 Thread 'Martin R' via sage-support
In principle, the lazy series framework should be able to do what you want. sage: F = FreeAlgebra(QQ, ["x","y"], degrees=(1,1)) sage: A = LazyCompletionGradedAlgebra(F) sage: F. = FreeAlgebra(QQ, degrees=(1,1)) sage: A = LazyCompletionGradedAlgebra(F) sage: x = A(x); y = A(y) sage: f = 1/(1-x-y^2)