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.5rc2.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.5rc2-cp314-cp314t-musllinux_1_2_x86_64.whl (37.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_graphs-10.8.5rc2-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.5rc2-cp314-cp314-musllinux_1_2_aarch64.whl (35.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (35.8 MB view details)

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

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

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_graphs-10.8.5rc2-cp313-cp313-musllinux_1_2_x86_64.whl (37.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.5rc2-cp313-cp313-musllinux_1_2_aarch64.whl (35.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc2-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.5rc2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.1 MB view details)

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

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

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_graphs-10.8.5rc2-cp312-cp312-musllinux_1_2_x86_64.whl (37.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.5rc2-cp312-cp312-musllinux_1_2_aarch64.whl (35.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.4 MB view details)

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

passagemath_graphs-10.8.5rc2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.3 MB view details)

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

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

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_graphs-10.8.5rc2-cp311-cp311-musllinux_1_2_x86_64.whl (37.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.2 MB view details)

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

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

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: passagemath_graphs-10.8.5rc2.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.5rc2.tar.gz
Algorithm Hash digest
SHA256 01ca632a6f815c712cb3e0b5fc2b8cf5e18c29576e01a9b4b979318cd8f57d2d
MD5 f6f0caeb6e666a8961978d7c80f9187d
BLAKE2b-256 7da910a64a1d21692eab220755660c7597860f6c2a5e9368029788e319e8082b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81429e10b419158509cee1922e0ebda254a46104a6852cad4a161c829c3eb640
MD5 ab55177c43fb88fca1f0cc8053e4840e
BLAKE2b-256 ab1f156568638592f545bdfdc19bc2a238f99a142390b851265587d76d581588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f09ff7eb267840f859254de064db3a00dd98a73c1f14b58d86bbe221599c01a
MD5 cdcf29eb5d68872b295b775e184fda39
BLAKE2b-256 e5abd2a97449c4cfd09c0945bebdd654a2029730ca1b2f505aa47e1a9b6a1365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1dc5ffec5709df09d555c678a4a082962b4dbc2d0927d192c85dabaa6c67a0ee
MD5 c71897dc35e1c53e92f499a7c2f14b12
BLAKE2b-256 9a676202af276fb8c7a9b5f46aa3e3011b410c06452ab6cc76fcc5c695656bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7196d2e4903b310cbece71dcbbefd874b1c5a62dac324fa92f864f286ba6a928
MD5 edc322bc58d313aca2124d2ffb1f906f
BLAKE2b-256 5008fe78626f26e52a8d4fb0ffafa73aa0141d4fba95f42e165cf2489f8a3e9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a848e6695227f43955a87131392f284483ed962ec47fc9a53651fafb3481f13f
MD5 a7d88426098eaf2ca80a60d8d4e13354
BLAKE2b-256 c91e01719c7d3521ff35a084f761afc0aa16340ff3d95ae760c10d134ce89cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b9f0637a3f8bf663782726b05262f62a21dd68260f81ada4d9168bd95d50129b
MD5 a1c855d617e05bed4d87425a3c80393e
BLAKE2b-256 1ca53e45e1e6b47083ed6ed2ef4536ae58adf88435e0c39bd5b51b6901a2c3c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f0eec28332b2a4866b24c359a8505a0cf8c07d160d0d3d888a7b31cb6468eb8
MD5 95c0d67fc7b31077fa27213048d51a5a
BLAKE2b-256 3e3603d389ebac899a094e1d251b05cf63d73d3b5127b0d4de2e9e8408403b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10fd5e6da2e31b7f367ec80d5ea6fcc72bdc3eb1838b148307fd32b9dd88e1be
MD5 be67ae6b671e1ed6b09368ba9558ef66
BLAKE2b-256 9228e8060634d1bd8a4c0f178b243ef8be61ed10a96449de55be8519143cbd11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b98ff6db3bae9d4de053b48a78d4403b1e4c98de12fe72d34c370c45f1f76b6
MD5 5cb49aa53d69760e145724d049fcb22b
BLAKE2b-256 58732bfa00de4d96e2c06f7d578cbf2a61575702843e3834cd5a6b52e8488ab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 102deea6aaa5376a5cec27f8dc0bd1ca065a57177746c19955c8d9610b4b8335
MD5 1e2ca8fc1ccd44843c6e468d658fbea9
BLAKE2b-256 ccc822a7ee95e5e77f12b0c2e6bb36006d43cc97fa1cfd6b376dcdafa93116c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6bfd1e5eb75baa4126509b490b73049447118430f18c409e1959fcfca8b1d0fb
MD5 a09e503212f1e8fbd98e37fbde99b1b6
BLAKE2b-256 3cc94ff041f0ea490b32aa5afb64972d1479c01a004c0a5552612af5310ea438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 da1c962850a0beaa12dd1eb909bccf5e5f3f6732fa0f4e66f57c231b16530ebb
MD5 e6911796600bdd2f473d8aacaea26d3f
BLAKE2b-256 93d9d676dfbcc14f7e336c0ceb22cbe248093a34ec5a2b7f266d568496e30a11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 366be2a847037b29d0c126379333191e9c90d71f7e9518b0f411c680661596c3
MD5 bab9e2403a49fb26a69dff2b85b54f9b
BLAKE2b-256 a121dd2da18ff6eb1f7c6c8accb043b96b81201ee09a82d504fe89048d100a76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f15011d79764cc30a2f67a123cc0d55d9812147a6c4028da7cb1b2061b7a6e89
MD5 3299130e4f5ca0a6700894d23a2999d8
BLAKE2b-256 156994f7376f09ddaed50470330fe99bc22fa69882fdb09c96b9e83e324c7769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4993104be580a5a08a2751bf0d08bb49402620fc14db2db3197c47b0ca06ca6c
MD5 5659fad5fda9e8e9d56072391e0e7c39
BLAKE2b-256 2ce9f9aa057c8fe7608b473e8113b9eda682e24d14edb336aa7b14bd934ed00a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 912362349cae77eb9b260685a07af9467171596e97a97e7cec235915a79b4618
MD5 9064283b271e8d4fb79ee001e86cd95d
BLAKE2b-256 f95863ab2dd066568abf48f8b02e77b5597d5782c862b051847bf57ab631b0ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d4b14db041ba65e785e0fb74521dda860aa2c6b0eff557937aa4e0384d04e368
MD5 b2520630bf41ea85366600d0b61650fa
BLAKE2b-256 5d26a709314c74ced81624cc1174077a4065c4c1871ac7e151da10b32ec63464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f92713039f4df1aab15e916b590840c95d6f998e44c610c31b82e62e074560d2
MD5 12e0b9ac25b5031815350706ffeacef4
BLAKE2b-256 4d8f623658c00eb17546f3d465db45c5e07a2320c2ab03d1112b1ebd5f3d470f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1395f79b45956117c73f9ff45468724441a59d201d4d3bcb11d0a707b4e657e
MD5 c4022a611358ab220ec5666774ba62f8
BLAKE2b-256 0d39ef0f5687ef1539f32f7fe8e5f945f3b349505be99357c91d948636f679ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8682a5d5ba4b1b73fda7c6a9b4664cb5263391fb04976a753109895d5781b1f
MD5 3f09537e17ae3c30da3310a37d3bbe55
BLAKE2b-256 ddf43ac1b3be359ecc4280ba44bd85542b8e0cf29411730f44e299fe2948346e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4e257149cf0c78a8416e9874d46da53a0e98729487ccc1808fe4873ac238a92
MD5 85d1c112f75452944f1d2c797026c8f1
BLAKE2b-256 3601a909958c782bf9be6efceaf3e80132b151b1360c7e78a7450012302b0fdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec2792cfb844da4e38c720701518f45d0d452d826c24334157778d0d77db71ac
MD5 6bd9181823fe7ff5f986435cf4620e46
BLAKE2b-256 9ae796d618bed004c1c4f7a685c154d2b88767b083cb98730d359cc3ce6fdc41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 22bad1011ae3144406c800e6b80b89da328048ed08fec7ce9d618079d7ac3e10
MD5 f07b53f62f7646f59b0161202e30d06d
BLAKE2b-256 3372fbb165eae7e40db18225ef6a3e75ef8e419a7b6a8e0b0c2af4c35f96d44c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b602e52f413624d856a2319f8c4854f5703a2d713a624e0bb4eb41f543037f90
MD5 2a50e45d87e44c0a1cd8876b766418b5
BLAKE2b-256 67a825cb54202dc1c6ebf5d9ff35a0373fb079424ae8ae183127795d99c7c54f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2849c556e080943405a4dce7611734ecbf343f5fc49667092172f05dccc33010
MD5 9c2f26cc3707ac496d6c481ec81b1c11
BLAKE2b-256 bcf18cfee9aa3f66127156ac71bb64b86e930cf9da2721b43ca40a224a4da6c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15b1f6fa771c00c20955ecf32586679967c63006797fca6e54200ff50698783e
MD5 68a2de2d5d680a93c98bdf410e5faea0
BLAKE2b-256 d4d2293c6f36c995424af2e548dc998c088fa15895c8207ff288c89a474f9b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06b6b9b76eeca449c15b30aa88ea23ae1b1c8f32d4117a77d69a692f72f09600
MD5 3fe6b1e7601984dbf2fdeaf9a8b0a67d
BLAKE2b-256 7bae8ada051867e42a74f58be51ecf83d2de55f5656365ceb70ce900979a4ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46e2423bf1c6f97c96a74d6c68bc6917b6bbde3cf30f06932ec8b5a8ac69ba96
MD5 24dafe4a13389b01aab9ffa12c89f7f0
BLAKE2b-256 0493be08b88a7a10f6e2363c12651bd82a0e9e3047278d519838f5ce63ce9387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2e3853b7a8f868dd5db59e806a47476109327dc63564f98abef6c1cd5f21b536
MD5 f8142a1df3660edbd726ce0e094f00db
BLAKE2b-256 f570b13cbdb01f17c46fae20ee2cece1d448d4a65762b8e1c50149b634819dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc2-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f8fc2e87fbafdaf12d3125b3a90d5c15579a7dd9d627fa958da6ef25d3fdd52d
MD5 ab851df21c0b501cb6693e1dfc396201
BLAKE2b-256 7fd10885d0cbd82e3909314cc7fea346bb09273f92e60a78ba617e6759ab5944

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