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 package passagemath-graphs is a distribution of a part of the Sage Library. It provides a small subset of the modules of the Sage library (“sagelib”, passagemath-standard) for computations with graphs, posets, complexes, etc.

It consists of over 170 first-party Python and Cython modules and uses the Boost Graph Library, with additional functionality from NetworkX and several other libraries.

What is included

Examples

A quick way to try it out interactively:

$ pipx run --spec "passagemath-graphs[test]" ipython
In [1]: from passagemath_graphs import *

In [6]: g = Graph([(1, 3), (3, 8), (5, 2)]); g
Out[6]: Graph on 5 vertices

In [7]: g.is_connected()
Out[7]: False

Available as extras, from other distributions

Libraries

pip install passagemath-graphs[benzene,buckygen,plantri] additionally make various graph generators available via passagemath-benzene, passagemath-buckygen, and passagemath-plantri.

pip install passagemath-graphs[bliss] additionally installs passagemath-bliss for the purpose of computing graph (iso/auto)morphisms.

pip install passagemath-graphs[cliquer] additionally installs passagemath-cliquer

pip install passagemath-graphs[cmr] additionally installs passagemath-cmr for recognition and decomposition algorithms for network matrices, totally unimodular matrices and regular matroids, series-parallel matroids, etc.

pip install passagemath-graphs[gap] additionally installs passagemath-gap for group-theoretic functionality.

pip install passagemath-graphs[igraph] additionally installs igraph:

$ pipx run --spec "passagemath-graphs[igraph,test]" ipython
In [1]: from passagemath_graphs import *

In [2]: ## Example depending on igraph goes here

pip install passagemath-graphs[mcqd] additionally installs passagemath-mcqd

pip install passagemath-graphs[nauty] additionally installs passagemath-nauty for computing automorphism groups of graphs and digraphs.

pip install passagemath-graphs[networkx] additionally installs NetworkX:

$ pipx run --spec "passagemath-graphs[networkx,test]" ipython
In [1]: from passagemath_graphs import *

In [2]: ## Example depending on networkx goes here

pip install passagemath-graphs[pari] additionally installs passagemath-pari

pip install passagemath-graphs[planarity] additionally installs passagemath-planarity for planarity testing.

pip install passagemath-graphs[rankwidth] additionally installs passagemath-rankwidth for rank width and rank decompositions.

pip install passagemath-graphs[tdlib] additionally installs passagemath-tdlib for computing tree decompositions.

Features

pip install passagemath-graphs[combinat] additionally installs passagemath-combinat

pip install passagemath-graphs[editor] additionally installs the interactive graph editor phitigra.

pip install passagemath-graphs[groups] additionally makes group-theoretic features available via passagemath-gap, passagemath-groups, and passagemath-nauty:

$ pipx run --spec "passagemath-graphs[groups,test]" ipython
In [1]: from passagemath_graphs import *

In [2]: g = Graph({
            0: [1, 2],
            1: [0, 2],
            2: [0, 1, 3],
            3: [2]
        })

In [3]: aut = g.automorphism_group()

In [4]: print(aut.order())

pip install passagemath-graphs[homology] provides homological computations for abstract complexes via passagemath-modules.

pip install passagemath-graphs[mip] additionally makes the mixed-integer programming solver GLPK available via passagemath-glpk and passagemath-polyhedra (see there for other available solvers).:

$ pipx run --spec "passagemath-graphs[mip,test]" ipython
In [1]: from passagemath_graphs import *

In [2]: ## Example depending on MIP goes here

pip install passagemath-graphs[modules] additionally makes linear algebra features available via passagemath-modules.

pip install passagemath-graphs[plot] additionally installs passagemath-plot.

pip install passagemath-graphs[polyhedra] additionally installs passagemath-polyhedra.

pip install passagemath-graphs[sat] additionally provides SAT features via passagemath-combinat.

pip install passagemath-graphs[standard] installs all libraries and features related to graphs that are available in a standard installation of Sage.

Development

$ git clone --origin passagemath https://github.com/passagemath/passagemath.git
$ cd passagemath
passagemath $ ./bootstrap
passagemath $ python3 -m venv graphs-venv
passagemath $ source graphs-venv/bin/activate
(graphs-venv) passagemath $ pip install -v -e pkgs/sagemath-graphs

