Skip to main content

passagemath: Computational Group Theory with GAP

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 --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 --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

Release files for passagemath-gap 10.8.12

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for passagemath-gap 10.8.12
File
passagemath_gap-10.8.12-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
passagemath_gap-10.8.12-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.12-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
passagemath_gap-10.8.12-cp314-cp314t-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 13.0+ x86-64 Details
passagemath_gap-10.8.12-cp314-cp314t-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 13.0+ ARM64 Details
passagemath_gap-10.8.12-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
passagemath_gap-10.8.12-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.12-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
passagemath_gap-10.8.12-cp314-cp314-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 13.0+ x86-64 Details
passagemath_gap-10.8.12-cp314-cp314-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 macOS 13.0+ ARM64 Details
passagemath_gap-10.8.12-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
passagemath_gap-10.8.12-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.12-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
passagemath_gap-10.8.12-cp313-cp313-macosx_13_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 13.0+ x86-64 Details
passagemath_gap-10.8.12-cp313-cp313-macosx_13_0_arm64.whl CPython 3.13 CPython 3.13 macOS 13.0+ ARM64 Details
passagemath_gap-10.8.12-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
passagemath_gap-10.8.12-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.12-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
passagemath_gap-10.8.12-cp312-cp312-macosx_13_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 13.0+ x86-64 Details
passagemath_gap-10.8.12-cp312-cp312-macosx_13_0_arm64.whl CPython 3.12 CPython 3.12 macOS 13.0+ ARM64 Details
passagemath_gap-10.8.12-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
passagemath_gap-10.8.12-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.12-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
passagemath_gap-10.8.12-cp311-cp311-macosx_13_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 13.0+ x86-64 Details
passagemath_gap-10.8.12-cp311-cp311-macosx_13_0_arm64.whl CPython 3.11 CPython 3.11 macOS 13.0+ ARM64 Details

Total release size: 2.1 GB

