Skip to main content

passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers

Project description

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 --pip-args="--prefer-binary" --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 --pip-args="--prefer-binary" --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 --pip-args="--prefer-binary" --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 --pip-args="--prefer-binary" --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 --pip-args="--prefer-binary" --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

Project details


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.5rc5.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.5rc5-cp314-cp314t-win_arm64.whl (7.3 MB view details)

Uploaded CPython 3.14tWindows ARM64

passagemath_graphs-10.8.5rc5-cp314-cp314t-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

passagemath_graphs-10.8.5rc5-cp314-cp314t-musllinux_1_2_x86_64.whl (37.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.5rc5-cp314-cp314t-musllinux_1_2_aarch64.whl (37.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.9 MB view details)

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

passagemath_graphs-10.8.5rc5-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (37.3 MB view details)

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

passagemath_graphs-10.8.5rc5-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.5rc5-cp314-cp314t-macosx_13_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_graphs-10.8.5rc5-cp314-cp314-win_arm64.whl (7.1 MB view details)

Uploaded CPython 3.14Windows ARM64

passagemath_graphs-10.8.5rc5-cp314-cp314-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.14Windows x86-64

passagemath_graphs-10.8.5rc5-cp314-cp314-musllinux_1_2_x86_64.whl (36.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.5rc5-cp314-cp314-musllinux_1_2_aarch64.whl (35.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (35.9 MB view details)

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

passagemath_graphs-10.8.5rc5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.1 MB view details)

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

passagemath_graphs-10.8.5rc5-cp314-cp314-macosx_13_0_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_graphs-10.8.5rc5-cp314-cp314-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_graphs-10.8.5rc5-cp313-cp313-win_arm64.whl (6.9 MB view details)

Uploaded CPython 3.13Windows ARM64

passagemath_graphs-10.8.5rc5-cp313-cp313-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.13Windows x86-64

passagemath_graphs-10.8.5rc5-cp313-cp313-musllinux_1_2_x86_64.whl (37.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.5rc5-cp313-cp313-musllinux_1_2_aarch64.whl (35.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.3 MB view details)

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

passagemath_graphs-10.8.5rc5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.2 MB view details)

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

passagemath_graphs-10.8.5rc5-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.5rc5-cp313-cp313-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_graphs-10.8.5rc5-cp312-cp312-win_arm64.whl (6.9 MB view details)

Uploaded CPython 3.12Windows ARM64

passagemath_graphs-10.8.5rc5-cp312-cp312-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.12Windows x86-64

passagemath_graphs-10.8.5rc5-cp312-cp312-musllinux_1_2_x86_64.whl (37.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.5rc5-cp312-cp312-musllinux_1_2_aarch64.whl (35.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.5 MB view details)

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

passagemath_graphs-10.8.5rc5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.4 MB view details)

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

passagemath_graphs-10.8.5rc5-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.5rc5-cp312-cp312-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_graphs-10.8.5rc5-cp311-cp311-win_arm64.whl (7.0 MB view details)

Uploaded CPython 3.11Windows ARM64

passagemath_graphs-10.8.5rc5-cp311-cp311-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.11Windows x86-64

passagemath_graphs-10.8.5rc5-cp311-cp311-musllinux_1_2_x86_64.whl (37.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.5rc5-cp311-cp311-musllinux_1_2_aarch64.whl (36.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.3 MB view details)

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

passagemath_graphs-10.8.5rc5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.5 MB view details)

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

passagemath_graphs-10.8.5rc5-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.5rc5-cp311-cp311-macosx_13_0_arm64.whl (7.6 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

Details for the file passagemath_graphs-10.8.5rc5.tar.gz.

File metadata

  • Download URL: passagemath_graphs-10.8.5rc5.tar.gz
  • Upload date:
  • Size: 2.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for passagemath_graphs-10.8.5rc5.tar.gz
Algorithm Hash digest
SHA256 b6fe77ce0f4c0164a60f93cd390bccb8ccbca6ace8068e972e908ace7a909041
MD5 db52f3c24b8101e31d5d284bcef79fa6
BLAKE2b-256 51db59f8c32d7b00216739ebd578fb1ad0cd1f9571da1bb984bf74e99ebe6489

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 879eb783c449de3e25e171c3f9818f80f7b6f505aea87602c1c9f9443cb93be6
MD5 961f8fe7c0f68c1c0da06acef2df59ed
BLAKE2b-256 87d4f27740cff99a8c104108ea7a6ac646f886fe382dbfe9043e0606afa04bb5

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 42b5a22a07ba21966827b58be053c0b721a2560b4e78c078c7c1271e226be40d
MD5 4ad3bddb2826a07082eeb32a0d088671
BLAKE2b-256 c74fa193862c4bf8c128bd74211ec5d49e2258f97aa78f57577e2c43311c2690

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df8d667620c42853e83b3c1713b861f5b73d00158ca5af2fc0f83f0f4c463931
MD5 e93cd094b69a8efd68fc779ce3d07b1b
BLAKE2b-256 7f32530484b5ed7539f1839063f256b36ae0eb8d5a733d31069a9d6cc43dc1e8

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0968c702eb95f8918ecaf5a4da477127f530b18f0b49fa80beaef96a48b90b77
MD5 e04ae8013f23d3d68e0dd380b4a72ce9
BLAKE2b-256 c071869881f53dce468b0e84c98fa0dd7f502961a6f7ad20a31e3541c1e688d7

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01146f4127c08992b1a69953bfd3d5c58b215afca1223693d5bc5bb436cc3aa1
MD5 acf4b6987a1389dfda496af6a1524588
BLAKE2b-256 567bae71459a65e9b80024ae758fcbc7d650342c546b57981913da7464472cfb

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1aa818fca74cd52891995c43573479f78cc6d88c5b714f0108a16e932c9c438d
MD5 3f64373ec69e806ddde64bb630c4efb5
BLAKE2b-256 d5903fe7ae62ea5829f0b9136c89ed126464a585f67c9059a07e54b9a4542291

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 abea1c11ee8036060344c280b99e7a83a13e2f1579a49ac9eb14c273c29ea063
MD5 ad898974114437bfa9c790b77ce17bb4
BLAKE2b-256 c57ba6cf108f779aebc3f118a126a7151d1c736d536159ae5a7bca734bcdb573

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 95877d51997380436828ee8b3e28bc851a90613dec2a0e6f023f1dd1f90c8b61
MD5 718df15186c0f20dfbd60be879dbf9b1
BLAKE2b-256 8426e1bd56895e33ef8be14702f1d33786cf06ffa21c53fe76123ea81ad99110

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d0a3f60f1d5c018883bc3159e29b070e5b1a8d6e00a1377624520ae0a25c3760
MD5 3eacbad22370f4761f6294f70135c7a4
BLAKE2b-256 083e62241d8d04d3069d23e8652790084c20a4fec565c22d03d9fd6d2fe7ccd0

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4ad1dd27b5ced10d8e3185dbc78b2095cbcbe0d3078d145d5c0b603cc228a0a7
MD5 96207a5119aa64951e77bf90c2986203
BLAKE2b-256 6af3a5a70f58a5289df40be8831945a390c2baa3bb344ed43396ffac322e8e5f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33e5bc4a339563818fcccc03aefd15ba5df0c2153abd8f0b36054bb1b81fa912
MD5 ead45a1f82516b12eefdde435340baa9
BLAKE2b-256 1f5c8fcfc5b4b9eb340ea016200f0e0c3f076bfdf1176872f82ec5701781f35f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 906be1abfd581dee1e0176498b200e5de418599c8db76b1b81dfe00a1c02eeaa
MD5 7e5b88d634c7edcc83f77008fa361400
BLAKE2b-256 1c046e1d37429dff3c2c3574c545defefa555007abbdc4e12609e73e0d97201b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3e602fc4d601632835d289a71677faa2dd201b7d82c94f4c8f34fc65d9e2e6f
MD5 f2c5f6da683963f5b786a7c811adabe5
BLAKE2b-256 a8346e8a058b8bd1f259e09a375a6d5fb771745dda74580e3e6a62eaf68840c2

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b4dc231e2b346b11e8be7421a6ff1d464592a1b9f674ae3d6aa33f0b9477b6c
MD5 75039bc91c06b981da61879ce297b128
BLAKE2b-256 fae60f7045f7d54c8e0829ef985d8b067ebf001bb178fc732e995fe3582db5ad

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3f01c1523b8222beffa3973c4825c8b337245c686feb2301a3df7bae75c5ef9b
MD5 76fecae93bf8745222e2d81a29394917
BLAKE2b-256 b592432367ac3b4effea311c169008dbdfd049e14cfd1d09367170974b0137de

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8ca948bfaf86b42d1e3f2f7866d3846dcdbbdee02bbce4e5da585acdfe5bb52b
MD5 78b3bfd6792eca8a5e85dc63f0bce771
BLAKE2b-256 798e62c5b8ac6a405c40533a1d30b840decf8315aec50df2d1c288251d018afa

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e812513adf6c6a07080c1d970b8829d33350ce9669bd70d8176cc8785ff81ba3
MD5 885ff3db059a3b87ac580d92e2adbfe0
BLAKE2b-256 a85fa5f6a3cbd298316cb9e74d47e609fd9c9d952424b719fc6d81513eb3b076

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a53ee7bc4fb7e21a0f289b69fa44300b3214f6f35420afbccfcc9fcb350160c4
MD5 041de9ebdcb12956a6917558a7fb96b9
BLAKE2b-256 f2efdd0ab0e06033ba0d153fe9848467d5b038c1147a801c3109804b64373450

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee50f6ee2d2ee3af7a362ae67a9f41dfdacef8e9f2750299a43b2dd830416881
MD5 50ebd2b4fd5b5ffe1d5dc89ce159daad
BLAKE2b-256 f9cdafb816c4c6ea40c6e03c18acd8e0b7e8903cc6e0b269f1787dc0da6e5243

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31d3e5fe65609d16133e5d8ac260673fe9c4d3f163a33e5359d2c50b92b46e8f
MD5 d913d420d3226fa0e1f2a88c983b2c39
BLAKE2b-256 5c524c98753849c3349ccced13a196cb664a7b2c71ba9b9cdeed13f1b1389430

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6512d1ec379e6fa3e8d937d97567e5d8fa0fc4764e2eadd453e46a7fc12d75da
MD5 efe23c5d3d6bab9937a13ff10e3c0f66
BLAKE2b-256 fc5cfc3ace51f8b64425ba25c844cf6d55a87226ce3e92cd998928b2ba298eff

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 839d96b882747c1cdb708c2f20203920c565168277b1dbf860b4528475d2a5e8
MD5 f4428403500e00e1d4a9c6d735c2f125
BLAKE2b-256 81b97f51de92fa926dd990a48c6d0b04cc8ae76c3a81d90c4593e3059abab09d

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0a7e68c4c017823be494d913124481d51e1ca1865e98c5cb870d3d96e6cae73f
MD5 5910248b7e321ec2b90bcf2c3d385e76
BLAKE2b-256 00d88664d2b487302d2341370a00770d08edc2de15c7c1140dab4ae689245154

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 dcbf488e03242c338bc3ad38a04c8b04c3c9d81ea4076a6e9e1b23adf02347eb
MD5 9d44b55412dd535b3810f4f4db6ea959
BLAKE2b-256 5d8d422f1a1bb04e17f037fbaa1b5cd0af2aef26421a1d0db7da3d9c0c898f3b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 26e99ce3a7a0bdcf653185c41fbed94af8098c63de12668bb3e84c4b3edb5194
MD5 dfc5b5b9d504b88527a4bc20db1d7ee0
BLAKE2b-256 307c1ef1563a3398842c11bb10303307a9c4bd8a90841d8284ae61ee8e92d86c

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0a7a137b5dd144716ec61299914910aa0fef48f5b7fa7ca8d745123b78811702
MD5 fc8c73c40fb3a850fc6075683afee721
BLAKE2b-256 f28d07207941278d1a12be727fd8a131f06aec08b44928ce266d39c2e41f2dcd

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b2a763431d5efb2d60a087bff434e15ce555a26e1783611bdf5e01fec1f3024
MD5 4ea4e5cdc080faafa11cedc20108d1d4
BLAKE2b-256 6a8d6b717faccdbad28aec1f5f67ea7e5b591bb0dade2a9ee0cfac962ff77ec5

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a23c3a53470829977bb330571366d3d037cae5ad441f08eefa9f52ebf24040fb
MD5 0e96e6b9059ad57f2d45de89887bff48
BLAKE2b-256 7c062edd36ae6768526b8ee64281133e6ac1cac1ad86571d120383a98464c75f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a00ee078978755056d738ac657b1091227bf7a51c42b1b86f44963e9e47d3ac
MD5 8b5de4e60dd7a0e7723481cfa5caa6bb
BLAKE2b-256 aaea45894bd6b2560eeccdcf7d25aceb932dcff4bb21beb19538d954a57bae46

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05e61250a081f17cdf26d4901b141b3ae09690c4d95718a3e3ab7a244fb88840
MD5 cf48793db21ebe26fa25cbb9486f4d04
BLAKE2b-256 cef913340e6a1a05c2970909cb9402a4769c2e3a483c4bd355860df39409a53b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 203c1ccda14dfc335f5cda9fe4c2aaff94435deb800762bec596ed7e9b34cebf
MD5 b3a23aec78b24218c8c42f9cff883efe
BLAKE2b-256 a9be2ccc05b6054314b3d3f23daf09d79248baaa297b3e4d203e997a1d429fac

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 d3d65ea6dbf96ef7c814ecad361b0718deffe437fb0d02b20f6b113cfeb91cef
MD5 e90f7f2e186db1f7acacaef9550f0e40
BLAKE2b-256 fa95a03bde5969e6a8522c257f74e18aaebaa0f5f138e2b2e6893806d5649e86

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7c44a19cae214853a2e6ddfe6ccdc40a5e4923647969b88840b415889cd11e2c
MD5 b77e299fc7002bbb6fd19d7eee8c4987
BLAKE2b-256 daf159bd84983c6511e15725f2a825400d2edca8d3c6c9db01c117da9ef3ddb4

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 99e25c9180aa3b8df06a6ecd6169e88438252c340bb0f71c54c3fc97d875ca94
MD5 c31efc09141ba92d5fad99c8ba780b37
BLAKE2b-256 d3149259e13c7e352c0dba07be399fdc47821b627339ff07e027293d279bc694

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb87380dc6145676882dcf40cc0cef25e91e5454103fa6cd1b31edd673df4292
MD5 481da0d1adacde65f66f0f571603502f
BLAKE2b-256 0f4d8b49a5f9a681e2e3efd0da5f4f09e5e72882d17b7028397fe87787348052

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59efaeba6a6dca7683edbc280644566677a3886d7118c9b706cc7d1576031a46
MD5 2fd613c5fe0cd533c1a02a1edb6c8d0a
BLAKE2b-256 969ff4630588f74198079583d92abb8e2106e7f3a8aef320ee7a6cb444122b48

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2f92e9ca2fed1ab735832f588e4eb003eead3fec2573bf8d7e84ea1fbea8407
MD5 63497a2f5133c9b4707c09e05e0c1aa1
BLAKE2b-256 324c33da259f4fbf9eab85030fe028b86a7c29a92b2f2fcd289f86a020708bf8

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82089ea9a071d9251e8211e9a1403993491d38aa7446d9525e492076d95bd060
MD5 47a47818df718cf8417897964315d170
BLAKE2b-256 15d5c62096cd866b5f1d8860ddfe0492db56959b69618da00e58ad949bbb326c

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 43e0a00f7b7af7011ac4d82d99c33654b63f785fb048f9468ffbfdcd1c8df816
MD5 610559c1310a843445cef30c9d6f76c1
BLAKE2b-256 78457e1a848983ec7ff1ee36e1a13e24f0d08b868aa0dd525019667640174be0

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc5-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc5-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ecfe2dc097e8bc024b861c111b7fa968e6bf03e8a3b96bf5b6861cc2b7ad61f4
MD5 d3cf8c9b59a164df73b9612989101900
BLAKE2b-256 19459c7ddd6386e3952870616e861445001464762b3b6fd991b473ed8996b22b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page