Skip to main content

passagemath: Computational Group Theory with GAP

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 distribution passagemath-gap is a small distribution that provides modules that depend on the GAP system.

What is included

  • Cython interface to libgap

  • Pexpect interface to GAP

  • numerous modules with build-time dependencies on GAP, see MANIFEST

  • the binary wheels on PyPI ship a prebuilt copy of GAP and at least the following GAP packages:

    • atlasrep: Interface to the Atlas of Group Representations

    • autodoc: Generate documentation from GAP source code

    • autpgrp: Computing the automorphism group of a p-group

    • cohomolo: Cohomology groups of finite groups on finite modules

    • corelg: Computing with real Lie algebras

    • crime: Group cohomology and Massey products

    • crisp: Computing with radicals, injectors, Schunck classes and projectors

    • crypting: Hashes and crypto

    • datastructures: Collection of standard data structures

    • design: Constructing, classifying, partitioning, and studying block designs

    • digraphs: Graphs, digraphs, and multidigraphs

    • factint: Advanced methods for factoring integers

    • fga: Free group algorithms

    • gapdoc: Meta package for GAP documentation

    • gbnp: Gröbner bases of noncommutative polynomials

    • genss: Generic Schreier-Sims

    • grape: GRaph Algorithms using PErmutation groups

    • guava: Computing with error-correcting codes

    • hecke: Calculating decomposition matrices of Hecke algebras

    • images: Minimal and canonical images

    • jupyterviz: Visualization Tools for Jupyter and the GAP REPL

    • io: Bindings for low level C library I/O routines

    • json: Reading and Writing JSON

    • laguna: Lie AlGebras and UNits of group Algebras

    • liealgdb: Database of Lie algebras

    • liepring: Database and algorithms for Lie p-rings

    • liering: Computing with finitely presented Lie rings

    • lins: Computing the normal subgroups of a finitely presented group

    • loops: Computing with quasigroups and loops

    • mapclass: Mapping class orbit computation

    • orb: Methods to enumerate orbits

    • packagemanager: Easily download and install GAP packages

    • primgrp: Primitive permutation groups library

    • quagroup: Computations with quantum groups

    • qpa: Quivers and path algebras

    • repsn: Constructing representations of finite groups

    • sla: Simple Lie algebras

    • smallgrp: The GAP Small Groups Library

    • sonata: System of nearrings and their applications

    • sophus: Computing in nilpotent Lie algebras

    • toric: Toric varieties and some combinatorial geometry computations

    • utils: Utility functions

    • uuid: RFC 4122 UUIDs

    • ZeroMQInterface: ZeroMQ bindings

  • the binary wheels on PyPI ship a prebuilt copy of the native Jupyter kernel for GAP

Examples

Running GAP from the command line:

$ pipx run --pip-args="--prefer-binary" --spec "passagemath-gap" sage -gap
 ┌───────┐   GAP 4.14.0 of 2024-12-05
 │  GAP  │   https://www.gap-system.org
 └───────┘   Architecture: x86_64-apple-darwin22-default64-kv9
 Configuration:  gmp 6.3.0, GASMAN, readline
 Loading the library and packages ...
 Packages:   GAPDoc 1.6.7, PrimGrp 3.4.4, SmallGrp 1.5.4, TransGrp 3.6.5
 Try '??help' for help. See also '?copyright', '?cite' and '?authors'
gap>

Using the library interface from Python:

$ pipx run --pip-args="--prefer-binary" --spec "passagemath-gap[test]" IPython

In [1]: from passagemath_modules import *

In [2]: from passagemath_gap import *

In [3]: G = libgap.eval("Group([(1,2,3), (1,2)(3,4), (1,7)])")

In [4]: CG = G.ConjugacyClasses()

In [5]: gamma = CG[2]

In [6]: g = gamma.Representative()

In [7]: CG; gamma; g
[ ()^G, (4,7)^G, (3,4,7)^G, (2,3)(4,7)^G, (2,3,4,7)^G, (1,2)(3,4,7)^G, (1,2,3,4,7)^G ]
(3,4,7)^G
(3,4,7)