Release files / passagemath_gap-10.8.12-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 91.9 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fb59f77268d12655cad4c1b8e78d74a624332416753a9a280872e9f969bc1256
BLAKE2b-256 checksum
How to use checksums
5208738bb6dfbd9a4165623ad4f297fe56a7d2192ab2bd41cc133e08b60ba1f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.12-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 91.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7501d000b0212928d4cc377d14706e8f4d2d803379d2143fd2a9ba52435f2109
BLAKE2b-256 checksum
How to use checksums
9d1f6dc50b68fce695c433d43bb1e295a15e0a3b331bbe1925460208d95be55b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.12-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 91.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4dbed3a41f553f5a694c4834268bf9d64fbc4265ea4ed3006647c498c9211c54
BLAKE2b-256 checksum
How to use checksums
71d80d1e5f2fe304c630b4869a33b776f686136695e7348a45dca89455c569ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp314-cp314t-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.12-cp314-cp314t-macosx_13_0_x86_64.whl
Size 76.0 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
843e805e0a11ebea3acb0b697b1311097daaf6e37b4004149df20db51a01a43b
BLAKE2b-256 checksum
How to use checksums
584f1792dbbafe49f87567b76fbe1636cbf303977249a0f220c0474c71c7049c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp314-cp314t-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.12-cp314-cp314t-macosx_13_0_arm64.whl
Size 75.7 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
9d4399f9edff7845cff6a73464e9772719ce9d1a3f8c465c4adde29f4e729ea9
BLAKE2b-256 checksum
How to use checksums
7498cc1c90f0f739dc6aa245bf628fbb8ece110251f8b09c79d6f9985d581d01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.12-cp314-cp314-musllinux_1_2_x86_64.whl
Size 91.5 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
174d3fd88c2259f97b98d9e7c1a05de89943ab5c9b807c7266402be27daaeb4e
BLAKE2b-256 checksum
How to use checksums
19273fb72e2b762b27cdd4a49a0b4c7a61da39f565666403bb989b3771e62b11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.12-cp314-cp314-musllinux_1_2_aarch64.whl
Size 91.1 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
52f480033ed56b2d1e925bf3462de74bdde6205f440e092480bc00d740db2e54
BLAKE2b-256 checksum
How to use checksums
c4a6c2d7395637fb0fc4671a97424d418220fff3b69970857a27ced665dbc24b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.12-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 90.4 MB
Tags CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
372fb816cd67dfcc66526064dd8bedc512ed8df3d9ef49e7490ffc1962af6856
BLAKE2b-256 checksum
How to use checksums
d0377be8045bd0b5c9747be549f7fa197c1ba75ec740da849017c492d623c8f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp314-cp314-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.12-cp314-cp314-macosx_13_0_x86_64.whl
Size 75.9 MB
Tags CPython 3.14 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
397bb15d53907e2abd8862d3b9bd86d0e65b494b4999a9a633e93f9e38740713
BLAKE2b-256 checksum
How to use checksums
ef379bf78ed915fa49dd6efb1d840ba62f1b3e802a95f73a844fa3a6251dc502
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp314-cp314-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.12-cp314-cp314-macosx_13_0_arm64.whl
Size 75.6 MB
Tags CPython 3.14 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
7be40411d39391bf8c28eb2838c7137d20d6adaa8321a5180d802b1ba4c874e8
BLAKE2b-256 checksum
How to use checksums
2b884393243918ffb308631615282623c9ebf8c8ef05760ccac7f7199fb53d9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.12-cp313-cp313-musllinux_1_2_x86_64.whl
Size 91.6 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5ecaac4a3b1432d56e28e35b3f2a3d29ab676d325a7372a45bc5f6f5fa2fe893
BLAKE2b-256 checksum
How to use checksums
e9b7c7687fd6463a72081a09c9ea067548a9c92ab85b1ff3f37a83cefa285b0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.12-cp313-cp313-musllinux_1_2_aarch64.whl
Size 91.1 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d661a3343b75e54389e5a34f3b4f189c36b8a43c8d9a015ea7bb69b7c1b462f9
BLAKE2b-256 checksum
How to use checksums
53baec4cf3e76d99b736d5c393516bb9fcac249dabbe14128ffe987b8582b343
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.12-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 90.4 MB
Tags CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
85f45c6c4e1bc18b20e9db0956b292ef7a542a9e48c5d4fe039f6779c2825b2b
BLAKE2b-256 checksum
How to use checksums
04fbfaf4017423eae78b2a1cbaabe9941b0a4205cd1b261d6d39d4fa2c9e637b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp313-cp313-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.12-cp313-cp313-macosx_13_0_x86_64.whl
Size 75.9 MB
Tags CPython 3.13 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
5aac1623f83c1df63098c243ae63a4bbc689fc701be975039310904e9be164fe
BLAKE2b-256 checksum
How to use checksums
dab53f896ff5433a58c269603bc5b56104e5a501d2091ba06a463f267eb63d8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp313-cp313-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.12-cp313-cp313-macosx_13_0_arm64.whl
Size 75.6 MB
Tags CPython 3.13 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
822638c2f55ca8a1188b99108d149dbc90f502b535a65e5b233b15af521cbad9
BLAKE2b-256 checksum
How to use checksums
40a0cc7ed79cdaf204373de6ca1d63380466f3e09986127cc295deb872c000e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.12-cp312-cp312-musllinux_1_2_x86_64.whl
Size 91.6 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3ad6d601821c065362bc8aacfda500746352c8c3b77d4722c52959f4b2b82bad
BLAKE2b-256 checksum
How to use checksums
0c1405e6ce37fdb031312d24d2e8d070172737c725b80d4a53e5cd79ad30379b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.12-cp312-cp312-musllinux_1_2_aarch64.whl
Size 91.1 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d6f469e137b347aede5f13845ee410ecc1dec2acedf209543d61713d3fdf98b3
BLAKE2b-256 checksum
How to use checksums
2574f6445fb00969d48d7bf477a4d41a4346fae7a7d1c27bae72a50b930d3f92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.12-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 90.5 MB
Tags CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
42e24d58305b715ee8a41754d08541f8e78d39cdde5436fbe43d37dbab86c37f
BLAKE2b-256 checksum
How to use checksums
c62c35b51202ed6e7f2d627e299a07e35231bfc01708009406eaf84c217053ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp312-cp312-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.12-cp312-cp312-macosx_13_0_x86_64.whl
Size 75.9 MB
Tags CPython 3.12 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
a6142e8ebdde86c369a878bf0a4778dcdc6013b898703b6d6c41de8b11d13def
BLAKE2b-256 checksum
How to use checksums
7e71d487a1e85932d7a087441c8e23bfc99b465992ec8fb5af03b59405d465bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp312-cp312-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.12-cp312-cp312-macosx_13_0_arm64.whl
Size 75.6 MB
Tags CPython 3.12 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
485b487300aa51df6b0db1ce9a10b9fed23cb690b52d29d24d60d501d91ef1ff
BLAKE2b-256 checksum
How to use checksums
4b21dfb3ce88b0ef842c89e907459e9d1dddd9d26d27b8615ef7bfd660b1ff32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.12-cp311-cp311-musllinux_1_2_x86_64.whl
Size 91.8 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0b687d024be7f456716081679662e5bf690d220f040ee5e29ffe54c78a4ce34c
BLAKE2b-256 checksum
How to use checksums
71be354c0a75f3540d14a519b750fde0d665b60f36e3b957c7560e8592306d7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.12-cp311-cp311-musllinux_1_2_aarch64.whl
Size 91.3 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
16a34134d115ca430f7684b599e1fd69ab6d4bae46f6dc93fe452839a784248e
BLAKE2b-256 checksum
How to use checksums
1d3846be8976311f7975de4cedf1e9a33e2c0d784add49175bc253e200eee0d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.12-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 90.6 MB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8417b6e43fefd206a010351a9b1f2dbb431bf61879a90878546b2630f4050aec
BLAKE2b-256 checksum
How to use checksums
9f819a71ce9496fd0c62386bb6b878b0f3984c9f058c0046faeda891110472f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp311-cp311-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.12-cp311-cp311-macosx_13_0_x86_64.whl
Size 75.9 MB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
c29d2574e93f4b89ff6e7d9fdb3af96e31ec30ecec45f1c7ff3b4d188304642e
BLAKE2b-256 checksum
How to use checksums
f09720535ceb65486f81472b2a681e718343169fa629ad20d1fcc3c6c91c8b6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_gap-10.8.12-cp311-cp311-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.12-cp311-cp311-macosx_13_0_arm64.whl
Size 75.6 MB
Tags CPython 3.11 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
e88f37a0a0d0cda29160a424ec1423a7474b542e3db94d6d4757c02e79896e69
BLAKE2b-256 checksum
How to use checksums
b94db30aa876874cea3b7235b820ea7d599c45dea6568bd170c322eb4fbd541c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page