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.11rc1.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.11rc1-cp314-cp314t-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

passagemath_cmr-10.8.11rc1-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.11rc1-cp314-cp314t-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_cmr-10.8.11rc1-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.11rc1-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.11rc1-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.11rc1-cp314-cp314t-macosx_13_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

passagemath_cmr-10.8.11rc1-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.11rc1-cp314-cp314-musllinux_1_2_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_cmr-10.8.11rc1-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.11rc1-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.11rc1-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.11rc1-cp314-cp314-macosx_13_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

passagemath_cmr-10.8.11rc1-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.11rc1-cp313-cp313-musllinux_1_2_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_cmr-10.8.11rc1-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.11rc1-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.11rc1-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.11rc1-cp313-cp313-macosx_13_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

passagemath_cmr-10.8.11rc1-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.11rc1-cp312-cp312-musllinux_1_2_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_cmr-10.8.11rc1-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.11rc1-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.11rc1-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.11rc1-cp312-cp312-macosx_13_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

passagemath_cmr-10.8.11rc1-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.11rc1-cp311-cp311-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_cmr-10.8.11rc1-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.11rc1-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.11rc1-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.11rc1-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.11rc1.tar.gz.

File metadata

  • Download URL: passagemath_cmr-10.8.11rc1.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.11rc1.tar.gz
