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.5rc5.tar.gz (406.2 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.5rc5-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.5rc5-cp314-cp314t-musllinux_1_2_aarch64.whl (86.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

passagemath_gap-10.8.5rc5-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.5rc5-cp314-cp314t-macosx_13_0_x86_64.whl (65.6 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc5-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.5rc5-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.5rc5-cp314-cp314-macosx_13_0_x86_64.whl (65.6 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_gap-10.8.5rc5-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.5rc5-cp313-cp313-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc5-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.5rc5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (86.5 MB view details)

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

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

Uploaded CPython 3.13macOS 13.0+ x86-64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_gap-10.8.5rc5-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.5rc5-cp312-cp312-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

passagemath_gap-10.8.5rc5-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.5rc5-cp312-cp312-macosx_13_0_x86_64.whl (65.6 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_gap-10.8.5rc5-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.5rc5-cp311-cp311-musllinux_1_2_aarch64.whl (86.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc5-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.5rc5-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.5rc5-cp311-cp311-macosx_13_0_x86_64.whl (65.6 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

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

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for passagemath_gap-10.8.5rc5.tar.gz
Algorithm Hash digest
SHA256 08d19a5c9c4d8b4bd1ddf0fd3466f1b821d400bd9a41194327e0b0a8ef98d417
MD5 6e308db7146ed6dcb8d1688ba6914d4a
BLAKE2b-256 57fa3ae94948fc919ff29e41643e107ac336ec02a646f3ecbd2392b451b2e83a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d3d6701c8691eff86cb962c3e564042106185efcab48f161a57dd26b9c72cd5
MD5 c0a2806621f905fcad2a55d61c489fc4
BLAKE2b-256 ec8d1ec0a197008eef43e2c4c7ea31865ec1401f3c51dd3dbe47cc87585a6dbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f222e3bc84cee294a63ff4dbeb3879a6daa3a3b6bc8b060c55472e018ca4b01
MD5 c5b3bb59bc5f94ebc8d8f300687e527b
BLAKE2b-256 9451964e3af9090adc45089055b0be105c7cf62c43ad2dbdfeb3cc70bd1b0f96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5bd12a94c959e17f26f55c4983db7ac824f3f573e6b787e26318fb5d0fef319f
MD5 1491a20e9745382f98f4849d7fe5dc8e
BLAKE2b-256 a46147c49be54a265b93fc3246c60d8224756874ac756fd185b0bf2c41045c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f38c513404a3ef71fa79f4d4191df8ac3e3fed269670c22abd64da11d97c5138
MD5 a48cf29225925dd3d70b9a5c6021dfa4
BLAKE2b-256 c4e28f102ab5166a7452df17de37d36e9e10d5c8fabd30e9fd8c839c158c13f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c4dbf154c7946d4404553349527c96bb1bf0aff9ed273f8b5590332a325eb24b
MD5 b6f2894ac851ec2a156595ba05aa3911
BLAKE2b-256 42732d457fb9fca7bee2b8c8c0899e6b9c9cc553f0fb539f7857cc65c1952b2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a557b57d767bbf8f330c8d0cae7a8b0a90ca18550e5ac789fe4a5783037d48c1
MD5 ca0835caa2876f619ed1b55f57330869
BLAKE2b-256 2ced9591870e10db2036640e9e5d4bfae0408a54031b6f7d994cf5f8dfcfe577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a413c6fb4b1cc3a102207cd4077620f3e12aa65e56cc21e802d42e70454d8fa8
MD5 0c86cf76d4d0e989651c2d50a9e33f88
BLAKE2b-256 80145636f32b458c7ec0fa184e2c5384662026f5d030dd75c775971412d6cfec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f32857729a8ed6b054f63153926e0f13fce8580609ec21d01c6499c20f60ba7
MD5 9182dd1b354526319eb6ffcdae968f04
BLAKE2b-256 eab17b268b137f54f059a18ee1232da74fc9dac93a99e403cca7beac0d6787e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56d18a65b724d9889e63ecf755572823ac74fd6cfeb69797b0cbe7cd502171d4
MD5 ffb8e5925c7966b17d236d40db8b9ee4
BLAKE2b-256 6c2dcc9e97ce065a563b4567c070f22ce31380efcdbf9129a40627c2b03cd11b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b5ab890a52d5a00563e8b8c47b8ea608c4fce9c02e755797e94ec54f59470b0
MD5 35f89d4f67e7f5b0d3da15388b8feb33
BLAKE2b-256 d7000e9751cdd59b749543e6f85eb3b892f1ed28fea8194ac682814175ff5f9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e6eb997a5d6fd269c0836b14d76859b9c42dcd5e4a3df09caa2f35b5467e5604
MD5 d020d0bbda83e55ae9ac0e3a9ac2f32d
BLAKE2b-256 c641e90fd71cae1f43e4b5913bd7a4143f923080a4773112c537d937c60f86b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 809fbf42fd52ad9083952acd4db2c5668c315b8e7032be2d10efc3b10d90a2da
MD5 08a10b8208f94b2d2472ed6fa369be83
BLAKE2b-256 659d614c048e19f4560aa3ef0d731c9e16878ae123cc8178a7cec31535f24736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db5543f752eefc9785c8ef71a0fd8acbfe7145786c61e1f0c0d7dd8e2513b452
MD5 91357c1916aef95536aace58a4137443
BLAKE2b-256 487f3296a6046b03b0162523af4af90c23701a0d14aed54ab4a35f1d9b1ef005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b904bc13d5a2fc9afaa1cdb2bc912471a28165adb0163e21d1d3587eada6884
MD5 473a437394fb1dd2d075a539c98c9afb
BLAKE2b-256 e9157e7ac08df80eb6ecd29adf89809c712118d8a451bb9fdff36cd9f2c10717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aff7d17cfe6279e3ee8c70b66c9a76cc7e76045066643180c3a48fd4a8c33d68
MD5 944775cde8367cc40277b49873effeee
BLAKE2b-256 014358997a2544d4d1d72e76803411e5fcfc1d737cd2028c869fa8e5b49269d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1305b12aad4bfc4615772591b1f3f213c023198e7010f2c780f876c160265d13
MD5 64daccfcca194fa5e61930bdd6424728
BLAKE2b-256 5af79a65c2336b9dc7520f785ec1703a236f3af30c8e4888d95f0124c5f43269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3c96d17ec1dc426f2a1c4d3a0c18e5eed6b6806c113defb19fd7a76be381a933
MD5 37cf477e08be23b350658be49491b81b
BLAKE2b-256 886410ca73743ad3af8c8a1c11d0e29ee923aeef9d8fb37237c2042e409689d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 85f8d5efebb0dad704370e7d6a928c7b615c342d772ee1d92e7e8f2023ba3c23
MD5 e5e121ea96f82d456d398c20ef1c2868
BLAKE2b-256 5c0056a0ba3e3c1a90c6384025cba8762818417dacc6a0e9f0acf2089dd7275c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d20c4607af26fa11d968bfdfd1fcd85ecf582306bffadf721c5ab40a34eaf40
MD5 8d7af3f0c27a7707922efb1d404dab48
BLAKE2b-256 5a6f8c80d3a91f3c26aef682eff0e6f6a30535d05cb1a5bea122e158e824e75c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe6bd69434ba0456c4bbe1f6278d650c4d8271e65abedbd8a3b4b89c3d017b77
MD5 ebaad0d47525969e7d8f7bd46e54cc22
BLAKE2b-256 de31aec465990d1ec6458e24c0d68712dad9c30e645c9c06f01d035a83be524f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8739da707fa2200a5462b46db0b069470e4fd4f9e145bccae504b781f2caad8
MD5 461d41904cf3fb156b61424e4dd2c681
BLAKE2b-256 e213b67bb7af224b2877736f56bdb2a2c7f923edffc73b21cdb820d72d69401b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a95256ad41add78d801949e46e768f2a2a01b253d7d1b0d54cbfaa5eaace086
MD5 0b3eaaf805211461b97efba09f7d4157
BLAKE2b-256 382fb542b3ff648a642c3f39e17211bcfaaabc6b49e177cf7b2ce11316d02988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 40ba5484ceae044ca24b9c0b00e9ca69323e12da02d8dfa29a556c0da9749ee6
MD5 949a0d8a68cc6f4f864b5e92ec357950
BLAKE2b-256 fe779c667b4527d6db1a25873676afaa6dca75652b83d0243b6bc956bdec3a38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 7ea66f6395cafb363e8c98f3af7f0fbd69eef6f452ae202c90e35f8a14f819ca
MD5 8aaf3ee1a4d44f8987915227d89ac752
BLAKE2b-256 bcd5807c0a3c68007a950caa8a3494ed2036959d4b7e408b73f792a69ca52400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6413ee010104eb7b17fa11495de09cc0bfbfcbce5200c5737afe46ad57bd5983
MD5 054b5d6d75ffa67ec1db573ad2565125
BLAKE2b-256 779e308ad33ae414a9fdb70a379b5d44f8e35160a1df1ee3fb6e93cef4a70050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 016d6eb288a9dbbcaab2923252484b0f1a3627f9c969b2ef8f23d8eec652a80f
MD5 617e6d12ba3b80a3ca6f85a1dbfe3d83
BLAKE2b-256 263e31ecda98e873cbea17ae74b552f3b3a710afb3988005bad6c15ddd4a3998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1319a4f965b61f879197fb4764df0fea90fe88df6e206dd7561b142a21bad89
MD5 8fae3c18d199676815a22f4b2efe57ab
BLAKE2b-256 67d1a8fd4a8ba456e5542cfce8203bc9b83d2925c0c531e3736db79c794fbed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30d1b4d9e8cf08576bdf77ba22f2809195817040d92b7b2ef371d3ffcee18ad8
MD5 a11e873222fee0ac70293553228147c8
BLAKE2b-256 56d3cb326cc441aed66a745374e15119384027b123e8131fe042a4a5ce60edfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2619acf25d209b7380e3fc4906c51858b494b12d7808d0206a84039dced00a7d
MD5 bb7c3f11770a8c6c8f16e4bd510914e3
BLAKE2b-256 5bccc88ed6ed02c07fd6d8527a9d4b692c872f283f050fb1ef94134956077f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc5-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 5e03bec0d5d5872256af4ff2fceea87da49628ba520e1dc5809f223916276a0b
MD5 b6094880d28de2815b4bec511f067f07
BLAKE2b-256 ee63886d37017fa5de0476ee335c5ad2a9b0c786f666173fc09d5c49987914a9

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