Download files

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

Source Distribution

passagemath_graphs-10.8.10rc4.tar.gz (2.3 MB view details)

Uploaded Source

Built Distributions

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

passagemath_graphs-10.8.10rc4-cp314-cp314t-musllinux_1_2_x86_64.whl (37.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.10rc4-cp314-cp314t-musllinux_1_2_aarch64.whl (37.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.10rc4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (37.1 MB view details)

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

passagemath_graphs-10.8.10rc4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (37.5 MB view details)

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

passagemath_graphs-10.8.10rc4-cp314-cp314t-macosx_13_0_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_graphs-10.8.10rc4-cp314-cp314t-macosx_13_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_graphs-10.8.10rc4-cp314-cp314-musllinux_1_2_x86_64.whl (37.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.10rc4-cp314-cp314-musllinux_1_2_aarch64.whl (35.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.10rc4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.2 MB view details)

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

passagemath_graphs-10.8.10rc4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.3 MB view details)

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

passagemath_graphs-10.8.10rc4-cp314-cp314-macosx_13_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_graphs-10.8.10rc4-cp314-cp314-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_graphs-10.8.10rc4-cp313-cp313-musllinux_1_2_x86_64.whl (37.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.10rc4-cp313-cp313-musllinux_1_2_aarch64.whl (35.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.10rc4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.6 MB view details)

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

passagemath_graphs-10.8.10rc4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.4 MB view details)

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

passagemath_graphs-10.8.10rc4-cp313-cp313-macosx_13_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_graphs-10.8.10rc4-cp313-cp313-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_graphs-10.8.10rc4-cp312-cp312-musllinux_1_2_x86_64.whl (37.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.10rc4-cp312-cp312-musllinux_1_2_aarch64.whl (36.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.10rc4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.8 MB view details)

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

passagemath_graphs-10.8.10rc4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.7 MB view details)

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

passagemath_graphs-10.8.10rc4-cp312-cp312-macosx_13_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_graphs-10.8.10rc4-cp312-cp312-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_graphs-10.8.10rc4-cp311-cp311-musllinux_1_2_x86_64.whl (37.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.10rc4-cp311-cp311-musllinux_1_2_aarch64.whl (36.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.10rc4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.6 MB view details)

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

passagemath_graphs-10.8.10rc4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.8 MB view details)

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

passagemath_graphs-10.8.10rc4-cp311-cp311-macosx_13_0_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_graphs-10.8.10rc4-cp311-cp311-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

Details for the file passagemath_graphs-10.8.10rc4.tar.gz.

File metadata

  • Download URL: passagemath_graphs-10.8.10rc4.tar.gz
  • Upload date:
  • Size: 2.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for passagemath_graphs-10.8.10rc4.tar.gz
Algorithm Hash digest
SHA256 2b203ecc3dc3c24de376f5a7d9df305a5c47f985ead23dd7992895154096f6dd
MD5 edc6c2556b1e9c4b4cf2a2b9abe5bbae
BLAKE2b-256 c52614f1c8cb354e4f2dbc181dfc9e7be4c5b6cbf0a9d57fbde6fd2d6dfe6b11

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa9dc91aed2128ba8056d0ba015ed6e66ad82ee8f792bb608476d0f61a60d25b
MD5 7783f299062e620532dee68d75adbf37
BLAKE2b-256 303a48cdbddcd428d5d648a3daecff6cf9f986fe239095b124be2ea378fbe5f9

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26377b24c4bce63814eb35a7e655d37e3365c69c28eaae1102064f0854a79972
MD5 4c5935692b264f096d4dfd3682e1626d
BLAKE2b-256 2901d218da46efa3d962dd2fd837c7d313945220d7c2be68b190c08beafdf2c7

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b2b061653782fe7b0bdf834d9fb98c9ac091984ed84ea85d2aa738e428f5425
MD5 da93c00164bb61a70676b13a9978cbeb
BLAKE2b-256 8d5454ce6744db5d94ecb50dd2841a043ec673bf33c92ee791036d96286c5539

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6de4fe1f5163038ca80702a17ef38a81e2db43b96b26ae4623a0fe0a31b0edfe
MD5 d68e2967db43bc7977f489d86387aabc
BLAKE2b-256 d40f737e6ddbe4430e68eef20c49fc1652c78c9a2139655eb8967906f089574f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b367da0fe2eea803fc74cfb65c044e8f1e524936ffd3f2796241e5925194e9f2
MD5 f03120656e4263a463bb4374701a5554
BLAKE2b-256 0ee956e5acdb7e2afc7df5186d645bd6b01bfd2961929688bb841740573d5059

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 253ebba4c95730426c6296836184c76226d65982a5bfb0b11870134c82622b1b
MD5 6df5a06fe3054cf57df8a36bbb6c1177
BLAKE2b-256 3f081e65fb4136515ddf2e2c09742c2b9b345c39cf5f82dfdd1568de9bb5aac5

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebd112faa314e0ec8ecaeec218a35c72af5c709e1ac77cc86a0dc3ef07bb0ce7
MD5 3ea9dbf1cbf44f525017a2bec64554e3
BLAKE2b-256 2ae07c590e1cfd2930e5a3ab17d0cc70257eda84809857a8f2f201a23d98a68c

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be9224e9622978991e8b3edddd53bb05d342a5c0bed0d7c08ffc778e83d521f9
MD5 32db73028c83c97ed8e1967497ea640f
BLAKE2b-256 ce68a0e1318a5daf355fdf18d3220a2e993db4ab3dcbd80eee9bf8a781e577d0

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92d550f4b9f9747c1e4bf6ca691c83f389b7e237af22672df30ef2d9ca7f2022
MD5 ef1845d0a912f163c157869b494973db
BLAKE2b-256 a3c40536abe9a9ccc890c34883af4e4266289e24e0cc64b7f2d738b14b422009

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01345e8d653a9df3a7ec6a500612f87f711167c4faf8716b4eeac700860ff64f
MD5 d90198bba9d8b270b53a2965a8d753e1
BLAKE2b-256 a1b14d05509673ae281383060c570f3d74207dc7122c477d96b60fdd29453e3c

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 52d3d38da1ad2eace47c63e29bbecaf47b3e137d34f0176708d7389548a359bb
MD5 4b9d17bd05f4060310e226f5bb544e7d
BLAKE2b-256 5a99b6f7ceb6b00a86c688d6e060059c3939c7c4b8bfd4629f0a4ff4bac65e31

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 965247557a51248712ac9af1ef5d75453182508ab89b6740e92e332d0aa49382
MD5 5030ca907b6087296e36af140dd6f4da
BLAKE2b-256 c2a0b7def9e067aa284bd0a3502ed1df983c3326c57c9ae2f5b491d5f1273832

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d554e0aea150407e6ab9e36365f9a3df191e7da9de9a76227c86c2ba579c3b8
MD5 55095081f3e9862e9804cca4dfc152f4
BLAKE2b-256 d95bfaf8c3a506427153a0f4165fa0b0ca133e0afe82db2d6a325517af58e719

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22a1ffa028917a7009eb4bc10d4c84a93b07ebda6ebee390a39c06e7df1093a0
MD5 5e5440f5dfef7b5214d616d323f017dc
BLAKE2b-256 b2f610d733d5f49db46335d8a185c576ea6001484df5503fe7efd667504620c4

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1196ae6d03daf683a30e7c2c4d3dcd3b06dc575b20bdb5b5d34d011f4b541c8b
MD5 a1fdadea3c01586941f24df96944324e
BLAKE2b-256 0a863e7c0c7191cbd7320eabda85ecd4fc24ac09e5f37d2f85f628c06753de82

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b3429b268941a1810b581dfa01287b3be22d4f0b1a2f92cf0ef1b809debbd170
MD5 767d57e71cd713d22b3ac217779f9821
BLAKE2b-256 3cefc2c2c6475d9fe2513e970abbe9b2adf0375999957c3bd45f38195783f153

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 83a467e4e8c50f785241f44e908a34e3e27a95148cdec3e4feef07d849b95906
MD5 d3ec145d7fe592e541a9b1671bbd8202
BLAKE2b-256 d1a878a3f5e946409b95f207f4dd41ab2d745fb4268db4dfe0f456bd09687c6b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 3af33eca262377b7a99d0d8af4d1abe4a8713e7348d63cb358603303d8d1c5c1
MD5 47ca4a169b5a8fe7121ee832fea24658
BLAKE2b-256 30cec3cd9d486f1cfb9e928618df187d6b4296e066cb30b9f8988230512fedb7

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e0bd480cdd9d7cee5425598c41dd309d0bee6bc5dd7c0435325fe44756b687a
MD5 c5d3e187552c241f008d4f44c18d88ea
BLAKE2b-256 e04c665ca40087a6a3356c999bdde4a945abe9ac1b2c7ec7da3cb00c37c4f4f6

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1262910fad6781360efc641cb270f8dcf14a89786825e60ef6bfebe28fa41149
MD5 6a5f771fa4a5f3879a6f0cd64bf78eaa
BLAKE2b-256 bf6339131fe5ec3761cfd4ca21bf8a21cf85de5b7dd5d5a257f2b45f45e29c18

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 910cf2584f03085e3218c7a6a07cb74d9af4698f77d22f4660399ad4d2784add
MD5 6a7a1b1e078c3413230d38228de5ad33
BLAKE2b-256 6b8e8dd52f740dd31eda729ddb7ddb9ecd0c4a3da622133ede52a4057348aea2

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0196fa57b6517ac4001f6c28def308f0711ed78fe7518dc476faa0ccf6fd2ab
MD5 1dfc4684acdfde03ab54e883cdd9bfad
BLAKE2b-256 062a903daeb1e70a7422db515019bdfa42b9e723339e183cf3c713f210b3f096

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5875dc82b0129ed056469b72f7cbeea18c1eccdf4de2dab0ef4cbee9884420a7
MD5 58fdfae7ae24d2df660f2566a1a85b2b
BLAKE2b-256 b0ad3683d9a4bd95ed27810069dcec4c8626dc4b0f445692b9d2c70011a33032

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9912b12ab96e55fa6489ec62a042c31e572d5d7ed4525069f1c949628fc86f0d
MD5 ded1d455b1e86bd4bcd71a3ae5add2d7
BLAKE2b-256 9bbdc73f1776582c07b424556f8aa3f9443a7106476ea9900f240924b837753e

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 940dc41a67730e4e4c8305ff14ca454361ede60074e6a8c3762b86985b738954
MD5 af2167b66899d873821d43d3a2a4f20d
BLAKE2b-256 8c74fa3a06fcdc656c12b30d483c0d1035bb92aa8cb7e864e1d1d3ba6beb7706

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53de72268566b46b94695dc960977f0935a3aa982c731171de50f2fbb600d2a2
MD5 85248c15f4354d6deac529f980117d84
BLAKE2b-256 e1ecc81071bd408ba7f878b470639a5b6bd5c14fb7affdcd2e6f946d75fbc60b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc499478bf844b78f268a45efe39961d8723847dcaba1bfb4ac8139022e89488
MD5 2a873b4a76383e8cc1650a059fde95c1
BLAKE2b-256 0898e93904a0c959edafea107c20a1ab074bdbcf657634d8620d93cbbd745f21

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4de1878b711b3def57aae15ac493000de1d94681472b62404010447500cef331
MD5 b308a4a1a2f3f1dbfb7c3c04c3664420
BLAKE2b-256 69d94350eda312b54fdfca0703a1c9245cbca7e75c093a6ee3cf42cd314327b0

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 10761708ced58bb9fb1de72a70a45e6ef6443d9d6992912ecc973e4fcf6d7e3a
MD5 e3ccbeeb56f149da0ea27e01adeb2c67
BLAKE2b-256 0d1c9938b49a59f4cec90b2986eb1b8eb81734389c1a44d9366fa8bf861ee786

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.10rc4-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.10rc4-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 5d8ff643c80dd3fd0b57f317d79ae3debef441a50465b4758261a156315ab37d
MD5 8cbf79942c274fb9bfe47acd45cb1e0a
BLAKE2b-256 806b48e85688b50c5e5bc30b49e745294931f2278a494b7ec67070e666d3d512

See more details on using hashes here.

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