Algorithm Hash digest
SHA256 b2fe657630ac335b28c9fde6250e391cad807bf5ac3989ced18141052e40c188
MD5 99bbe45027f6281df054da883f89d0bc
BLAKE2b-256 777590d74618de904da777eacf611ada28d8d20224e1ef127f713cb8866d343a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3f862a2613258248b6d09f61dc58c9ed73fb8473129ff5f068e8a1ebc1ff1794
MD5 947c4a158ba7315d2327b12bb6c53e8e
BLAKE2b-256 2f1a2cbbe3fe527916d2551a3746fc4f60b8a24c62fdfa8df591d081011ca78d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 665373d371251e66f6e563728b47a97895a3b955e277aa6102b8833b5b3e5ba7
MD5 0aaaa50a1b4da3174ea9ce8948e8197c
BLAKE2b-256 a78523af660f502a82b4ab83c7c267483bbafe88ec8693ce1e478d7318608306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 315a076cee11f2c3e907b3e122625ea4e2cbeee814f5f6dee6436153dd057c1e
MD5 da45ffe1f8dcb59c24de9fa3e822cd7f
BLAKE2b-256 afe0153625d81f102692a864afe19a7f6d1db3983136e7479c805ace2e9695aa

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc1-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.11rc1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d150f36af0ca990c28b05dd3fa5a504a66424a782275cc82f964611b7279fc6
MD5 a88465306f9e1664117db305fe1a65cc
BLAKE2b-256 90876c799559850ae441065655010b1aa23d51e315f284fac76094ff198fd700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d21ce44cd98a3aef05d979fec350b42a3ea37fd69545e57f91db8209284d6b8
MD5 f138acc265ff91585260f3c310fac5a9
BLAKE2b-256 0705db145a0dea08bcc9e878b1b2b00be694e46b345615cc40de574fdea7e8b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3d2d29bed14d98dcb57539536555d3253acdc6851a1ae3a5723792e8169c9a80
MD5 de358414a5e6f7ac80375abe0c903060
BLAKE2b-256 52154eb6755c489dbfc84b6ae67408d249d12f149e9d5dab551bea8bd4d75002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9e9c208196b8263e90c9552457e04078c6df676626194481f11855ca7ad898c9
MD5 64d79057277e99c7f186ea7a05f70022
BLAKE2b-256 9e549dc53545237eb44980c837b1abb0cb1784dd8777776a0ae5f723b494378b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bde7cc2ee2b98d7b134c62514e7d627ce7fb2acab369a5a115ac965974f2fe8a
MD5 ad853449da8ad15ab6add6f94ff17242
BLAKE2b-256 3a91520fa981c905f19ca638c0e6045c24c245c09c164f27ef5f9463d922cbb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ffbf59bdcecb1595000e4b19c80b898f03e24e1bc040649a048733fa4d8ffe0
MD5 4b0d0ce0aa38f37e1bbe9c569709bc48
BLAKE2b-256 12f78711e70d4817b51ba53127c721559a10ebf7d2adec87804b74550a9763b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3db45e1cbf2425434af1c13206b9d3cf245ac4ac167979818a846f885f76bb97
MD5 beaac5af0f4c21e73f24e7923dade898
BLAKE2b-256 c6fc4ecddbccb1ea2ea36f2240361b80cc3558d6308c39ea9e9de8ed70ac5f6f

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc1-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.11rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bdd6020e177b36a78d020801531b8a814fcac72f8c02274cfe91f852bea34669
MD5 8fff93e87df04a375383281de6316f5f
BLAKE2b-256 31d9abaa49883f8aa82d59897661cbcd925722b6c9377fdba4ef5b1cee476201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e69df66b48f475e0337c51cef2a1d155ca730233030ba3fa2f38f11baeb5e795
MD5 f33a7da44f32fd8910c70856aa8709cb
BLAKE2b-256 5485c0e6b3c2977b520f3c3dfdc19b4f2169fe6b33a0d2d71d7c6d5fa95c90c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d254995eba551d5e73e47b61196859cfe3b56a018ccca20fd0ba3f62efc59ab7
MD5 3349a861eae3317fcbbe26a0a4ac292d
BLAKE2b-256 48177fa56161ab14733ba35ca337f53ad27a8574490be00fa15d17a4e3334b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 3761c93f25a1abb058b5e9c2f0a9d627ca031e054ae09b77288e7fee13a0a0af
MD5 c16ad9db7c045cd8bf1ded745e73d351
BLAKE2b-256 bee6832fa37aeb449e3139b26f031c5766662af9a8b3ccbea666edf5735bfcc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d3f89468d861f33a82306428ee20437c99563671888805f7d40a4fbcf3420570
MD5 75fc75ef92c8653b3f31d21ed4389ec9
BLAKE2b-256 eac97b091ac706b54db95cee7f94a764658d4e51bc81dc094090409c7f131836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 494457927866b73d6515989b40c37749282dacf7b40ce24fe4477a0f7ee4c754
MD5 e83aacadc49d0ff63de059e14904153f
BLAKE2b-256 91c661ae7057c49a84586ffa59577a467a709898c5afbc6b8d054ee4eea85eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3072f4433674d7f2fd2ba89462dbd44d05f16af65403cc5d683cf505776f1a2e
MD5 219e5c9dab1d8b0e0d6af6f44430273c
BLAKE2b-256 d58dd81841e262c404a26c96e3d3211d2a4f3acaf2303bd8a650c97c160fd77f

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc1-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.11rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f17338f132659718733bcf8e56f844e7613010e91a2fac772bcd2ddd32d2b6a0
MD5 712468592d541e22c772330a7fabee74
BLAKE2b-256 9468b1555bc5cb4440adc9762c16d7ee4edb394e43d211e164b0d5dde8bc66d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 caf5a2f8d6a5fc291178141b8c79196b69178d29496e96d7774dd6c50468cf9b
MD5 345d4cc39343372d84580ec595dbe55e
BLAKE2b-256 0c0400fa03e7532841194d872fd850d5ef239ae8e1491c441b72bd35fba404c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e6e8ddcdf40291f6c6cfb831dbce935cab222afac8b7ab6b864a669604aa658a
MD5 27f740b3f1991785d9f7400474c61b53
BLAKE2b-256 495faa41f98ba1da069c304136fd2ec73a2544f383a0a26dde312d1f21d5d697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8b6343e46dc426dcb42c5d5e06b26a6127a969dfb918cdc73575edc4277828fd
MD5 b4efb8f808ca1e943386d7136fc2eb7c
BLAKE2b-256 26aecd2a9a8c4c0d3e5aae7e2ff0f90f6bf140b08b29a896e8558ea90db5a8f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b1a0a05b72034db447e96868534fd6e66060018ce1336d672e649543c371098b
MD5 b754df76b1647891be1cfa39a4a0beda
BLAKE2b-256 3c4103f340a1a3eacf2fb471320c433e279280641259d1f01a2c271a52641f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 255a46d01cbe7fba88daf0cb51ae98f85ae1e7b53ec815a7da895b114206bac5
MD5 28b0754cea728bf856e416dd83b3c129
BLAKE2b-256 6a89b2957ba6b16c09ea85690bcbecfa241a6e933c341f7420abd45de60ccb6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1cc3a6bf98f7098d5203e2b9d98b471d3401a0a2633fd6cc8b5b724cec95e02d
MD5 37155eadf5f6f27fad12c16a7282ab8f
BLAKE2b-256 4fbf80cc0ef0e87f7d2b182414d3ffff3c717134719c99fdf02e5e799b515192

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc1-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.11rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b6d2d97748cbdfaf7adcbf51a4641e762cf68299a71967496c2370207f7d020
MD5 5db1f45b4eb3b88ddae0d2beb06c780c
BLAKE2b-256 c62dca1e87ade328d92225975c5e0bd76aa5dda27e9302f43667553faa70e777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89d95155d8ea53046480a9fa7871a37f9865c57f9183c529a33991cff3113b27
MD5 ef0d8ee677e607b865d986bf04fcf9b1
BLAKE2b-256 e3d3f70c7d11bcce1f17cb85a935923065368557ced2316ea46faf956703553d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0c04da257d1cacd4a227ebcd4988b3f702a68d2ba16fb1440e7ab80ad284e717
MD5 2234960c7de4cec5348bcbc750f3b30d
BLAKE2b-256 11eb3d940f31cb014e9b44801e6d268a4bc8928d6e746407815aa395079328e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 01fdc27083870044fab65c52a1e1d48a6a678d0ad20cf76a6357f1cc7c9a8156
MD5 7d4c67297c191c60d1af93dc90de1903
BLAKE2b-256 e703f466355125687a05e1e72b55247d099503bc10014daf4f15229ddd234eed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ea1809f31c7cf66c1a0a703765cba1334a906e657d24b86600c19540ad82f1a
MD5 2864a9584f51f4f9936a45b3515f13a6
BLAKE2b-256 84f9ebc206b0bfe28a272103a71a9670864c9a9c3c0c93b5f10a1a69194dacd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fceb8c4472c4792e13a29562cbe44ef577f6fe5c2fb117c3af473ddcb904e769
MD5 ab704937827ba721ede662f68b1e245f
BLAKE2b-256 4a8e8b967b2e53c0748a8ee3eac38d0343ea8cb678df7140e03a040f9ee19482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49471fd8d0f11c21c2eeac0964fe16e5ce8a2334f9ea314180caaaaa7977f331
MD5 04359d58fff62e1792509423c51d791e
BLAKE2b-256 03fc1e6af377c7beb85d3581a8b0dc7dc42cead6e6e806b65b66dc7c908f7411