Available as extras, from other distributions

Jupyter kernel spec

pip install "passagemath-gap[jupyterkernel]"

installs the kernel spec for use in the Jupyter notebook and JupyterLab

pip install "passagemath-gap[notebook]"

installs the kernel spec and the Jupyter notebook

pip install "passagemath-gap[jupyterlab]"

installs the kernel spec and JupyterLab

GAP packages

pip install "passagemath-gap[4ti2interface]"

installs 4ti2interface

pip install "passagemath-gap[aclib]"

installs aclib: Almost crystallographic groups

pip install "passagemath-gap[agt]"

installs agt

pip install "passagemath-gap[alnuth]"

installs alnuth: Algebraic number theory, interface to PARI/GP

pip install "passagemath-gap[caratinterface]"

installs caratinterface

pip install "passagemath-gap[corefreesub]"

installs corefreesub

pip install "passagemath-gap[cryst]"

installs cryst: Computing with crystallographic groups

pip install "passagemath-gap[crystcat]"

installs crystcat: Crystallographic groups catalog

pip install "passagemath-gap[ctbllib]"

installs ctbllib: The GAP Character Table Library

pip install "passagemath-gap[cubefree]"

installs cubefree

pip install "passagemath-gap[cddinterface]"

installs cddinterface

pip install "passagemath-gap[curlinterface]"

installs curlinterface

pip install "passagemath-gap[deepthought]"

installs deepthought

pip install "passagemath-gap[difsets]"

installs difsets

pip install "passagemath-gap[float]"

installs float

pip install "passagemath-gap[fr]"

installs fr

pip install "passagemath-gap[fwtree]"

installs fwtree

pip install "passagemath-gap[grpconst]"

installs grpconst

pip install "passagemath-gap[guarana]"

installs guarana

pip install "passagemath-gap[hap]"

installs hap: Homological algebra programming

pip install "passagemath-gap[hapcryst]"

installs hapcryst: HAP extension for crystallographic groups

pip install "passagemath-gap[help]"

installs help

pip install "passagemath-gap[irredsol]"

installs irredsol: Library of irreducible soluble linear groups over finite fields and of finite primivite soluble groups

pip install "passagemath-gap[lpres]"

installs lpres

pip install "passagemath-gap[modisom]"

installs modisom

pip install "passagemath-gap[nilmat]"

installs nilmat

pip install "passagemath-gap[nq]"

installs nq: Nilpotent quotients of finitely presented groups

pip install "passagemath-gap[numericalsgps]"

installs numericalsgps

pip install "passagemath-gap[polenta]"

installs polenta: Polycyclic presentations for matrix groups

pip install "passagemath-gap[polycyclic]"

installs polycyclic: Computation with polycyclic groups

pip install "passagemath-gap[polymaking]"

installs polymaking: Interfacing the geometry software polymake

pip install "passagemath-gap[radiroot]"

installs radiroot: Roots of a polynomial as radicals

pip install "passagemath-gap[rcwa]"

installs rcwa

pip install "passagemath-gap[resclasses]"

installs resclasses: Set-theoretic computations with residue classes

pip install "passagemath-gap[semigroups]"

installs semigroups

pip install "passagemath-gap[sglppow]"

installs sglppow

pip install "passagemath-gap[simpcomp]"

installs simpcomp

pip install "passagemath-gap[singular]"

installs singular: Interface to Singular

pip install "passagemath-gap[smallsemi]"

installs smallsemi

pip install "passagemath-gap[sonata]"

installs sonata

pip install "passagemath-gap[symbcompcc]"

installs symbcompcc

pip install "passagemath-gap[tomllib]"

installs tomlib: The GAP Library of Tables of Marks

pip install "passagemath-gap[transgrp]"

installs transgrp: Transitive Groups Library

pip install "passagemath-gap[xmod]"

installs xmod

pip install "passagemath-gap[unitlib]"

installs unitlib

pip install "passagemath-gap[yangbaxter]"

