Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

passagemath is open source mathematical software in Python, released under the GNU General Public Licence GPLv2+.

It is a fork of SageMath, which has been developed 2005-2026 under the motto “Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, and MATLAB”.

The passagemath fork uses the motto “Creating a Free Passage Between the Scientific Python Ecosystem and Mathematical Software Communities.” It was created in October 2024 with the following goals:

Moreover, the passagemath project:

  • provides a stable, frequently updated version of the Sage distribution,

  • integrates additional mathematical software, notably Macaulay2, a full set of GAP packages, and the Combinatorial Matrix Recognition library,

  • curates a library of Sage user packages.

Full documentation is available online.

passagemath attempts to support and provides binary wheels suitable for all major Linux distributions and recent versions of macOS.

Binary wheels for native Windows (x86_64, ARM) are are available for a subset of the passagemath distributions. Use of the full functionality of passagemath on Windows currently requires the use of Windows Subsystem for Linux (WSL) or virtualization.

The supported Python versions in the passagemath-10.8.x series are 3.11.x-3.14.x; the passagemath-10.6.x series (EOL 2026-10) still supports Python 3.10.x.

About this pip-installable distribution package

This pip-installable distribution passagemath-cmr is a small optional distribution for use with passagemath-modules and passagemath-graphs.

It provides a Cython interface to the CMR library, which implements recognition and decomposition algorithms for:

  • Totally Unimodular Matrices

  • Network Matrices

  • Complementary Totally Unimodular Matrices

  • (Strongly) Equimodular and Unimodular Matrices

  • Regular Matroids

  • Graphic / Cographic / Planar Matrices

  • Series-Parallel Matroids

Examples

$ pipx run --spec "passagemath-cmr[test]" ipython

In [1]: from passagemath_cmr import *

In [2]: from sage.matrix.matrix_cmr_sparse import Matrix_cmr_chr_sparse

In [3]: M = Matrix_cmr_chr_sparse(MatrixSpace(ZZ, 3, 3, sparse=True), [[1, 0, 1], [0, 1, 1], [1, 2, 3]]); M
Out[3]:
[1 0 1]
[0 1 1]
[1 2 3]

In [4]: M.is_unimodular()
Out[4]: True

In [5]: M.is_strongly_unimodular()
Out[5]: False

Development

$ git clone --origin passagemath https://github.com/passagemath/passagemath.git  # or use your fork
$ cd passagemath
passagemath $ ./bootstrap
passagemath $ source ./.homebrew-build-env         # on macOS when homebrew is in use
passagemath $ export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/wsl/lib  # on WSL
passagemath $ export PIP_CONSTRAINT="$(pwd)/constraints_cmr.txt"
passagemath $ export PIP_BUILD_CONSTRAINT="$(pwd)/constraints_cmr.txt"
passagemath $ echo "passagemath-categories @ file://$(pwd)/pkgs/sagemath-categories" >> constraints_cmr.txt
passagemath $ echo "passagemath-modules @ file://$(pwd)/pkgs/sagemath-modules" >> constraints_cmr.txt
passagemath $ python3 -m venv cmr-venv
passagemath $ source cmr-venv/bin/activate
(cmr-venv) passagemath $ pip install -v -e pkgs/sagemath-cmr        \
                                        -e pkgs/sagemath-modules    \
                                        -e pkgs/sagemath-categories

Modularized use:

(cmr-venv) passagemath $ pip install -v passagemath-repl
(cmr-venv) passagemath $ sage
... sage.all is not available ...
sage: from passagemath_modules import *
sage: matroids.Uniform(3, 4)
U(3, 4): Matroid of rank 3 on 4 elements with circuit-closures
{3: {{0, 1, 2, 3}}}

In plain Python:

(cmr-venv) passagemath $ python3
>>> from passagemath_modules import *
>>> matroids.Uniform(3, 4)
U(3, 4): Matroid of rank 3 on 4 elements with circuit-closures
{3: {{0, 1, 2, 3}}}

For full functionality of Sage:

(cmr-venv) passagemath $ pip install -v passagemath-standard
(cmr-venv) passagemath $ sage
sage: matroids.Uniform(3, 4)
U(3, 4): Matroid of rank 3 on 4 elements with circuit-closures
{3: {{0, 1, 2, 3}}}

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

