#sagemath — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #sagemath, aggregated by home.social.
-
Cool!
Ich mag ja Sage https://github.com/sagemath/sage und fände einen Sagebot auch cool. Nur wenn Ihr zuviel Zeit habt ...
-
Cool!
Ich mag ja Sage https://github.com/sagemath/sage und fände einen Sagebot auch cool. Nur wenn Ihr zuviel Zeit habt ...
-
Release candidate 10.8.10.rc0 of 🐙passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
Various portability fixes.
github.com/passagemath/...
Release passagemath-10.8.10.rc... -
Release candidate 10.8.10.rc0 of 🐙passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
Various portability fixes.
github.com/passagemath/...
Release passagemath-10.8.10.rc... -
Just released version 10.8.9 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
github.com/passagemath/...
Release passagemath-10.8.9 · p... -
Just released version 10.8.9 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
github.com/passagemath/...
Release passagemath-10.8.9 · p... -
Release candidate 10.8.9.rc0 of 🐙passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
This is the 222nd GitHub release of passagemath. 🎉
Various package upgrades.
github.com/passagemath/...
Release passagemath-10.8.9.rc0... -
Release candidate 10.8.9.rc0 of 🐙passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
This is the 222nd GitHub release of passagemath. 🎉
Various package upgrades.
github.com/passagemath/...
Release passagemath-10.8.9.rc0... -
Just released version 10.8.8 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
github.com/passagemath/...
Release passagemath-10.8.8 · p... -
Just released version 10.8.8 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
github.com/passagemath/...
Release passagemath-10.8.8 · p... -
The passagemath-10.10.x series follows the #SciPy toolchain roadmap in dropping support for GCC 9, requiring GCC 10.3 or newer.
github.com/passagemath/...
#Python #SageMath #OpenSource #Mathematics
RE: https://bsky.app/profile/did:plc:htd5nd5zj62hey7e7lm3a6ky/post/3ms2hl5dxg22d
Release passagemath-10.10.1.al... -
The passagemath-10.10.x series follows the #SciPy toolchain roadmap in dropping support for GCC 9, requiring GCC 10.3 or newer.
github.com/passagemath/...
#Python #SageMath #OpenSource #Mathematics
RE: https://bsky.app/profile/did:plc:htd5nd5zj62hey7e7lm3a6ky/post/3ms2hl5dxg22d
Release passagemath-10.10.1.al... -
Release candidate 10.8.8.rc1 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
github.com/passagemath/...
Release passagemath-10.8.8.rc1... -
Release candidate 10.8.8.rc1 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
github.com/passagemath/...
Release passagemath-10.8.8.rc1... -
Just tagged version 10.10.1.alpha0 of passagemath, the portable modularized pip-installable compatible fork of #SageMath, with initial support for #Python 3.15.
github.com/passagemath/...
#OpenSource #Mathematics
RE: https://bsky.app/profile/did:plc:htd5nd5zj62hey7e7lm3a6ky/post/3mrtpwjyps22d
Release passagemath-10.10.1.al... -
Just tagged version 10.10.1.alpha0 of passagemath, the portable modularized pip-installable compatible fork of #SageMath, with initial support for #Python 3.15.
github.com/passagemath/...
#OpenSource #Mathematics
RE: https://bsky.app/profile/did:plc:htd5nd5zj62hey7e7lm3a6ky/post/3mrtpwjyps22d
Release passagemath-10.10.1.al... -
Release candidate 10.8.8.rc0 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
github.com/passagemath/...
#Mathics3 #Mathematica
Release passagemath-10.8.8.rc0... -
Release candidate 10.8.8.rc0 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
github.com/passagemath/...
#Mathics3 #Mathematica
Release passagemath-10.8.8.rc0... -
Started porting passagemath to #Python 3.15.
github.com/passagemath/...
#SageMath #OpenSource #Mathematics
Python 3.15 by mkoeppe · Pull ... -
Started porting passagemath to #Python 3.15.
github.com/passagemath/...
#SageMath #OpenSource #Mathematics
Python 3.15 by mkoeppe · Pull ... -
#sagemath
this is even more fixed version of https://github.com/sagemath/sage/issues/42582--- a/src/sage/combinat/root_system/integrable_representations.py +++ b/src/sage/combinat/root_system/integrable_representations.py @@ -1045,18 +1045,15 @@ sage: [V.modular_characteristic(x) for x in V.dominant_maximal_weights()] [11/56, -1/280, 111/280] """ - if isinstance(mu, tuple): - n = mu - else: - n = self.from_weight(mu) k = self.level() hd = self.dual_coxeter_number() rho = self._P.rho() m_Lambda = self._inner_pp(self._Lam_rho, self._Lam_rho) / (2*(k+hd)) \ - self._inner_pp(rho, rho) / (2*hd) - if n is None: + if isinstance(mu, tuple): + mu = self.to_weight(n) + if mu is None: return m_Lambda - mu = self.to_weight(n) return m_Lambda - self._inner_pp(mu,mu) / (2*k) def branch(self, i=None, weyl_character_ring=None, sequence=None, depth=5): -
Just released version 10.8.7 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
github.com/passagemath/...
Release passagemath-10.8.7 · p... -
Just released version 10.8.7 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
github.com/passagemath/...
Release passagemath-10.8.7 · p... -
Release candidate 10.8.7.rc0 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
github.com/passagemath/...
Release passagemath-10.8.7.rc0... -
Release candidate 10.8.7.rc0 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
github.com/passagemath/...
Release passagemath-10.8.7.rc0... -
Just released version 10.8.6 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
Many upgrades: ECM, FLINT, GAP, HiGHS, msolve, NumPy, PARI/GP, Planarity, SCIP.
github.com/passagemath/...
Release passagemath-10.8.6 · p... -
Just released version 10.8.6 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
Many upgrades: ECM, FLINT, GAP, HiGHS, msolve, NumPy, PARI/GP, Planarity, SCIP.
github.com/passagemath/...
Release passagemath-10.8.6 · p... -
Release candidate 10.8.6.rc2 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
Includes upgrades to HiGHS 1.15.1, ecm 7.0.7, primesieve 12.14. github.com/passagemath/...
Release passagemath-10.8.6.rc2... -
Release candidate 10.8.6.rc2 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
Includes upgrades to HiGHS 1.15.1, ecm 7.0.7, primesieve 12.14. github.com/passagemath/...
Release passagemath-10.8.6.rc2... -
Release candidate 10.8.6.rc1 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
Includes an update of msolve to version 0.10.1.
github.com/passagemath/...
Release passagemath-10.8.6.rc1... -
Release candidate 10.8.6.rc1 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
Includes an update of msolve to version 0.10.1.
github.com/passagemath/...
Release passagemath-10.8.6.rc1... -
Okay, I admit it: I was code golfing today.
The subject was Bernoulli numbers. Many clever and incredibly complex algorithms have been devised to calculate them for large arguments and resulting in implementations so arcane that they leave mere mortals in the dust.
That’s why I was surprised to find for Bernoulli number with an even index an one-liner for SageMath.
Here it is—84 bytes is the benchmark now; who can beat that? [Naturally, simply calling the built-in function isn't allowed.]
B=lambda n:matrix(2*n,lambda r,c:(c<r+2)*binomial(r+2,r-c+2)).det()/factorial(2*n+1)
-
Release candidate 10.8.6.rc0 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
Includes upgrades to FLINT 3.5.0, PARI/GP 2.17.4, #GAPsystem 4.16.0, Planarity 5.
github.com/passagemath/...
Release passagemath-10.8.6.rc0... -
Release candidate 10.8.6.rc0 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
Includes upgrades to FLINT 3.5.0, PARI/GP 2.17.4, #GAPsystem 4.16.0, Planarity 5.
github.com/passagemath/...
Release passagemath-10.8.6.rc0... -
Updated the passagemath-jupyterlite demo site. Now using JupyterLite 0.8 and providing several more passagemath distributions now available on emscripten-forge.
passagemath.org/passagemath-...
#Python #SageMath #OpenSource #Mathematics -
Updated the passagemath-jupyterlite demo site. Now using JupyterLite 0.8 and providing several more passagemath distributions now available on emscripten-forge.
passagemath.org/passagemath-...
#Python #SageMath #OpenSource #Mathematics -
The next release series, passagemath-10.10.x, will merge the compatible changes from upstream #SageMath 10.10, expected by end of summer 2026, and support #Python 3.12–3.15.
The current series, passagemath-10.8.x, will be supported until October 2027, the EOL of Python 3.11.
#OpenSource #Mathematics -
The next release series, passagemath-10.10.x, will merge the compatible changes from upstream #SageMath 10.10, expected by end of summer 2026, and support #Python 3.12–3.15.
The current series, passagemath-10.8.x, will be supported until October 2027, the EOL of Python 3.11.
#OpenSource #Mathematics -
Just released version 10.8.5 of passagemath, the comprehensive #OpenSource mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath.
Included: Updates of the computer algebra systems #Macaulay2 and #Mathics3.
github.com/passagemath/...
Release passagemath-10.8.5 · p... -
Release candidate 10.8.5.rc5 of passagemath, the comprehensive #OpenSource mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath. passagemath-macaulay2 now also ships #Macaulay2 docs and cohomcalg, csdp binaries. github.com/passagemath/...
Release passagemath-10.8.5.rc5... -
Release candidate 10.8.5.rc4 of passagemath, the comprehensive #OpenSource mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath. passagemath-msolve wheels now ship #msolve version 0.9.5 and are more portable. github.com/passagemath/...
Release passagemath-10.8.5.rc4... -
Release candidate 10.8.5.rc3 of passagemath, the comprehensive #OpenSource mathematics system in #Python, the pip-installable modularized portable compatible full-featured fork of #SageMath. Updates #Macaulay2 to version 1.26.06. github.com/passagemath/...
Release passagemath-10.8.5.rc3... -
Release candidate 10.8.5.rc2 of passagemath, the comprehensive #OpenSource mathematics system in #Python, the pip-installable modularized portable fork of #SageMath. Updates Mathics3, the free impl of the Wolfram language #Mathematica, to 10. Updates #Macaulay2 to 1.26.05. github.com/passagemath/...
Release passagemath-10.8.5.rc2... -
Sagemath 10.9 was released on 05-04. www.sagemath.org/download-sou... It is developed by volunteers and combines hundreds of open source packages. 88 people contributed to this. Of those, 27 made their first contribution to Sage: #freesoftware, #opensource, #sagemath, #mathematics, #mathematica
SageMath Mathematical Software... -
Sagemath 10.9 was released on 05-04. www.sagemath.org/download-sou... It is developed by volunteers and combines hundreds of open source packages. 88 people contributed to this. Of those, 27 made their first contribution to Sage: #freesoftware, #opensource, #sagemath, #mathematics, #mathematica
SageMath Mathematical Software... -
@sagemath 10.9 was released on 2026-05-04. It is available from:
*https://www.sagemath.org/download-source.html*
Sage (http://www.sagemath.org) is developed by volunteers and combines
hundreds of open source packages.88 people contributed to this release. Of those, 27 made
their first contribution to Sage:#freesoftware, #opensource, #sagemath, #mathematics, #mathematica
-
Release candidate 10.8.5.rc1 of passagemath, the comprehensive #OpenSource mathematics system in #Python, the pip-installable modularized portable fork of #SageMath. github.com/passagemath/...
Release passagemath-10.8.5.rc1... -
Release candidate 10.8.5.rc0 of passagemath, the comprehensive #OpenSource mathematics system in #Python, the pip-installable modularized portable fork of #SageMath. github.com/passagemath/...
Release passagemath-10.8.5.rc0... -
Release 10.8.4 of passagemath, the comprehensive #OpenSource mathematics system in #Python, the pip-installable modularized portable fork of #SageMath, providing the full functionality of Sage and more. Plots are now also available in @[email protected] notebooks. github.com/passagemath/...
Release passagemath-10.8.4 · p... -
Release candidate 10.8.2.rc4 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized fork of #SageMath. github.com/passagemath/...
Release passagemath-10.8.2.rc4... -
Release candidate 10.8.2.rc3 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized fork of #SageMath. github.com/passagemath/...
Release passagemath-10.8.2.rc3... -
Release candidate 10.8.2.rc2 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized fork of #SageMath. github.com/passagemath/...
Release passagemath-10.8.2.rc2... -
Release candidate 10.8.2.rc1 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized fork of #SageMath. github.com/passagemath/...
Release passagemath-10.8.2.rc1... -
Release candidate 10.8.2.rc0 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized fork of #SageMath. github.com/passagemath/...
Release passagemath-10.8.2.rc0... -
First @[email protected] JupyterLite #Python notebook for serverless, in-browser #SageMath computations in algebraic combinatorics, using passagemath-combinat compiled to #WebAssembly with @[email protected] passagemath.org/passagemath-... #OpenSource #Mathematics
-
Updated passagemath platform table. github.com/passagemath/... #Python #SageMath #OpenSource #Mathematics
-
First passagemath #WebAssembly packages available on the @[email protected] emscripten-forge channel #Python #SageMath #OpenSource #Mathematics
RE: https://bsky.app/profile/did:plc:htd5nd5zj62hey7e7lm3a6ky/post/3merhazldrc26 -
Packaging of passagemath for emscripten-forge, for serverless use in the web browser with JupyterLite. github.com/emscripten-f... #SageMath #Python
RE: https://bsky.app/profile/did:plc:htd5nd5zj62hey7e7lm3a6ky/post/3mepueqev7c26
Add passagemath-{environment,s... -
First stable release of the 10.8.x series of passagemath, the pip-installable modularized fork of #SageMath. Up to date with SageMath 10.9.beta3 (Jan 2026). Binary wheels uploaded for Linux, macOS, Windows, for the x86_64 & ARM platforms. github.com/passagemath/... #Python #OpenSource #Mathematics
Release passagemath-10.8.1 · p...