Skip to main content

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

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

Source distribution (sdist)

Source distribution for passagemath-gap 10.8.11
File Size Uploaded
passagemath_gap-10.8.11.tar.gz 375.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for passagemath-gap 10.8.11
File
passagemath_gap-10.8.11-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.11-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.11-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
passagemath_gap-10.8.11-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.11-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.11-cp314-cp314t-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 13.0+ ARM64 Details
passagemath_gap-10.8.11-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.11-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.11-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
passagemath_gap-10.8.11-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.11-cp314-cp314-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 13.0+ x86-64 Details
passagemath_gap-10.8.11-cp314-cp314-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 macOS 13.0+ ARM64 Details
passagemath_gap-10.8.11-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.11-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.11-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
passagemath_gap-10.8.11-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
passagemath_gap-10.8.11-cp313-cp313-macosx_13_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 13.0+ x86-64 Details
passagemath_gap-10.8.11-cp313-cp313-macosx_13_0_arm64.whl CPython 3.13 CPython 3.13 macOS 13.0+ ARM64 Details
passagemath_gap-10.8.11-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.11-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.11-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
passagemath_gap-10.8.11-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
passagemath_gap-10.8.11-cp312-cp312-macosx_13_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 13.0+ x86-64 Details
passagemath_gap-10.8.11-cp312-cp312-macosx_13_0_arm64.whl CPython 3.12 CPython 3.12 macOS 13.0+ ARM64 Details
passagemath_gap-10.8.11-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.11-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.11-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
passagemath_gap-10.8.11-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.11-cp311-cp311-macosx_13_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 13.0+ x86-64 Details
passagemath_gap-10.8.11-cp311-cp311-macosx_13_0_arm64.whl CPython 3.11 CPython 3.11 macOS 13.0+ ARM64 Details

Total release size: 2.7 GB

Release files / passagemath_gap-10.8.11.tar.gz