passagemath_cmr-10.8.11rc0.tar.gz (61.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

passagemath_cmr-10.8.11rc0-cp314-cp314t-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

passagemath_cmr-10.8.11rc0-cp314-cp314t-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_cmr-10.8.11rc0-cp314-cp314t-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_cmr-10.8.11rc0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_cmr-10.8.11rc0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_cmr-10.8.11rc0-cp314-cp314t-macosx_13_0_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_cmr-10.8.11rc0-cp314-cp314t-macosx_13_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_cmr-10.8.11rc0-cp314-cp314-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.14Windows x86-64

passagemath_cmr-10.8.11rc0-cp314-cp314-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_cmr-10.8.11rc0-cp314-cp314-musllinux_1_2_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_cmr-10.8.11rc0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_cmr-10.8.11rc0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_cmr-10.8.11rc0-cp314-cp314-macosx_13_0_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_cmr-10.8.11rc0-cp314-cp314-macosx_13_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_cmr-10.8.11rc0-cp313-cp313-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.13Windows x86-64

passagemath_cmr-10.8.11rc0-cp313-cp313-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_cmr-10.8.11rc0-cp313-cp313-musllinux_1_2_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_cmr-10.8.11rc0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_cmr-10.8.11rc0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_cmr-10.8.11rc0-cp313-cp313-macosx_13_0_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_cmr-10.8.11rc0-cp313-cp313-macosx_13_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_cmr-10.8.11rc0-cp312-cp312-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.12Windows x86-64

passagemath_cmr-10.8.11rc0-cp312-cp312-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_cmr-10.8.11rc0-cp312-cp312-musllinux_1_2_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_cmr-10.8.11rc0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_cmr-10.8.11rc0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_cmr-10.8.11rc0-cp312-cp312-macosx_13_0_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_cmr-10.8.11rc0-cp312-cp312-macosx_13_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_cmr-10.8.11rc0-cp311-cp311-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.11Windows x86-64

passagemath_cmr-10.8.11rc0-cp311-cp311-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_cmr-10.8.11rc0-cp311-cp311-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_cmr-10.8.11rc0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_cmr-10.8.11rc0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_cmr-10.8.11rc0-cp311-cp311-macosx_13_0_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_cmr-10.8.11rc0-cp311-cp311-macosx_13_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

Details for the file passagemath_cmr-10.8.11rc0.tar.gz.

File metadata

  • Download URL: passagemath_cmr-10.8.11rc0.tar.gz
  • Upload date:
  • Size: 61.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for passagemath_cmr-10.8.11rc0.tar.gz
Algorithm Hash digest
SHA256 ecb771d3a5c5627d5d70f14489991f767ed36ed1a584a5fd1ec330f755643e9d
MD5 16026a224ea37b7336fd718e7b5fc00f
BLAKE2b-256 cea782f56ff549152efd867a668474591b7fc19673d564b2b1b79a6d547ab251

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8eb73faa1f10c275e9a794be0505feaef46a0189067255e233ba95d4db0cc7da
MD5 2352812057d0ba477a7883d760e01dfb
BLAKE2b-256 8474055463cd51c5990aa33f3c3ea3e3f78319401174fbbf415a073c97096f72

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3920ccb0c4afbfb06964a53ab98d1b4d9548560e0040c2adc3c30bacbdc032e
MD5 da0c91a5a9e0474701094aca1a43913a
BLAKE2b-256 ff7e7fa4f57cdeb507ce134d7de324a7eb4e2d5c587c94603a274723214868b8

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22e2ede3b5879ba93d22a1ebc5b89e95a8a88aa7cfc1ae6c57a59ba4722856de
MD5 e3f61a89175cd8c1bf96fab5c28fb182
BLAKE2b-256 8673f79d2704527cacfae6751ca622c060bc742d29118aeebee65cc0a23a6669

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d52ed08d2b2aabdbccbe196ec32598bf7189f15cdfa0ce8896d8465df29ab619
MD5 604aa152943ec74e74c38b2027d5423e
BLAKE2b-256 13fbd64def78fb8346568750cbf242ed3498a8626f3f1be0e08085cbb9a35c6e

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff07728a7c37d4fde67a8ffdaea601d23be6c5f00efeb5e70a07b8fdc6cecc4c
MD5 507869c387a3c674500c83c2d11cced3
BLAKE2b-256 1177be2e215ad8e1c0e5ee2103e309082cabb7e04e65b30825fb0a75e9896ba9

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e0dfbfc2570c86e3b0f5a8b29e5e203c62eb1725a95fa6ea710924749ebe7a62
MD5 5c518ae52d36b930af2219aef1a6020e
BLAKE2b-256 33d630d1b2ca9543535a9ce17895d2f25c56dee41cfa5763591d27527e38254d

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 841000e6e96d29bb01f168901b3ad6d6fa7230c09395e62c0e4ea13b7c39df37
MD5 16c2db5c8b717e34dc49f9cdf234cb4a
BLAKE2b-256 080c530b25190118a44470f53e12c4615dd1bbf83a6c6dedbd1608a0a7815b6e

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 30b89b93827f8b0016e6288099479fb5fcddddb94499340fda5a673d59b468fd
MD5 bbd1fd41edc007b6c878701bf1cdaa94
BLAKE2b-256 1dc66cbb25a78cb013d0df27597fec25b334d63c460050ecb52f13567c405a62

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbd3934ab6938657c239f2114189eb429db2fb8ea841d7ccefb09bf7f9f76246
MD5 cd880c12267d254d754d8c7986d5b129
BLAKE2b-256 5913c25ce53560e609cd28368841ec8123678d4274b55dfc915aff781ded52aa

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6a3314d50e2eb6aadba19d496a64e1c19ac74df0358949fb998aeb04c85ae0a
MD5 d195d037fe5cbbb4d56c1e22b8034176
BLAKE2b-256 bd6b88ce3a67d00b138240e00e912c6d8af15f0835fd20221d65ce3f7f0f2073

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d31968110233ae6dc8a33207cca76c55fa0777ff03ca1934db006f625bb051c
MD5 ce86f3b1001099dda99e4595db0b59fc
BLAKE2b-256 47b8b840793df8427438fb5d8855fde2919917120810351379747cda6beae9d3

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47d0117d6f72fa49ef35515d9fa9eada3ac39979bbec75af42cc883e33a2f2a5
MD5 a52b36c3f44afdf88a5297d965d3205c
BLAKE2b-256 c3b4f24a5b36754945e391dea9560e4a51d24c857e878ad4132d769909a7aa28

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7a7cbbe38b83a6eb47b0cd25eda4307665f87c37ae41ffab1370104b2451b297
MD5 80f4be8e434a5672b1c23fd941fd9eca
BLAKE2b-256 d668a8d8f22794388f0f09a629910d409ac3e35095720f6a09eefec59a07f962

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a3e7f9495ca1682af90037729450d38595cd8083299af84c26c610b88275118a
MD5 6ef3904715ea2dd8248e8d2ae0ecb89b
BLAKE2b-256 7344e57134593a55e9b54ac15b245fb33f6ceb95090bd258256edc3cfd2eb7fc

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 42f3e57e9b8225695b92a315b2cb63bf6ecd4aa123a0248da9bae5b4e7a8883c
MD5 c172f2f94219f348a6bf99d892abd87e
BLAKE2b-256 966b8ee487659ce0fcfd9400327a34bbe5856d7330f42941661a227f20aa5f3f

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab0fd28d9deba5ac6e42a46eb8d89c43de70283e3028de3056857d1fc6673d56
MD5 0f22ebf9cf23b76c9acc8ce52bf389e2
BLAKE2b-256 133a63f112c47a4e91b01379847a121126825547b9db049c0e620b73dcb49901

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5041546715f54b8747af8b5726cfb863081b0149f11e6c395c7f2cda43bf2a8
MD5 e5e98059f6fd41df59d291a5a0a9fa5a
BLAKE2b-256 756e53693069bd745b7c48137caded913238b92b5e14ac8fcb159f108a9afe21

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7eb277e1070b97ff1309b0d2bf195816180d96455c82dabfb98bef124a285b96
MD5 1b61b20c9522a1d6a9897e0ae0f62974
BLAKE2b-256 0c55b9e85036f954d1493dc96db05730c1a4d928a0e8ab8fa740d6ad97b614fa

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f0e31d8a5b44c254fd8b8be0cd62b18470fdff8e959985b0078035d83ed34a4
MD5 034b7bca6ca6651aa6390df8d709a495
BLAKE2b-256 e96022fb09aed77a98b23e207b5218d5a50870f00612f3a0e6141773ba0afd6a

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 458ad9db8a8c18184c6145f7825afc2a97520d173ec44c9a2d226daf7b0385a6
MD5 6f799f6ff032e41d95a04b8a6359fdea
BLAKE2b-256 da719c8f9c491223af4507162d0e4b67ddf78f52bbc2f9501e9a7b5494de55b0

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 0a670700a223d0eb61da81ece65a5944bb661e29bd3186cf4532a3010c07f9e2
MD5 470b9c448b4750e3a0538d4e6e3955cc
BLAKE2b-256 e4a0b5428d10681a4a08f34eebfbc3c024735615259795cf15a537408fb99f7a

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 717ee7ef1a96545b1e6acb0a7d32095be94e00b498be83c1559f3b6f9113cfb1
MD5 0dd3f0b92ded54030420a23f32d0a233
BLAKE2b-256 08f13ab8c061392285fce526db8de8f9e43bf869e17329911e757a3d106ab5ee

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf9ab3e7c2dd052c69c0bf76299b567945b824acaa4a75fc5b56e757043c5132
MD5 dbb893db24a7265c48038df447545d48
BLAKE2b-256 24c04a671070be969b19bf8cc3ddb20e433f63edcbdebb94edeac26e1d7444c3

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e4209e56429591f4f38ccf661a31a1c44e159208ffec0372d82d9ee1e273b78
MD5 6be6b18b215675650fe49af28db77468
BLAKE2b-256 7a5f9cccfc237ac67782149bfdc9926edd2f09ed57fc649bf20cc69f74a7a140

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb115d0c10189bf1b777256b6c6a4766dc3a037df3e894456898ae3b75c535b1
MD5 10ebac347ef928aefcf5a2ba75931a3f
BLAKE2b-256 f51ff078d793c3277d3d1f258dd94eb1a64bd5efcfe3e54bea1226bab408cc4f

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a018e4db8de88008a0a1a1cacc426ca9f89f103a36663105978d46d4b23d5b9
MD5 e338f137644bff9edc58a5ba0d30ce0b
BLAKE2b-256 ac31748ff87b93dfa1fa9e586c7b011bc741f5d56cc5bd248e1b3e2fac64bcbc

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0818dfcc63711277c4aa3371b52ed812b18e1c220f0fe76b5ab4c8df4b80e199
MD5 86183a775c25809f73ce119998f9a029
BLAKE2b-256 8d48608bd95e2b2da5c367c2d23df6abce54824e87ec75c8f2efa6744590cb8b

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ba2a07764d36a06c9208207487e18fff8624411517764faf80fc38c7c4399d74
MD5 e5cefb1502b7427f3749bb2608da8f0f
BLAKE2b-256 4bd0806fb290d20472791f559c2c5827ac14f41ede78cd08a5b0dc24aa00314b

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dba2b2c120c22e08cf58fdd52593f6afb868ec3e2fee5704eb19a4bb9b0e3fd0
MD5 aaef6760e05835e772097e625ceb7b27
BLAKE2b-256 62407f3a8f01e5e00074d9678265b6c2116d6946bef3746b1a76f197b31dfa1e

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 354a98cf0b0dc2a91b114f9970317708ea0ef4ee475c10f158fbe45f314f08bf
MD5 ec8503ca659dea0ad8fe2bde7fde9c5a
BLAKE2b-256 69ce8490e5864cff7963f6788ecc031db87cd521e96d178c270d9f63f3a7e4d5

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 103836121fd135b586aab81a927e4e26f4a3bcf6e3fc45dc83e8d057a5cd3b57
MD5 8008bf2b34c13db0fa1ad688ec80648e
BLAKE2b-256 337ce99af241ac5e9df4e15a15e3c77f924efcdcdc618bb3eff8ac943a7f658f

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef19c3d13b24e0efeb14116b65ab1487d3082ca1692b8a7ec9b2bf3d2721c789
MD5 4ee28371f73784fdca7037ddea0768e8
BLAKE2b-256 caba1b1f346bce06c2cd4f58b7a578175d8bba515f58cbde9b1ff49a10981128

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0806815eaf881e233e30c517f79345d205612336b5fd08c581b9f6fe4cafc43
MD5 b74813a3d9162c29b529871369bf517b
BLAKE2b-256 9c396396c8ad9a73d18790f47fdd92eb9feead7288d601bc91ef1f903efc895b

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5640d00b9073e9718a0748e3cfd43434bf0059df2fa59ed0926bbab1e85f7538
MD5 3f53dadb80cb7dc7b397c7fa57d7bfe3
BLAKE2b-256 21a83f0a456612dcfaefe1f8e9b918a1a19ec7e60bbd19cbc447ea0c7dad331a

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc0-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc0-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4155cf11f5e4e7ce174fefe9ddadb2138ed365987f33e61437e0134af684b892
MD5 a4ec3282473e5d353fd800b944726e23
BLAKE2b-256 84a74629a6ef36633af5f3d2d4df3fba159ae32706d0bc280eddb12a1ef71484

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

10.8.11rc0 This release

36 files

10.8.10

36 files

10.8.9

36 files

10.8.8

36 files

10.8.7

36 files

10.8.6

36 files

10.8.5

36 files

10.8.4

41 files

10.8.3

41 files

10.8.2

41 files

10.8.1

41 files

10.6.48

43 files

10.6.47

43 files

10.6.42

43 files

10.6.28

29 files

10.5.49

31 files

10.5.29

11 files

10.5.24

6 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page