installs yangbaxter

Collections

pip install "passagemath-gap[standard]"

installs all GAP packages present in a standard installation of Sage and their dependencies

pip install "passagemath-gap[full]"

installs the full set of GAP packages shipped by the GAP distribution and their dependencies

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

passagemath_gap-10.8.5-cp314-cp314t-musllinux_1_2_x86_64.whl (93.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_gap-10.8.5-cp314-cp314t-musllinux_1_2_aarch64.whl (93.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (93.7 MB view details)

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

passagemath_gap-10.8.5-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (93.5 MB view details)

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

passagemath_gap-10.8.5-cp314-cp314t-macosx_13_0_x86_64.whl (66.3 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_gap-10.8.5-cp314-cp314t-macosx_13_0_arm64.whl (66.1 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_gap-10.8.5-cp314-cp314-musllinux_1_2_x86_64.whl (93.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.5-cp314-cp314-musllinux_1_2_aarch64.whl (92.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (93.3 MB view details)

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

passagemath_gap-10.8.5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (92.9 MB view details)

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

passagemath_gap-10.8.5-cp314-cp314-macosx_13_0_x86_64.whl (66.3 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_gap-10.8.5-cp314-cp314-macosx_13_0_arm64.whl (66.0 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_gap-10.8.5-cp313-cp313-musllinux_1_2_x86_64.whl (93.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.5-cp313-cp313-musllinux_1_2_aarch64.whl (92.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (93.4 MB view details)

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

passagemath_gap-10.8.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (92.9 MB view details)

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

passagemath_gap-10.8.5-cp313-cp313-macosx_13_0_x86_64.whl (66.3 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_gap-10.8.5-cp313-cp313-macosx_13_0_arm64.whl (66.0 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_gap-10.8.5-cp312-cp312-musllinux_1_2_x86_64.whl (93.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.5-cp312-cp312-musllinux_1_2_aarch64.whl (92.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (93.4 MB view details)

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

passagemath_gap-10.8.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (92.9 MB view details)

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

passagemath_gap-10.8.5-cp312-cp312-macosx_13_0_x86_64.whl (66.3 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_gap-10.8.5-cp312-cp312-macosx_13_0_arm64.whl (66.0 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_gap-10.8.5-cp311-cp311-musllinux_1_2_x86_64.whl (93.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.5-cp311-cp311-musllinux_1_2_aarch64.whl (92.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (93.5 MB view details)

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

passagemath_gap-10.8.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (93.0 MB view details)

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

passagemath_gap-10.8.5-cp311-cp311-macosx_13_0_x86_64.whl (66.3 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_gap-10.8.5-cp311-cp311-macosx_13_0_arm64.whl (66.0 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

Details for the file passagemath_gap-10.8.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 942ae05d63332e3acdf358cbbd6e018eda4b52f8f64649005311c376191f77a5
MD5 8596e4507b3d7c0dfed89d526ea58f4b
BLAKE2b-256 6e13626f25d198428c71027d085694e38ef1399634c3b8eaf4061f19be5fb66b

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10717df733b27a53576e9533a1eacb4c71072aae874ae52640a04d7a7d3a9f39
MD5 3d86c1d96106816c079cda72a7aff1b3
BLAKE2b-256 eb4d579d230752e5ced9c288c90a2c9f58a35d8660cb732a43ff1a1991f57e73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6e0dc0b1f2bce7201e7423bbaa05f7087891ec17f012614cbbbc1fcf3bf59f0
MD5 bd1436e351381f78180bf11d9aed70cb
BLAKE2b-256 6fa89b4d0edb94e1ef3a71f8cc23d08464992779aec79f0479e11ac0510058ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 069e11e9e3233411fc2d8efe07c59f844aa43bcdd34d3c6e8c3d152fdda84f3b
MD5 4dd9f5fee1751856ab7f3547fa9dc1e9
BLAKE2b-256 191c153fca4300eef1e140a564bf4a74727869bd698f066e33d25ed03d27dc30

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 73d222280f84eae7f53672e754ed22b1b4559045294f2c77c1d13aff361ab9fa
MD5 80e13c2c2a839d74bbd98ee18d888e22
BLAKE2b-256 41429b83173e6028375d6ab5b8d87a24f74ce5c066d66d964e77ee6a3e0b0fec

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 7df6a924f6377c1fd877936cee5ce4bc95de6729ccf75c8a83ee0720e20865fc
MD5 0d8e5fa845f57a266d46f37ecb9dd54a
BLAKE2b-256 382846b9eddc531d4b90b5760e7bc1f8a2dadbd89a496d1bd74195519d3fa1fa

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41a15c9313eb2a97f71b9522c9305da412e17c9c104b493fd5111aec0d19e0fb
MD5 c55ad5692c6019438020dafe5510d3c6
BLAKE2b-256 dd296032a30c1dcd5e8050333d51c6765ede3b97466ce81b48646d237bf01b9a

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b114a24538c7efaf7b2131ad01e8f5cbab0d8d2202944d55485604694dea71c2
MD5 26b4b486f8fb9e12f641b79bdd311f44
BLAKE2b-256 1b3da631ebf7228f7b64ded1b4d548e7b3f4c0d62ebb0864020601010b36fd24

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e11ab8e720822de2967b89cf88aa22efe311e4b620409280bba8feded63ae92
MD5 765db89e6e4f0a924d88d135962148ed
BLAKE2b-256 740d1aa32ba3990355cab0a3072636b0c1b801738b98caba44f8348fc8417e6d

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0128df397e4e20f48db0b16d54a92b40607a43c966756ef268e66600ac2dfebe
MD5 2bd9425d4952e3ba3c3e4ca003f8485e
BLAKE2b-256 a14dd5efddb075d12f317436598af1617ff3073fe20e1a5212c1f9edd899a9b9

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 68638ebf80f9d22c3bbb4ebef831ee266dcfbe4e5a46276209972612d7745926
MD5 c60ce4f8c00bf1e8e7288ddda16fc090
BLAKE2b-256 fc3aad75eeada92a215e8f5d4b42b2afdc05b2fc91e9bfc70a3b53802338f851

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ac0e306ebbc094b379828f168f150129ae128bd203424a426f452214110ae629
MD5 34556c595763df06cb891f3f361195b8
BLAKE2b-256 96051ab91834ede44c7ce2469cbbc5404fa4c555700839fbb0b5b92141aba0c6

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdb4b0e2e931812b5afa362c11eb1db6ea328570325737ca825f7163ab1e9acd
MD5 bcea1c19ba21c30cb9cdeb2be4e0cb75
BLAKE2b-256 6a62549c44713f754e85f1d9121cc002000650686b37eeb700bf89937fae37fc

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8cf728cea147c866bb87fbb212350f5440af112ea2b9d46344ef7a78a47cee92
MD5 2c74f7c60f289f4528431817abdcd175
BLAKE2b-256 156a910e5f44eeeab99eb950123fabb5bb240bfc89571e3f143902beddee116c

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44df0a3d39b8266a8e1a7e5886cddf3fa2dbdc5191f9efb63a9e742058742930
MD5 aa658de621a4c2dabdee4a650e1c8a00
BLAKE2b-256 f7a44b001adf44cefd97b586c77cad52961abe056a4dbe0b09cf9d5bd59d3ee3

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fcf17d813911862d67563f432357af514d92306c5b7259a940f37e7a81a07d4
MD5 e6ec8a05d8ae8ace9ffae498c15fe9bd
BLAKE2b-256 016ab3ee37c7224b4efb8d3251a2c68dd38143f6748562661a1243711cd838f5

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 fcb5f956b75ada4c8ffcd6cfd72bd14b75ce738c2a3ac6bff59a8c925dc7ed15
MD5 19809c2e52ca62259408bd8cde2f1e49
BLAKE2b-256 08c184db0b2cb8d8af20531c1d766030236403fb13d4d6431ad59f8a8d4d7507

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e1e438b30bb01b49b9a51547072b847387110e6e932cb0f1aa06764aeea90cbe
MD5 a0f72b1ebdaba03e87593ca926d4ed28
BLAKE2b-256 b7b3122a4d0625e8a51861e0669d1c98d439da990a283556d138e7449cdf673a

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c45b4f31bca90f5cf8d16f19578125c4196d6024ed3a8ae2d9082cd32c24a2e0
MD5 7ba2d797eac2df64c1f05ba8f0de0909
BLAKE2b-256 7be60dfe567c70e7684c358cbdda5a2d54abd815cee60f9e684f407195e5439a

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abe0783188b840ec1a07a95fdac019fc55ee1ea00c6740cb7f0a408c1fbf3833
MD5 9ac63ea9a6e01a76acda3b7542777340
BLAKE2b-256 38b6182b4f24095d248a836a9d54d4e9ef3df0adfadce4a886738ba870f91b8d

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7ee486e5b50a26e2ddc28ab43e1d124267a87ce5d0528269225c3bb8b0e0873
MD5 29409a436aca9922f3b403dd9ff74f03
BLAKE2b-256 7c00a284e33b6752b92820965e2f3f0abac219c40f036fb67b0771a3c8a8efa4

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb2dc1caf1859598bb0c05b30266778f6196626fd5dde0216faec8bd25a649a5
MD5 8fa38d4fb1ec33ec7bdf94da18bfb0c0
BLAKE2b-256 ab2d409f28cec44282af15e592400e7768df8c91351dbbc66fe8df16b31fcf6b

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 17fddeeea7c986cc059df5a99ce85ba6f0bc7d261ba7063b5c2630644b9469ac
MD5 9d2b8c18d3efc86858e5e4f7c9d28b34
BLAKE2b-256 0b8d5bc3b8f577ed91360308850b627b2815277648d3ef1cc3b1fac7d6a0d7e9

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 bdf68a38aeeca6ad6b85aa695f8f1a41f4d238b719c28943b9278af791cabaa8
MD5 27f48267ff3cb8995d887a4d87bfa513
BLAKE2b-256 382343d858986a88c019189a896d7cae45c5fe506ebf7dee912a656bcfdc4dbc

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 161ec766044217de136ea061793bbd32aced7fb427a1f8a3989d0388975fe8bd
MD5 ec8f39bd855e17a5d94d0ee45f0d760d
BLAKE2b-256 a77f11acea6171aff6d1524d37320c3c679d5896140110cf633ec9f559896ce9

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bea26d67ff0a584c87bc8d62ca3f5a0b2475269362701dc5055fa49bafba7e49
MD5 f10b59b5249b51042e88dbd1a2b7237f
BLAKE2b-256 20d57670be04baba7c0c86645ea574bdab0945e56b23051fe484b1f7df52dabe

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4ed0b7ea37b0e305be5d86bbfbd0c9fd51c52f11bda9778e9f987aa2b00f2bc
MD5 6c43daae2b97227906f07105ae7c1e8f
BLAKE2b-256 285ce6f0f7661aab01acd2b5d18f8d55e0cf313fdd99eb4dfe0b7ae88b781afd

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1648e85e7548ef21626606f2139ae2910fc1051647399bc195082d06e1ddc945
MD5 a4839faf690e028830bb3d8ce5b01708
BLAKE2b-256 de00377f72071399b36b103f984be2b61287e36957c3591ff51d404d59cd47c0

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d0bb710761801670712054893786b0fbaf55b99ed42b5b95081a3e21fa20ea07
MD5 a1b4914b10136ed149eb1567361a7f18
BLAKE2b-256 ff78110c6af877cb86c84a4b0791f211f5b7b0b3246db950b777cafa54271f8d

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9dbc0ef697a451c6e442a13d6d21fbc1cf40dba8be90309284b8e3f59700d602
MD5 e0d110a06634e3275b1b8203362e0d9a
BLAKE2b-256 387e32d6ca4b8614cf2042883375d5a739ed59b37fe3b36b8646826e9ea286f8

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