Download URL passagemath_gap-10.8.11.tar.gz
Size 375.7 kB
Tags Source
SHA-256 checksum
How to use checksums
8111327921002ef8852baa8a173d4e3128806b5f02c93210b7668c5c0dd43260
BLAKE2b-256 checksum
How to use checksums
b76451ef796a6bbdbdd2d41f5d999f0158cbb8e652fc54573302ae6d05962822
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.11-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.11-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
2e976b3bf209f62884d7ab237713f3290eb765e724aaf5d4bdf5129ab23ebd6d
BLAKE2b-256 checksum
How to use checksums
c7eef8c3d5e2914070be7b0f9772863860a5a60ccae5654b1b0cc357439769b6
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.11-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.11-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
e769265ea23476d2fa81e69b13f52a52bd1328283b9fc420165bb24bb9839730
BLAKE2b-256 checksum
How to use checksums
0d97e95bf184a8e9739d9672868dd836fe3b804ec2a59a59b94cab1272f1dec3
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.11-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL passagemath_gap-10.8.11-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 91.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0c4c42f03897f1720336f0b88aad4f67408ec710320cf2a5b5a877e7834b7739
BLAKE2b-256 checksum
How to use checksums
1be1d0989555147c8f01bde68e62773b6eb3391a8ba2681ac92b21331db34825
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.11-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.11-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
d5215e82c34b8cb5a9f68e7870af628118857108c7c95a6a7caad6ee2d7f9458
BLAKE2b-256 checksum
How to use checksums
2696c8a00c7fa034f90f3fc30f208e69f9965d981fc6c72b310ad3692b55bc43
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.11-cp314-cp314t-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.11-cp314-cp314t-macosx_13_0_x86_64.whl
Size 76.6 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
a8d2d9a01d46738ec5fc5d2ca87086a03a86abf3f551d183cbc2e1a823e41eec
BLAKE2b-256 checksum
How to use checksums
1cece535f15780f3841727fa75e1c877f4bdbc5f44c85208fef3324166571fbc
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.11-cp314-cp314t-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.11-cp314-cp314t-macosx_13_0_arm64.whl
Size 76.4 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
f3be3c47a938914798f67d3ef8a002048b914588e4c0226ba0cb125262d4b611
BLAKE2b-256 checksum
How to use checksums
d0dfc00c3d169c335209a5eaefcb8cb284e8e65315e244d6f025a15833b3658f
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.11-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.11-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
2bf165bc51a5ec13c2c21bc67a348d1abaa760d2ace194d81bcd3ef5f2bc8086
BLAKE2b-256 checksum
How to use checksums
9da21a867b234eb9bf6cf2a4b75db458b270cb43e3d7d5ec10b2a29d45652dc0
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.11-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.11-cp314-cp314-musllinux_1_2_aarch64.whl
Size 103.5 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a8f484a5a511f00b7a04146ae15b74432c20a8e6b12028786be831ee3c39d0fb
BLAKE2b-256 checksum
How to use checksums
80de493b88df424e3d24af7271924226eea7d6634f800a27a870ffbae012e038
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.11-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL passagemath_gap-10.8.11-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 103.8 MB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8c782dfff3b16c03e33ea857b9bef9da55a2e974ce1ef9de9c079b28b16e35b4
BLAKE2b-256 checksum
How to use checksums
a30dc1b1b70cbc9fc5c00111d85d2b459037eb8fa0e21c9b82e21d9aaddd6d35
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.11-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.11-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 103.3 MB
Tags CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f8aa408f22b0aaf7672386510528fa87223f17169a731c490372ed593eb05fad
BLAKE2b-256 checksum
How to use checksums
940959617345839e7e8b73ca75b63cce2dfc52b21f02aab46077eef9b9600a83
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.11-cp314-cp314-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.11-cp314-cp314-macosx_13_0_x86_64.whl
Size 76.6 MB
Tags CPython 3.14 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
0a494387b2925d42e740257bd57586d5788ee5e923c0435f627914c5e44fa8e2
BLAKE2b-256 checksum
How to use checksums
1351d0323996537dfdb915b8d47291db19f97b803b80288fcca53d2600c7c61e
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.11-cp314-cp314-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.11-cp314-cp314-macosx_13_0_arm64.whl
Size 76.3 MB
Tags CPython 3.14 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
ba1ea8e23265f1e5af3341bb2123c661ce8167aa94301c672b4c7f8f2c426edc
BLAKE2b-256 checksum
How to use checksums
cc0b086964a6678f974a1ce891da4603b473679369c9ef3383a0d3525d321606
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.11-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.11-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
333a613f2928d52d92d8da6c8d9d811239b77fb6789c14b688a88747c203859c
BLAKE2b-256 checksum
How to use checksums
0502c560db0063f2d02ce7346bfa4749332da3ad348bb5715cc59403f48af706
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.11-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.11-cp313-cp313-musllinux_1_2_aarch64.whl
Size 103.5 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2b108966efeac77506e4b54f05a0f754a6dee04ff7db99be66f07d56c27ae5e9
BLAKE2b-256 checksum
How to use checksums
aa8e191911f3cdc93205e9f464c3996b21a19871fe42f3d14065093055058e3a
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.11-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL passagemath_gap-10.8.11-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 90.7 MB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c53bc7885d867243aeb80ba596e20c03aa6b6794232113c9f86a17b6bc405be6
BLAKE2b-256 checksum
How to use checksums
91d6e598aef17f83b0eea2df22094da84457a3ffbee39259151135ad41012880
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.11-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.11-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 103.3 MB
Tags CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
86d597e2072c17683454961190b3a7b1d312ac12f23f59ba64c8296e663fadc8
BLAKE2b-256 checksum
How to use checksums
281de5189d8871bd4d6868ad2bb53b28cbc9a276ed4589b79a306d03ddf03fbb
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.11-cp313-cp313-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.11-cp313-cp313-macosx_13_0_x86_64.whl
Size 76.6 MB
Tags CPython 3.13 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
c65a40af8558b75afc09041ab0b7065010e8ad3d756220c4667836afbd1773c9
BLAKE2b-256 checksum
How to use checksums
74aec33f43bad067cff7c07566ce2c0e109625e5b792f3e13f65edecca0fdeb7
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.11-cp313-cp313-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.11-cp313-cp313-macosx_13_0_arm64.whl
Size 76.3 MB
Tags CPython 3.13 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
5945e9a0b1b247756ae4395a211899e86910f8d29dcac2f2d8a14f5a52b5fa2d
BLAKE2b-256 checksum
How to use checksums
ea610420e351b186c0368030cb5eef81174154822e238ac9c617a7efee4a18f8
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.11-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.11-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
89f93ab02266f52d43e0d112c126d39b529c30e8c33bc1564932d917b50c360e
BLAKE2b-256 checksum
How to use checksums
17f50855ba05487533b4482259cf12420627f018f002385c8355c479f83f457a
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.11-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.11-cp312-cp312-musllinux_1_2_aarch64.whl
Size 103.5 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
74954593e2a9ee8669d81c4e0693ee9e17cc69835ac4efdfc856991f99853a79
BLAKE2b-256 checksum
How to use checksums
56958563ba32847325315b11279465870f5ee5a98f55f897f680b967f15b2040
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.11-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL passagemath_gap-10.8.11-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 90.8 MB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
eafbe34c8bafc0a97c13586f4eab4ef373f0ee27d15cac773fd4c35759e1869f
BLAKE2b-256 checksum
How to use checksums
a040ccb82a367d699589f7812700099e2fd93c6f578634d53ba569d79b4ea249
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.11-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.11-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 103.4 MB
Tags CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
144add7c2f7152ca4878f01acf7a6ffa537c50d81ab893540e5d1d282474f41f
BLAKE2b-256 checksum
How to use checksums
5904d5ccbf5adaaaf0f258a0c7b21a77232d39f2708c056863761f6238550e49
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.11-cp312-cp312-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.11-cp312-cp312-macosx_13_0_x86_64.whl
Size 76.6 MB
Tags CPython 3.12 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
62a8963892823aa0e4f3a3ef446d0a25a4df9312de10ee6c0db333e660af8927
BLAKE2b-256 checksum
How to use checksums
cdde25a77a4f4122472a8366c508790a6b5edcada5ed9f7a44a264dddcec4123
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.11-cp312-cp312-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.11-cp312-cp312-macosx_13_0_arm64.whl
Size 76.3 MB
Tags CPython 3.12 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
67df8cb576c0918dfd30b6b52f3d4d997798c7f80958048d6b5af2f94d00addf
BLAKE2b-256 checksum
How to use checksums
8430797a398f5ee491d61363a5fd054f877bbe3cd89db9d64603e66f96a98b83
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.11-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.11-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
1f74460ec437da73837bf98634aa4d4d8df934421855fac4f20b653a04ae490f
BLAKE2b-256 checksum
How to use checksums
b6f69b510ac26db1818c4bab7942f9f238b4b6ffeeb39d41e8a8a4c0ccf157ff
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.11-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.11-cp311-cp311-musllinux_1_2_aarch64.whl
Size 103.7 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d8bd85b2115bda70128a0700bdac4b4e48cb55be01f73e785b5e83def3d5edf2
BLAKE2b-256 checksum
How to use checksums
15f06285e9e459a3a349894de7578112bad420263598bb5ec1eb0cca7895483c
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.11-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL passagemath_gap-10.8.11-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 90.8 MB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a55ee030b4539130bb15b0968cd07e9a87f0e9bac873b233e778ac954ef4e852
BLAKE2b-256 checksum
How to use checksums
e85a8d5089e63f980d5c9152fb6d1375d30288dc3d1aff228e98e1c9d39e3a50
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.11-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.11-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 103.5 MB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8ce714babbc022729843b666c6e27864d3fea517ca806d9d80e27e3c8ba68757
BLAKE2b-256 checksum
How to use checksums
4c466d2a12de6e10133c4a2bb53ab53dea7114a6fdccfddd02ea29eca7d1aaa4
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.11-cp311-cp311-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.11-cp311-cp311-macosx_13_0_x86_64.whl
Size 76.6 MB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
3c988d38ac6ac2ea71aabd1621fb017e6bb83c01e0d00dd7fc48637ccd78e2bd
BLAKE2b-256 checksum
How to use checksums
aa6d99c99fba766ea429c0e54438798ee512a60a50f177161d67d99fe0b94000
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.11-cp311-cp311-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.11-cp311-cp311-macosx_13_0_arm64.whl
Size 76.3 MB
Tags CPython 3.11 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
2865c90ab4bee1cbc72bdc445746886969a9fe3389edb16f2786997aa8d228d9
BLAKE2b-256 checksum
How to use checksums
8b37268be463f19e23f04c2a9c322e0c2c722bb6df7e2371ee827325781702d1
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