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

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.10
File Size Uploaded
passagemath_gap-10.8.10.tar.gz 375.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for passagemath-gap 10.8.10
File
passagemath_gap-10.8.10-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.10-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.10-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.10-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.10-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.10-cp314-cp314t-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 13.0+ ARM64 Details
passagemath_gap-10.8.10-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.10-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.10-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.10-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.10-cp314-cp314-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 13.0+ x86-64 Details
passagemath_gap-10.8.10-cp314-cp314-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 macOS 13.0+ ARM64 Details
passagemath_gap-10.8.10-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.10-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.10-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.10-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.10-cp313-cp313-macosx_13_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 13.0+ x86-64 Details
passagemath_gap-10.8.10-cp313-cp313-macosx_13_0_arm64.whl CPython 3.13 CPython 3.13 macOS 13.0+ ARM64 Details
passagemath_gap-10.8.10-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.10-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.10-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.10-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.10-cp312-cp312-macosx_13_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 13.0+ x86-64 Details
passagemath_gap-10.8.10-cp312-cp312-macosx_13_0_arm64.whl CPython 3.12 CPython 3.12 macOS 13.0+ ARM64 Details
passagemath_gap-10.8.10-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.10-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
passagemath_gap-10.8.10-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.10-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.10-cp311-cp311-macosx_13_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 13.0+ x86-64 Details
passagemath_gap-10.8.10-cp311-cp311-macosx_13_0_arm64.whl CPython 3.11 CPython 3.11 macOS 13.0+ ARM64 Details

Total release size: 2.8 GB

Release files / passagemath_gap-10.8.10.tar.gz