See more details on using hashes here.

File details

Details for the file passagemath_cmr-10.8.11rc1-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.11rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d65a481e8df8e109664b54baab680e6e701946af6fc8cdc47fe90cf48615a17
MD5 f2e78a4c33846b7076680ba3992ddb1c
BLAKE2b-256 8b74e6f430f99d94fc773fcf6fecfdf759d9f765bcdae7464fadcb3d3e041989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0042589f1cbee3a86b6d3d3e204b08f144626a398c29e3044f8ee83145aced1b
MD5 7b39039d0716a59589fc8fa4605c0380
BLAKE2b-256 05ddf3f0c92ed723d788ec57b124750f89f9e818d70c2ed49d4ead96662eff81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8bf505037631dacb45728abacc0d3d1e83b7c249c9832888772448b1fb21c0b4
MD5 5da08efe35b6fb84c354917330746930
BLAKE2b-256 df137a327857b6dfdfb7a529ef2f4148e01a667aa87686e5f6e06969f42e1bf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_cmr-10.8.11rc1-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 368594a65d9f2fa2f640568fda91357f2c2f91c0459bd1e36407f35e9dc0774a
MD5 8f946096218ee387b5cb7c0ffbe469a1
BLAKE2b-256 10f5c95e32c46cb3239b426d3f0fc62ce93fd683efa702dbb81053b4d1a6a43f

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

10.8.11rc1 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