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

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.9.tar.gz (402.5 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.9-cp314-cp314t-musllinux_1_2_x86_64.whl (103.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_gap-10.8.9-cp314-cp314t-musllinux_1_2_aarch64.whl (102.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_gap-10.8.9-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (103.6 MB view details)

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

passagemath_gap-10.8.9-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (103.3 MB view details)

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

passagemath_gap-10.8.9-cp314-cp314t-macosx_13_0_x86_64.whl (76.2 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_gap-10.8.9-cp314-cp314t-macosx_13_0_arm64.whl (75.9 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_gap-10.8.9-cp314-cp314-musllinux_1_2_x86_64.whl (103.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.9-cp314-cp314-musllinux_1_2_aarch64.whl (102.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.9-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (103.2 MB view details)

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

passagemath_gap-10.8.9-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (102.7 MB view details)

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

passagemath_gap-10.8.9-cp314-cp314-macosx_13_0_x86_64.whl (76.1 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_gap-10.8.9-cp314-cp314-macosx_13_0_arm64.whl (75.9 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_gap-10.8.9-cp313-cp313-musllinux_1_2_x86_64.whl (103.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.9-cp313-cp313-musllinux_1_2_aarch64.whl (102.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.9-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (103.3 MB view details)

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

passagemath_gap-10.8.9-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (102.8 MB view details)

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

passagemath_gap-10.8.9-cp313-cp313-macosx_13_0_x86_64.whl (76.1 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_gap-10.8.9-cp313-cp313-macosx_13_0_arm64.whl (75.9 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_gap-10.8.9-cp312-cp312-musllinux_1_2_x86_64.whl (103.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.9-cp312-cp312-musllinux_1_2_aarch64.whl (102.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.9-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (103.3 MB view details)

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

passagemath_gap-10.8.9-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (102.8 MB view details)

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

passagemath_gap-10.8.9-cp312-cp312-macosx_13_0_x86_64.whl (76.1 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_gap-10.8.9-cp312-cp312-macosx_13_0_arm64.whl (75.9 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_gap-10.8.9-cp311-cp311-musllinux_1_2_x86_64.whl (103.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.9-cp311-cp311-musllinux_1_2_aarch64.whl (102.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.9-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (103.4 MB view details)

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

passagemath_gap-10.8.9-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (102.9 MB view details)

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

passagemath_gap-10.8.9-cp311-cp311-macosx_13_0_x86_64.whl (76.1 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_gap-10.8.9-cp311-cp311-macosx_13_0_arm64.whl (75.9 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: passagemath_gap-10.8.9.tar.gz
  • Upload date:
  • Size: 402.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for passagemath_gap-10.8.9.tar.gz
Algorithm Hash digest
SHA256 19c2e2aca598513351b4d0dd91948eae55adc616004d825940db5b873a27d6ad
MD5 52ffe01268cf9c3fbf1ee04648747560
BLAKE2b-256 8ab1c02be5378188f53f2b9aeefc4137b4803c57812ffa4252baff90705b5215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb2a1d4c042e8afbf3681447a8b13df2aecb06175fd7182d9b9cb5dcc7f6b83c
MD5 4fd2eb85711c2554003dd3f83ee1285d
BLAKE2b-256 b5cca05134b0c2703e677020cb4567e2d6e5a29114c6628ff51b2368759ee8cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f716ebddcbbbac950ee4f05c45e9794f0e0b42bf7cda5a963ed97367a15b406
MD5 6fb0e51fe2ca7fde2a9a004b9d097602
BLAKE2b-256 759c84f79fe99fdfd58fbd4302f0cfbfa48ae2a2818ecab8ed092ddffcc7006c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 202418435a0f45b82492f85df587387d0a842c2e7e809ee36ce868065b0c0e8c
MD5 fabbb3752504cfa496266e14e0b57a4a
BLAKE2b-256 6b51f724c30430d91397b95d3720988aba0dbe0ccd9d73b90742cfa436b2a4a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e949246ab4251eefbacf632019825a24c825310a56ea985134af53af22575100
MD5 2bd5e7f5f731bcf57d9baa01b0970d96
BLAKE2b-256 f2589d8dc488b594bbc9090ef5f098d39f87ab0bbba924507f4755c38ecdbb2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3b673d05717a0d0c27123aea2b67b13b16ea2568830dcbc376d187ce20092c2a
MD5 97e29990a21ab976b4db2683f0a988fa
BLAKE2b-256 d50d44b3585bec06f6740332c244644790d14eb1b7ab6462e7147a5c96f13f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 7871447a86aa78d5a2057c5e098cd5226f7a43217e58937f57cbdc6bf0395a14
MD5 d6f68158c28a26fa3238ae14d195f118
BLAKE2b-256 2ab268400be242141cd9f56a6ec5aeedf0072846dc7330ea9969056d2cd76fa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3e87b26e149004c051b140d4762e76bdf8c7f21f79a2639f54bef4199d91cb3
MD5 202a8d868fc4dc0bef43d5e201a532ca
BLAKE2b-256 e6f550d3dcea2af884ef1abf9ffb6ba9e54f3676b0cf170fe3b3478d21a0d974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcd506f2dcf9596b51aa0d49f239b344a1514eb9618954d2fcc4484b86ebc0da
MD5 066c8944090fa39a5f289a25f5b11edf
BLAKE2b-256 88e115dfbc24bd8bc9212086b71febdec241451f0477d8cc82bb7c2926ce5d70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd254c73c2614832a048c70e0fd1362c6a1bd33bd0de3c18ce500a95fbbb6de8
MD5 ae22ada905e4b7273432875c21072c05
BLAKE2b-256 0bc6606e4ccbf80c0b5044bc9c9ff907ce218a3af1c42769495eaa4a3066c962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aca92f8c191b23e1ba1c4da4b220ed392386b6696cb34aaaefd6ae4814d68b7f
MD5 55a3dac2254ae6695a45a3daac28990a
BLAKE2b-256 1435ab9bc989b18dc86b88c2fb8a6a830043eaa2e3839097dcc9de5c008a0341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d3b9035cb9ff2df864ea18f0432a720a822dcd41d9a949f5651e1a1966ee921c
MD5 612636d4e3d34fa1a7bd9572680b3168
BLAKE2b-256 901872347499ab80b51bca69648cccd8fd9f0cf9f223a20af4e9c355597d9164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 87c6f9b0237dba8cf38707ff5bac5225b93bda5340d4acb2f77246ee9463200e
MD5 3d611b1b4f785ebf389a3af36b7cd2a8
BLAKE2b-256 be82bbb1d02e9f5d73beaac80f6ea0e2b1724f72cfa78f622ad20ea8b7401268

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2698406f1c958562dfd712e9dce633f56e23ca012cff571a07db7163a3db983a
MD5 4fb1e85b06ee96f4b5aaa5b75f3fe962
BLAKE2b-256 4b1ae8127b756b4ba816be011c86e5fb15ce14a761c4935affb57f5ccc93d047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7303a0719e4dc74de63202fd8f8cfeb1c887d95135d0b24387767065792ceda
MD5 22028303ae2646669f159fc0ffc0489a
BLAKE2b-256 5a31edb89d4c848cfa4a790da7d5b727d0f5066b84fb1d25616407357e7034f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49ace5a5c36f390ade98793abbce711e0c1ba4d5bfb0abb37366c3c8b39acf2e
MD5 387ab02526783399246e733dcfab319d
BLAKE2b-256 c7ffb61ccd41c46390bd9fc46b0dd656fb961c8391607d8d18b2381496060633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ab8f82f97bde8740a6f707c3d1fd048c60fe7dc4ebf26b55d60582b012b0c72
MD5 f7ba847af3f4b0aa8f3b20096a822b25
BLAKE2b-256 2c7da2eb08b12f6b8ccee59457d15fc2c29b3c7edab2c363e92d404e6ca3a3a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3d1d4f4fc1dc6843002ee0b07be7ff930fee40ddb1ffec33ae6352e598bb87b8
MD5 bb11fd789cda1a2ba5d676412adb6764
BLAKE2b-256 bf981863ca39b9f7811eed6d0a9036c205781a7f9d4a24607ab18645c73c228a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 40f0934d66ecbdcf0297de7156aebed30b1d5139f056050b1fc1c705bd19bc97
MD5 f1181f5a39f478d3995bf9e113a4eaef
BLAKE2b-256 dcfa2dfd0482a2dedfd332618704df1fd76391913a48d4e95e8395f7b92cf102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6bc20a759d07d8be8b4f19e938f81fb1e9f664ce6aaf0f1241083f3bebe72d9
MD5 752d716214ac0b536e255d92c82f4fe9
BLAKE2b-256 8cd95689b67689e3821e250c201d5226adedf02d0215e77ade1d4202ae4feaab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24de9b92a6442ef70d8db085a6f4340a2ed048ace09a8b2b763982e366933fb6
MD5 16a474ad051cb13a80de240d145b1bb3
BLAKE2b-256 a52dde0ce6d45bd385a45971ee4930bd94a411ed980057eaa85e6872aa320a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cdfd7f8331b0ddb4cc7a0689a929f06e2e0911b93f3a5e207699a2101084b246
MD5 3f5cc6b9d845d39411e33131246e96fd
BLAKE2b-256 318b4120717faa15e023c6ef8dc684c7547da14768d3bc01f3be6999e805b80c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83e46016013b39b2eadda7418b395179f911f3844c4c5352e846ba1cbf032c44
MD5 ba5e8e024fd1083c53e20f8ddbba1de1
BLAKE2b-256 c095197cfa381f85198c980ca035f34e382b488ffc2508da3e0dd7a7ff6c3fa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3792812164ccbf081911505647d9afa5d1d180f18e784e384abb6e1aedab95c9
MD5 c3fd49cd1eb4dd4f8f04726c7a9f7271
BLAKE2b-256 fd8f52335e94cceaedc3b513f4127b30eacd3a765cf419763350ac2666a2c368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 199ea8c6c63a9878d31b306c2c372f14cac733b7b2dd7de425f0346d53bf4ece
MD5 83e60bba5970404e9088d5d92d4cc96d
BLAKE2b-256 fce780f3ff5e61c92e8ea621d8e7ac6e63f414453c55be868e16c432f483e135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08127bb6f9468f2eb02cd9182ff0a16a8c1ff33e75f7e23cb63c8783188815bc
MD5 28b2cbc422bd90dc813e140d36d70ac9
BLAKE2b-256 5776577628e616b8890279c2da48fc117d8c65fdb96a535709057075c5cb0814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f779d4a1659381ae0e9f14e5e0b0eb6c8bedcda8b5b67d24c92539d8ce053a1
MD5 9aaf52e9ebe8c55f58e22dfe9a3ef9dd
BLAKE2b-256 f12a13d4d5cac510c81fd7f54555d7819bfa3727d31c987c9410a9e5f8412117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0ca774201d80fa98fa20b8e9a2b2f3eeddc663971b83e92c44a15b50dd5cb75
MD5 bd9b468984c2f8aaee62d3619429729b
BLAKE2b-256 64deced2fd10336faf7186402fee4d8536e451749c4cae4988799b6ffb202e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a4ffcbbdd806270a2c7d851f1012c79dc3df8f729fc570c40396752f851590b
MD5 91fe306ecdef1b66f2a43c542d8da3a1
BLAKE2b-256 de08b874c66b5d61a4da53c0a5d76570ee380a7075d7170da945a60dad7669e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 42526289b3ecd0425491b5dfafd337df7e6781b2160cf1adb5f825d23a3d96a0
MD5 0f871cf2220678a4ddd2b4b1a17ec969
BLAKE2b-256 66fea2e61aa25c07cdf965b66fffa0872de52ed6dd3739ec8fa32c2cd2191eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.9-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 acdf3e8a1c9d4de7915839bbc584db7d8eba222b8ec5e5a3dd1cf2ace45276c2
MD5 ec627055c3b4e378b1b09f4991592312
BLAKE2b-256 a3b9b154f3a4a9bfef668ab81f51284ca9e7b4ca2d80820a77f5554716cfc1c6

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

10.8.9 This release

31 files

10.8.8

31 files

10.8.7

31 files

10.8.6

31 files

10.8.5

31 files

10.8.4

31 files

10.8.3

31 files

10.8.2

31 files

10.6.48

37 files

10.5.49

21 files

10.4.68

9 files

10.4.11

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page