Download URL passagemath_gap-10.8.10.tar.gz
Size 375.5 kB
Tags Source
SHA-256 checksum
How to use checksums
ae81451d8ac44b6c536234239af58261e546791fac24052ad39f5db872bd512b
BLAKE2b-256 checksum
How to use checksums
f6b6a9ba88d0cc934792e158ad252c33fc6dfa0bf90829f48100c6601c9fcbf4
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.10-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 98.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b3e0c56afa8f7b4c076f8323eb80c8e1ff33cc931124d8f2315b03b8f31354bf
BLAKE2b-256 checksum
How to use checksums
5564cb102d65f460b64e32485894a81b307c922af2bcdee720b64f020323c3e0
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.10-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 97.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0544d11c54433cd0ae322ba288beeb4d8fd8a14818369a1cf70090dc60e47155
BLAKE2b-256 checksum
How to use checksums
1f7caffb533060df86dfa079a1fe83cf9d04ea72d0920c040d9998bf083c08eb
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.10-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL passagemath_gap-10.8.10-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 97.3 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
23eba901d4c2822236179999d50e31ad681421d38e234cf9b50f80102f39ef36
BLAKE2b-256 checksum
How to use checksums
fce10d94fb1e430b9ad06efe8d67a98bbac873e8aec9be828099a8280e7a2516
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.10-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.10-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 97.2 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
9c0013a36f74e8f9d492aecc42ae264ff107c510bfca4d09f6cbb37b6a3d22e1
BLAKE2b-256 checksum
How to use checksums
c4abaadce174214b242e18af34e819db6205d966c907201e2bc5d38c9a1d713b
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.10-cp314-cp314t-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.10-cp314-cp314t-macosx_13_0_x86_64.whl
Size 82.5 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
aa808d94b8e10f4fb6d208416627d9c1c5d63c2b74aa479d9169ffe4055009cb
BLAKE2b-256 checksum
How to use checksums
6b7503224e0314a7c834bfa2b8770472e90454384d18cd263c8decc8a355bd8d
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.10-cp314-cp314t-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.10-cp314-cp314t-macosx_13_0_arm64.whl
Size 82.3 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
5fa206a3267cd39e19e64cf3d1cb15303601be05bc3b3f187ce2f80d95dec5e8
BLAKE2b-256 checksum
How to use checksums
734b140006d222428de37c90670e6766b9491198a206c1bf672250045c0a0042
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.10-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.10-cp314-cp314-musllinux_1_2_x86_64.whl
Size 97.6 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e8fdc3077a3241d14e11f74d40842a644af14a35d542c99fb1b5448749d173ed
BLAKE2b-256 checksum
How to use checksums
e77a2c681c336d461cccad3634d6c9e68d68d18782c04fdafd8f15cec75652a3
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.10-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.10-cp314-cp314-musllinux_1_2_aarch64.whl
Size 97.0 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
194c32438fe7b9608a80d7f32e810839fe0ce70db293dde93fa4fbf6a85b1863
BLAKE2b-256 checksum
How to use checksums
6a2f910b48a92c28857fd0a4b6ea3ea671fb02de480885af8d111cba65b03df0
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.10-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL passagemath_gap-10.8.10-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 96.9 MB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
713edca8d03c478fd142bfc5249e67b1e758e7ae2c8f8fdb8a9372b8bf019a9d
BLAKE2b-256 checksum
How to use checksums
ceeb8b04659c57a511614e3a5d5ec3d4b635d6a9e1e9531f14b1b8afcf8a1cbc
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.10-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.10-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 96.6 MB
Tags CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9bd76742293a10c715d4e5baf90fdbd8a809e7b9bbab90d459e8532d75c98200
BLAKE2b-256 checksum
How to use checksums
7847fc1c266d9845d9c7d1d4fbe63e41e74cbadbfb111d91fd56d60c8927b879
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.10-cp314-cp314-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.10-cp314-cp314-macosx_13_0_x86_64.whl
Size 82.4 MB
Tags CPython 3.14 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
60a0df0f9baea00cd55b807c77fcd7f32468507eda232cfd101784dd0bdd090e
BLAKE2b-256 checksum
How to use checksums
b0b4c469526e9b9db64c2cdfbb7ccd724f4c26d7d48d383866b56eac268b46ee
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.10-cp314-cp314-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.10-cp314-cp314-macosx_13_0_arm64.whl
Size 82.2 MB
Tags CPython 3.14 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
cb52234d40bfd9c6b3ac6f39ad286ba8d264d6dd5e529a0919acb84cdd0c0604
BLAKE2b-256 checksum
How to use checksums
d6ae6e57398de6e6a7df54b7d28c6c36e62d2ffda4845b1900faf15801aef2f0
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.10-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.10-cp313-cp313-musllinux_1_2_x86_64.whl
Size 97.7 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cec5276d261a979e6119be668c7bbc06a6039871feacc928daab7b46e781b8e9
BLAKE2b-256 checksum
How to use checksums
7af4b016b86b782c55d6030197ef1c3f0a09d15e3bbdc07e8b91932f8e8a6c9d
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.10-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.10-cp313-cp313-musllinux_1_2_aarch64.whl
Size 97.0 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1d66f4f6d9bef7111cd91e165f2527f4eaf73950701b2b5483e8ce9dc4687854
BLAKE2b-256 checksum
How to use checksums
0f2af286225436f440896805c6ed74a0b7c1965d81fa5f766b721162839acf37
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.10-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL passagemath_gap-10.8.10-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 97.0 MB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
41ab9efd1f5aabd3e208014cb8441a55f7acfe614a4e7c8ff67c68c0659b4b4f
BLAKE2b-256 checksum
How to use checksums
57aece27f0a5dd31b44af0616ff4a91cf39573aa03a5730102a6a81b31299748
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.10-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.10-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 96.6 MB
Tags CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5a9d8e055ba9d4ad67d6f852d2fa303bc669e57f1bea0891486b87ef22a44370
BLAKE2b-256 checksum
How to use checksums
23df74cbd9ac35c224d65fe0c66ecef877a14d164e7304559a85fcb1079c197e
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.10-cp313-cp313-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.10-cp313-cp313-macosx_13_0_x86_64.whl
Size 82.5 MB
Tags CPython 3.13 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
14bbc5b3fb6dcd4fe4245d2188747a5bb756f051054651c812bf0e28a13bdd65
BLAKE2b-256 checksum
How to use checksums
509def36853682784625e0a42e84ef456605ed8d98ad08d909d1ebc3c61a78a3
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.10-cp313-cp313-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.10-cp313-cp313-macosx_13_0_arm64.whl
Size 82.2 MB
Tags CPython 3.13 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
8de394973174dab3861b48a4d261a1004b8a609bc49b52beb01095209c1fb42a
BLAKE2b-256 checksum
How to use checksums
d3ff4474f5c17093efa3c6e4c11d7dcb8bd09ee82cf8b4453e65c4461dca8bac
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.10-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.10-cp312-cp312-musllinux_1_2_x86_64.whl
Size 97.8 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5c3a23288266392ded5aa20daebccdcb167ee13cab3d03b8c04de3ff590dbe51
BLAKE2b-256 checksum
How to use checksums
c01bb6fbbe5e739c9cb0a185657ce987c5211703f5fb0ac60dbe056fcd915860
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.10-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.10-cp312-cp312-musllinux_1_2_aarch64.whl
Size 97.0 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a6c12ae78d7a2b218bac0b8e4591eaa1cb33677bcf1a02215437bf3730ea4bbd
BLAKE2b-256 checksum
How to use checksums
71cf51c166ccd99771ae9269de1c5381e00c07e2396c08463fa52ac0cb6b66ab
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.10-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL passagemath_gap-10.8.10-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 97.1 MB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6559854c68fe928dff915f1fb3db0e8dd0e94c2d8bc99c9694af169c1261b761
BLAKE2b-256 checksum
How to use checksums
8f2e789bb61f78d9b99306ba882b3b2c2f57d86dc72a6578b233bfd834f994eb
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.10-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.10-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 96.7 MB
Tags CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b4efe5ca12f8d55b99d41a99ad3338bf2aff724e8feae23b5894f5b4aeafad99
BLAKE2b-256 checksum
How to use checksums
cb80ad928febbe2f3f2b8d7440c11c23337e08b9bfda4dad1c277021a63eedb3
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.10-cp312-cp312-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.10-cp312-cp312-macosx_13_0_x86_64.whl
Size 82.5 MB
Tags CPython 3.12 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
470fb4c1e875660a09b5477d05ca95cb59c01a7926fecb33c67fe5e70f6a0416
BLAKE2b-256 checksum
How to use checksums
62908fc6175d67005e77ddb33e1ce4a06c3c5d8814fe36c168a64c471fee0409
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.10-cp312-cp312-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.10-cp312-cp312-macosx_13_0_arm64.whl
Size 82.2 MB
Tags CPython 3.12 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
b748583c220eb7d778e68d3580d434d9b140dc9a9f09f12b05587b4f82cc85f0
BLAKE2b-256 checksum
How to use checksums
241a53541df94c565197152dcab6aa45cc87eb3ff44f4027af66678ade4a7b70
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.10-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL passagemath_gap-10.8.10-cp311-cp311-musllinux_1_2_x86_64.whl
Size 97.8 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6bf815d999854af9126c516485d31d498d7b98653ac67fabcdd86461c36db288
BLAKE2b-256 checksum
How to use checksums
84753d0b7e230d533c35b16f41724d6256e11611ea27302d3824798fe978bb79
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.10-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL passagemath_gap-10.8.10-cp311-cp311-musllinux_1_2_aarch64.whl
Size 97.2 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6cffe643dfd70c11ffc7d698e63df738b9a9706c4766e0d929f2f6850b9b1cb5
BLAKE2b-256 checksum
How to use checksums
8b40215ee7f23ff8aa7e5ab1b279d6e87bd1d7d7518c295c085e0a83dbb3adbd
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.10-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL passagemath_gap-10.8.10-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 97.1 MB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
119abbf0133cc4a84d82dcd1bd790f5fcb3d9e0066aa15b1a8b3fc10c99abcf8
BLAKE2b-256 checksum
How to use checksums
4ad25c0e13815176ce3f82aa9b8f298e811304b3f8aa225855f20acef646bd5f
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.10-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL passagemath_gap-10.8.10-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 96.8 MB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ebf0af9609970ee741ed010aa430db675ede092f273f3c3f9973ae4cf35a915e
BLAKE2b-256 checksum
How to use checksums
f0d8bfb28c33fe21d5a8fa4d30bf912fd422e55f19bbd1711fb6ddaaad341abf
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.10-cp311-cp311-macosx_13_0_x86_64.whl

Download URL passagemath_gap-10.8.10-cp311-cp311-macosx_13_0_x86_64.whl
Size 82.5 MB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
c2b0fc835788b054c8c9b89239197dfddc95d58bdaf0d37d58525ffb41d38eed
BLAKE2b-256 checksum
How to use checksums
b649e8c8f3d1c4a8acaed44dc8baadf5e57412e457b0631cb0a958e9645f937f
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.10-cp311-cp311-macosx_13_0_arm64.whl

Download URL passagemath_gap-10.8.10-cp311-cp311-macosx_13_0_arm64.whl
Size 82.2 MB
Tags CPython 3.11 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
648b6ed76661962041a7b2e5dd174a98b48eb9e682e08645bb268261d911f131
BLAKE2b-256 checksum
How to use checksums
1f7f64b736bceba9f79c83a021de03c42faac1277a5fc635b70d888ae5b00a12
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