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 Distribution

passagemath_gap-10.8.3.tar.gz (406.1 kB view details)

Uploaded Source

Built Distributions

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

passagemath_gap-10.8.3-cp314-cp314t-musllinux_1_2_x86_64.whl (87.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_gap-10.8.3-cp314-cp314t-musllinux_1_2_aarch64.whl (86.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_gap-10.8.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (87.3 MB view details)

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

passagemath_gap-10.8.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (87.1 MB view details)

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

passagemath_gap-10.8.3-cp314-cp314t-macosx_13_0_x86_64.whl (65.2 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_gap-10.8.3-cp314-cp314t-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_gap-10.8.3-cp314-cp314-musllinux_1_2_x86_64.whl (87.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.3-cp314-cp314-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (86.8 MB view details)

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

passagemath_gap-10.8.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (86.4 MB view details)

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

passagemath_gap-10.8.3-cp314-cp314-macosx_13_0_x86_64.whl (65.1 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_gap-10.8.3-cp314-cp314-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_gap-10.8.3-cp313-cp313-musllinux_1_2_x86_64.whl (87.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.3-cp313-cp313-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (86.9 MB view details)

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

passagemath_gap-10.8.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (86.4 MB view details)

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

passagemath_gap-10.8.3-cp313-cp313-macosx_13_0_x86_64.whl (65.1 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_gap-10.8.3-cp313-cp313-macosx_13_0_arm64.whl (64.5 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_gap-10.8.3-cp312-cp312-musllinux_1_2_x86_64.whl (87.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.3-cp312-cp312-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (86.9 MB view details)

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

passagemath_gap-10.8.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (86.5 MB view details)

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

passagemath_gap-10.8.3-cp312-cp312-macosx_13_0_x86_64.whl (65.1 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_gap-10.8.3-cp312-cp312-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_gap-10.8.3-cp311-cp311-musllinux_1_2_x86_64.whl (87.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.3-cp311-cp311-musllinux_1_2_aarch64.whl (86.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (87.0 MB view details)

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

passagemath_gap-10.8.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (86.6 MB view details)

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

passagemath_gap-10.8.3-cp311-cp311-macosx_13_0_x86_64.whl (65.1 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_gap-10.8.3-cp311-cp311-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

Details for the file passagemath_gap-10.8.3.tar.gz.

File metadata

  • Download URL: passagemath_gap-10.8.3.tar.gz
  • Upload date:
  • Size: 406.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for passagemath_gap-10.8.3.tar.gz
Algorithm Hash digest
SHA256 8a24747602b1c8e32a92a0609a8f862e5915b9702f4c79b00e624407bd268c23
MD5 7bfc5e18f823717680c0e0d71b1845fe
BLAKE2b-256 bd1bf2ac789004595109a29b70ce314d4a7ae118a5d3fc8a9819c7a66e49429b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af5a37cd5c2c6e860f28fe3af31325cecb20bce2a41adb5530b6ec0914a281f1
MD5 a68849cc504185c2531a8ec35506a334
BLAKE2b-256 8eec6ac7e592db49402d2cc22a217cf9cc3f82c48779bd1e74a87842f0b03096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1336b1297fead97a994555092455a0b1f531e26fcb5aad76537a484591d8460b
MD5 31bfb20c9eebbd87a8d945a4709375de
BLAKE2b-256 870f1e60376d4c0201c5505abcf05194decb1ceffd48d4b083b751b68893ade4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d8a7bb53bd7a52322e3e5d5d8e90bbcad836c067905fcbf5b6ec62493267f78
MD5 19e89417f2ea2984c1e54cc37b4c4f18
BLAKE2b-256 815f4eca6447160d188e5d03a0126f965827423aab6ce17c854a77a7f4060232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cdef327de5f45174b615cf9fd482c146e08e66bf0deaa656cf3c00e522435f0f
MD5 c5514e3ae1b59b07a75aa4de89cfe3ed
BLAKE2b-256 d9da6cb704c5c54fb5d4b4c17a335c1045642f9137973e99691a5b229cec5f3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9a9b3f9bca8402c47eef1f002874ce87da2f039a0baeedb2c799f4d34ca1533c
MD5 42f3420f1c7c7847bcd8331311ae0aa4
BLAKE2b-256 d18af3b01134d846a36a7c2726681ef49fe46d5fb3d44d75c266be138814238a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 909f44b854e2da80028cc187c183b670553122e225fc53c4a470aaab54875de0
MD5 8bef3a7b5cc67a62f9591a1a0e48cf4a
BLAKE2b-256 16e06252ac4b5ac2ba0dc77e04eb7d319671981c54fc7c9414275bff6a692ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3af330f811f31c4392f4005427b1be182e762673c4a93cdd62bec921a451eee
MD5 2dac4d9711c2dbdae6b3e4b2ee21410a
BLAKE2b-256 5af3f62811bfea711259f309e752e7f96387e6749d355ae7ad84bc6be7e9ff51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0b42cbfddb7062b88a92e090267b9f73a4db042611d779f6499fb5e5def501e
MD5 d3240d678a015f06aafc812a53864493
BLAKE2b-256 0379e9ea76d218ebce49f45a3bdeb93c39719e26b8a444d19fdd94f995bd851a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ebb58896e3529e4d13bca94cc003593ff416f65ffd83f51580421f3f0265bdf
MD5 5f57efbe9eaf23e23fb7e2a5f30a9b07
BLAKE2b-256 cdba69f705e8002a5aa506afe594a43d283b67dc8177d1e90910e48c05ed24a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11d5f41c6e4b87137299c9db394258bbcc365454e70ea048ebf5397e12792b36
MD5 d1fecf4bc2c68927609ff51dec12fee3
BLAKE2b-256 1d3147df9a66f7a79581e3cfde92f80d0bfcf8bc28047afd4b45424d7e48bf0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 352f85b4cf3ae88f393b59ea69c176ab5b725fb0ac4fc1e506d463f19de01a20
MD5 f04c42639478aadaf1dfbe6fec723041
BLAKE2b-256 e81bdb09e32e04a2d1f948fa7d844081f582a4fa29f62f148266322638701a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c315c3299d2dd55c6e2adc10ab46f28599661ab7f7e6fbffb8c72d9c8cca9f3f
MD5 e3f9ddded1c339401debbcfdb1612280
BLAKE2b-256 a1bd85b7929b4f53311576b3bb3a6d0060ec9523cbca6340039170b8d933dd1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 baf71cf1abc76d69a4cd5b265a5f0ffec66e6fa82a3100a759387fdbc89cb33a
MD5 3ada07d60ed62a361008db680733b968
BLAKE2b-256 890724a359d8c1871d63724b398a9c198d02d774b32b17a1c43a5674d8aaafc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 157068709a18c87d14502663167387314f733770a6cfa3be240d445c02bc36db
MD5 d8b62ea893987ed42317608233d36160
BLAKE2b-256 b2eb0636bf4710ce3cf81c346a92e75d8a602d571f9d95ca04e566c06a42fcae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90de4a4fcdeba9cf7596cb09d055398e07dede734f49cfd4c262995f47a9c79f
MD5 700a6c2ed871ac43b94aa0452df17729
BLAKE2b-256 ae3796bd2008792f95f511215f0b9e703e690d571d9a8660dbb673a8aa11c567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7fa65203626878250efbb20c79b81da80d4dd3fb7294cc7af2f120f9bde12fd
MD5 23c754041a233c664f74f6009cfe2d25
BLAKE2b-256 0de69b82227d729a50b451beb3bed497790359bfd5a3912d9bdfec41b8de0460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a1491c38dd384390c3592441aa6612345de6f1c3baaabbde0186324bc227cdd6
MD5 eae1575df642353b4f98182bb27ce695
BLAKE2b-256 47370c1d64e67ab130d095341906cade97e3192ae1ecd42a56c91289aca7bfd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 48058147c38ca1da661117352822be8e6ac1505372af5b0a10dd61b100ec88c0
MD5 48ec7bac57bc646b334e595e9398dac1
BLAKE2b-256 70c865da7eac43a4304a14c5bb09445ad386d45de113960ae44cd0fb08d1b0f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 556316a242be9a217511bc0dd366e41934438cc2380263771ef41da5885c193a
MD5 c3264597bc1164b3dbc83543c142de62
BLAKE2b-256 702d97631cd50aab9645adf5d6dde0fed24f16cc807d72d002df599bdbcb7ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a014da497002a237a92227d651adc59d90478719a432b6fe31c286582654f126
MD5 bd1320b3d436ca64061c1c7a2fe8a9aa
BLAKE2b-256 afcd9af9ce623841cea18cf6619648da157529bc5ce406909efce1b3bb06f8f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a791e28ccdd7aa9a9883cf6916d6fc139476816cc68ba2b374553b0de00ec7a
MD5 d7e11bc23e8a9dc87e07753474dafc34
BLAKE2b-256 11ddbd08cb895a5c9d6d4d77cda45c09775fb8dd25da82ef1c69c7682852d76c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c582bdf4b2844978e929b225d1d611f4934659b878b5734e8b4521664398281
MD5 8b820679281bd292469c047e2295f9fb
BLAKE2b-256 e052e40744efef058717b07cdd4d44ef1deb79766c53bb7930a537c943bdf1cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7e1e3c12de457330b66ffbcd44b8e431afe1d7633d966719532b1ca87831aebf
MD5 bcb977f6d24743579b618df2a12a92aa
BLAKE2b-256 a86a92e3b7609a8525745113421b39e174a550f301ec435b24cb4299fb7bae09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 64fd634ad55dfdea71056bbca5461c1efc7ef114625b6b3bb7e8693ed197f8ce
MD5 976fda71b8e27a6015ba1620ff101167
BLAKE2b-256 77e9f84bc446c1d13d9c72a1be51f5ca4f0ccbe63f88cfbd2eeab06f49092540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edef9da2b53d59b5a45f91899c18387bf450398e96f2b10ea11beb2d763cc5ef
MD5 eabb64501360ecbbc32a89dc4f7feb7d
BLAKE2b-256 8a283d67b4784b96e9b7bccd20ddb75c7b50d06123707b4732f27b2833ba4b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc77eded401a963c43ad809f5f968b68e577abebd97629f50dcb8e272bcda137
MD5 3d5fca62ca11bd072faf1cb772a5651a
BLAKE2b-256 68f64ae3157fb1cae230914bcbbfd0b9837914c0d0bdd18b992d56c913350440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1380b4a1791c0188626485a67e40b426b2e723ffcd8114f8798e573a63dd7a8c
MD5 5f621a55a2d07eced08ff8a76f8a583c
BLAKE2b-256 8359ed3fc960a681f9f160bca3885caefcc9617c1b825492cc7f184688b4b8c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24c5fbffa8082408a248fdc0801109ea4b71dba72d12ac475f8baf7f7860ac28
MD5 bd9e65d43995ce89054b1bd4442f6d27
BLAKE2b-256 3f08a6c0b42d9064ad372171f89ff5ec85fbee31321a28e40126b2c6cfa8b1b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 10358eac46453424347a0bd0bb7924f7997dac35b7536796d1f11e54e8d53b30
MD5 6f251d161e5685ea5a0a7497c8aabf0f
BLAKE2b-256 af003a450269cd335660915da18548056c668248e74f393ae8069bdad8180fa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.3-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b0cbf884377d3173047e329dc6dad4bd7da24ce1fd972bb3c30793eadde6ed12
MD5 3271a64fadac7d3280c5fc66ffc0cf44
BLAKE2b-256 7bc60bd08b1a4255b7d6cf7277829d6978a25903d099d33ce360405f92e0e211

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