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.10.1a0.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.10.1a0-cp315-cp315t-musllinux_1_2_x86_64.whl (37.9 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

passagemath_graphs-10.10.1a0-cp315-cp315t-musllinux_1_2_aarch64.whl (37.1 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

passagemath_graphs-10.10.1a0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (37.3 MB view details)

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

passagemath_graphs-10.10.1a0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (37.4 MB view details)

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

passagemath_graphs-10.10.1a0-cp315-cp315t-macosx_13_0_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.15tmacOS 13.0+ x86-64

passagemath_graphs-10.10.1a0-cp315-cp315t-macosx_13_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.15tmacOS 13.0+ ARM64

passagemath_graphs-10.10.1a0-cp315-cp315-musllinux_1_2_x86_64.whl (37.2 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

passagemath_graphs-10.10.1a0-cp315-cp315-musllinux_1_2_aarch64.whl (35.8 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

passagemath_graphs-10.10.1a0-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.3 MB view details)

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

passagemath_graphs-10.10.1a0-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.4 MB view details)

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

passagemath_graphs-10.10.1a0-cp315-cp315-macosx_13_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.15macOS 13.0+ x86-64

passagemath_graphs-10.10.1a0-cp315-cp315-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.15macOS 13.0+ ARM64

passagemath_graphs-10.10.1a0-cp314-cp314t-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

passagemath_graphs-10.10.1a0-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.10.1a0-cp314-cp314t-musllinux_1_2_aarch64.whl (37.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_graphs-10.10.1a0-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.10.1a0-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.10.1a0-cp314-cp314t-macosx_13_0_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_graphs-10.10.1a0-cp314-cp314t-macosx_13_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_graphs-10.10.1a0-cp314-cp314-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.14Windows x86-64

passagemath_graphs-10.10.1a0-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.10.1a0-cp314-cp314-musllinux_1_2_aarch64.whl (35.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_graphs-10.10.1a0-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.10.1a0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.4 MB view details)

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

passagemath_graphs-10.10.1a0-cp314-cp314-macosx_13_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_graphs-10.10.1a0-cp314-cp314-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_graphs-10.10.1a0-cp313-cp313-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.13Windows x86-64

passagemath_graphs-10.10.1a0-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.10.1a0-cp313-cp313-musllinux_1_2_aarch64.whl (35.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_graphs-10.10.1a0-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.10.1a0-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.10.1a0-cp313-cp313-macosx_13_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_graphs-10.10.1a0-cp313-cp313-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_graphs-10.10.1a0-cp312-cp312-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.12Windows x86-64

passagemath_graphs-10.10.1a0-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.10.1a0-cp312-cp312-musllinux_1_2_aarch64.whl (36.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_graphs-10.10.1a0-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.10.1a0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.8 MB view details)

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

passagemath_graphs-10.10.1a0-cp312-cp312-macosx_13_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_graphs-10.10.1a0-cp312-cp312-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

File details

Details for the file passagemath_graphs-10.10.1a0.tar.gz.

File metadata

  • Download URL: passagemath_graphs-10.10.1a0.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.10.1a0.tar.gz
Algorithm Hash digest
SHA256 3fb6b4f154f1177d17128aeae9e7e768b9396397c43eaebb42670bafcccc8ea0
MD5 20949e670ab3e3cbee3bc90f0e8c21e2
BLAKE2b-256 f81b87a75b43f150574e71d5b5d4e9483d07a047fcea04b589fc538b8cd01cfc

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 923d6a1e737e471f52907146dc2ecc269ea928224857e2788bbc5e694280912e
MD5 6a76f296164edb602ee9083db16604ea
BLAKE2b-256 f614d0da5362b1e36dc388d839f1a728b1b5fb7322ab856ff4ce78d55001b3ad

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 922512b8b9597db30e2302ca42e0eff4388c85180d7ed1bdd4c443d50beb35a7
MD5 f4d2eb793dd685f1dea7a50c63ec61ad
BLAKE2b-256 71f998dad87b2c6378afbd88e0e238ef219cea161be81096f19fc032e9d3d4c5

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe9db3ddbd215864e3649312054c4a806d3d6a6efadcd09496134f7e7726805e
MD5 e040874e25f2166c9a828dc455322761
BLAKE2b-256 1a4d5b3cfcae99e1b649ac249c26d17e9fc6df79b92b1922188c717cc3c2af2e

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2cf04d398fc2f2651037b0c8f9d8868684868f2d46a3ec87d7767c488b2efcff
MD5 368b2f7ff0c3067cc43bf57dbe72b0db
BLAKE2b-256 9f47622f8672b20a61e4f7debc9848e7c2747c354d80fc72bfbbf583e2562834

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp315-cp315t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp315-cp315t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 95bd879375f2b51d5aa323a1f07fa9724a738becf9fb603b1d22c9c0377a7bd7
MD5 d81c51758e1040f3a777249eadec8574
BLAKE2b-256 71c76400863e98297e6b224d134a5bd45ea8f083dce0bfd41a9a7cc3a38dfb92

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp315-cp315t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp315-cp315t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a35a6774cf2ec1b5915c0a6e87e83387f6fdcdcd5cf4d6e6cbc4dd99dd7e7e03
MD5 bb447c27fc2398cf3cf46473684d764c
BLAKE2b-256 4d31c8ac22dec701937c55e8a10173a8c78d104b5bf3e0af4f293e42250f8dbd

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16facc77a61ef38e0eee6f092d520ea346bf9ac9eb1dfdec9b59413937af9540
MD5 6e690c1ebc622103bba3d46a82cdae34
BLAKE2b-256 d5fff35a793c4954003ab00c0b218aca6f5d092de1ed07c89985038a46866b24

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abc4c792161f4d5d728981298624e7463ad7c4d08fb18fa0e998983379da0b66
MD5 e616e7d00f8a8bc4e05bfe1e4794e907
BLAKE2b-256 c4f7b6af668d4c559256b6c71df84e8fff9d1146a4424d804365f5c5a50d72cf

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d27ab5dcc54a20eb6596ccda0cd288eb756ec749121b1a75a4ed65b4fbd7000f
MD5 3ad6f94b7588177a4dfe191c1910f80e
BLAKE2b-256 5e99d48cfe27088042ce51ed6d43e522ec824a910260297ba1f4d96c20c5cc77

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a261ccd1e05aa28ce32375bc4e8f5bbca029ec1215956ed722775069fe0b958e
MD5 e7023891eaa0583f02db32e7ea2a68e5
BLAKE2b-256 798012d523214dd12678178cd67956ed5dfae510ad91a322f03145e2ad3534f7

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp315-cp315-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp315-cp315-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 75a545191f0699cf256766315754e3b4ff4feb5970cb4e5961e770e9cb770185
MD5 83bf04b8e6a9724a8386ce91b1797ba3
BLAKE2b-256 dd32f19c77a349d354dbf02203c7ae9d1d0a9bb5dc3d5e163771d3afc62621d2

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp315-cp315-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp315-cp315-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 1fa7285df6d01504e00b3a71ade57fc71d3e7cf22f551073fedd297faf0c39f6
MD5 388cc498fb9541fd9a888b76bc02ed59
BLAKE2b-256 2fc317867097c52d8b5055bb8319922725d1465a4209e3a2cd4249d01440fde3

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d60d7701363bb2a0cc87f492c0dbf29a7cb65f929c8b48a497fa4eca71b9e539
MD5 c71e76c33b1e14a19315526383948b81
BLAKE2b-256 a6457670f868afcd172d82ab4781ed34a437a37850515c05954c0aefd8dcc435

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2aac25feb0653529085449f000b443af668c077fc3a083f89d5ede162da00e3e
MD5 62c8b4542d744f36f7d8315f66d6b292
BLAKE2b-256 fb6f1b8a2e965b34bbfbe288791979dd4b6241b522716ba57d69ae02d1b4700a

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bda3eccffda680f4270bec7033ceb4b3d20b4b341cb6b4efa9e4d057bf79976
MD5 192679d62c1ebed5bc2221b30944361b
BLAKE2b-256 f237f9dc7d8cbfa2f4dbdda0853c7acd3e1e022885ee457071c4e0bb8cf94048

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5ad846dd8a46d89892767749db0c19490b992f842711e1d06ced02fc9dc882e
MD5 2db44e3a65129b258aaefefb96b165cb
BLAKE2b-256 aea3b24c3fec088e860425dbc7251f7410b3991b7655ca5915cb591a9ec21495

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e94d066ee1f6df763858d1e37f464b717dafac1df68b136ee6a7cefc8c91db4b
MD5 be315c6351cecb4c506d5167cd24904a
BLAKE2b-256 b2b41d778657512e294f7249fa50c56cc795454163ad0e1143f6b976ea3d125a

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 50900501410dce70ef604b044d05e4108fde22c276e01fe86c7b6c1a44d5eff3
MD5 2e3ec35c654383a0d1f58b9335ed3c7d
BLAKE2b-256 24310f6f735c5b84b8d020961e9d68ebd57c24e1facba3d6ee504b657fdb9752

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 617f119ed7da114edcfdc4560145863b630e4dca7680da2eb96f3af89d773ded
MD5 8f45bd087500364f081c2cc17e4c3321
BLAKE2b-256 1e887b871a4c9b1fe83cc15ecfd041d1d1fc8174533e78048a78646adc4f6970

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9fbb2402d4c7f9ee392a23da159e297db315ed5069118c02a5ec2dba79a80643
MD5 decdc83a42f00ad9ac1795b7f78b3e3f
BLAKE2b-256 73f65a88da1032361eb2eaaaa5f3c32c4bd5bc6137aba799ea76ae29202499d4

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd4b37a0dccd2580993387f2b019aed840669eb95256786d6522b3f1b2910c61
MD5 2e412d451fea024558fdf686b453bbd1
BLAKE2b-256 b969e539e233d99ad596197e6805e4e27e361c1931e90690847453f78109fc1c

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dff61cb34a79e7e9170dfeabf74baf6bf273e0bb3cc31b6ea390c342f39dd035
MD5 28390c77f12b77b0d7e318ddffccd058
BLAKE2b-256 cb080088a10c7f8bdef289ebaeb560b09c8cc280e469f2a286d63a0dde59444d

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfc9f63c831527e0b17b26f9de15b4b2f4e81bb8a9501919ef9f7284c7801c88
MD5 fc46460a97333a8fa12a07461252b358
BLAKE2b-256 d230a9caa107994a0497928a94c11fa25051a63adffebc2cc5e3b8f4d1641425

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ec3a1001166a9b4613894e365ae4c25681800524a3b184e195acbbbe44a6442
MD5 5b685629063ea9ce36d9c6f22f13a975
BLAKE2b-256 265b5e60acd8ff17cedfb5536e09051372b5ab18902aae890adfcb74d51c195f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 15fb0dc1cc7acedf22247f6d66c50aa7d18b6b001dc0fdd8a9cbc68996e38245
MD5 ec7cc098796b34a44eff788b9be27a7f
BLAKE2b-256 aafc34232ed1fd3f374c8de39baf1a1da36d1791d58380f9523cfdbbdd2db52f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 74d95bfd4a2c60b264b93eccda7459189028fbdabc0fa5352281516a11526c6c
MD5 018f0669e79990c5cf89e2bd1531847f
BLAKE2b-256 8b91b7dd97d6fdfa2701513343a907278cc3dfaca35d4aee2a9b26fee31e5553

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3631e7de51128b40460faaaac3373efa664ee21015f16b8a37fdd6a9e1506510
MD5 fb6992d5a72889589f55ce3b2e33c6c1
BLAKE2b-256 7c742deea6eea174885b593f3fa64f96d9fc9fd50da68c4814d929fb18bb3029

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6a55722cd323b31b05936924645f2ff3abfc35ee21959e27216f1ad6d8c3b5b
MD5 fb0fc6137f044cdaea6ad662f50559f5
BLAKE2b-256 fac642c129dc46dc224f3dfcad5eb499ac999fb06d77be9f41d5ff77164c5b99

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28120f0fdac37dc014b5c310fb9d485a037cc66692cb13b7e373440e207cb721
MD5 f7f5a2ae8d0b360462db5d1a83259549
BLAKE2b-256 eec23710e2a021db9dc621ec251fe8906e47d50950b5701b7657d8df98f38bdc

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70d84c205ee80234333999736f583b36813de953ddf044df33d5e4937bc13a08
MD5 15a1ae5a2ad87f52cca151a68fbb2ca3
BLAKE2b-256 dd85603eb2544796e7942fe05634a42dd2e8c935ef84e6d6a28544398cc0def5

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8098ce7a002421802a9d32fce43c0ac94dc41720a4bce884af9362642b6342a
MD5 d145825f344ab1cea9761fb4b28322fd
BLAKE2b-256 5d5c473bc706015cf4d3ac7d58c31379c5005d488b992faf09c01e63a7d9efcd

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 24685c410809172f48c2a4f27fdf6ed1539496391c5483e5bcc1c28ff47139f7
MD5 1e9595beee9a9aadbfcea56defd66894
BLAKE2b-256 75771ff91947b4d1b0ff72c7c9e7c9937f9bb3d303ccb430a4f50bfd10fa4ab1

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c40f43f703fac4ec3456763758c4122d64d38a7e5085ab0ac4625e2c66e78d61
MD5 30203f8080c4f5844bc0179eb82cc4e0
BLAKE2b-256 427c2c4fa27edc60e0315352cba4d67971e0e95313f4cf38913e8aa82457084a

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0bc527bcaca78dc6039f5eb75aae7072152e62fabf053115a8cc41071574bcdf
MD5 4bd173f66882aea4d57fbc92d79528e0
BLAKE2b-256 a2fe8308bfbc7cc53b572f30ae5f79cc956182af62c35c8d4a3c7d00e9a67ff2

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca45f3070836fb5a3cb84c02048ee5433c00fa537c6bf68e82770615adac38fa
MD5 3bef182efcb510fab7424ff537c00ce9
BLAKE2b-256 5e07a8a6423ce8a9824b2bc312a0aec47ce2c93cc0cd6e91e5f904b8a60c4767

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0e9792486237df65e712aefc70dc9bf49d5d874e35d9542ea5af899a1ce1521
MD5 d4f9d00e1dd377d0f37f32f5d2530599
BLAKE2b-256 71a0b5bbeec4737884e3c0805df27b25e96d90c1f5961197ffa2ad9afbf0f0b1

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83a533b7ad01bb12d1bb33a01a8b193ef24d6c3b3f5e33a4a069fbc99bc7ed1a
MD5 0179c72d6527be5bac0f55999d52d35a
BLAKE2b-256 febbe8a61ce48ff6cd30527d9a37b448b20f305be8a32133b2082613432096d4

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1811ce2e95b4a596c2da5814e46d6cc92c595eccae37c60551cb051c050d0b96
MD5 ab214d3992a80f227007c94b3f03eb90
BLAKE2b-256 47d912d9e55b99e14f308e19f9e0afbe015dbb3d23c2a9b6a870af7fd60514ca

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 63075dfc05c235556e8ee1649604ae6299cd8e53daf4e129e8271245f564535e
MD5 1fcbd119fac1f002b5f1883df0e7dd1c
BLAKE2b-256 3fdc078511e7efc05a1467582f771ef215870ebef136ddbfb805995badd9f6b5

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.10.1a0-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.10.1a0-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 2fa8077a551ce7d2a2908be9db53291e9093b0d4e5cec198599d048dbba7aae2
MD5 5d1f41f54cb9248cb8a9b4cdda988f1a
BLAKE2b-256 ff98460a9134c8cf236f3b296d984ea9c504e3af861482b2b11050589d18e7ff

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

10.10.1a0 This release

41 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

49 files

10.6.28

29 files

10.5.49

31 files

10.5.29

21 files

10.4.68

21 files

10.4.36

1 file

10.4.11

1 file

Supported by

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