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.8.tar.gz (402.4 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.8-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.8-cp314-cp314t-musllinux_1_2_aarch64.whl (102.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_gap-10.8.8-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.8-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.8-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.8-cp314-cp314t-macosx_13_0_arm64.whl (75.9 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_gap-10.8.8-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.8-cp314-cp314-musllinux_1_2_aarch64.whl (102.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.8-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.8-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.8-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.8-cp314-cp314-macosx_13_0_arm64.whl (75.9 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_gap-10.8.8-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.8-cp313-cp313-musllinux_1_2_aarch64.whl (102.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.8-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.8-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.8-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.8-cp313-cp313-macosx_13_0_arm64.whl (75.9 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_gap-10.8.8-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.8-cp312-cp312-musllinux_1_2_aarch64.whl (102.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.8-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.8-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.8-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.8-cp312-cp312-macosx_13_0_arm64.whl (75.9 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_gap-10.8.8-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.8-cp311-cp311-musllinux_1_2_aarch64.whl (102.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.8-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.8-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.8-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.8-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.8.tar.gz.

File metadata

  • Download URL: passagemath_gap-10.8.8.tar.gz
  • Upload date:
  • Size: 402.4 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.8.tar.gz
Algorithm Hash digest
SHA256 d49f710e79fcfeb3de7216ad04ada79b8989ef391d5c79653d72cba9e11f05aa
MD5 86a60c150c716edbf951d7ef93caa52b
BLAKE2b-256 e6e8788a27a4591cd1c1c53928336bc2dedb1a0917d1d9927f1e114531fb58a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60aa3f2479b2d517ca6e7151bfdc10e6a6ce86ebeef8da9fae1056b136430c15
MD5 cad71d71e60fee363dc5af56d8009471
BLAKE2b-256 eed056da115201d2105391a43eb1df5da14a1fdacb012b373fa66ab4e0b070d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efea10806553b5239cfb4c4be5097a41a2d63a89f2837504ca80a8a9c3041ec9
MD5 ffc1e404c7ef9e4e064681131b54f791
BLAKE2b-256 9712b5ea6f9240eead20f089fd692cc6a2b99a8c90b453c5576ad67befd638c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f353e8278e55929637eb1b4bc607be3773534d0518d386e344041c6b3495583f
MD5 c6677b42a0e4b651f2cf4375f7d95ea7
BLAKE2b-256 7193420bb6489c7aacc5ff22c5e2db4bb4e13d8e07fe6cf959359c179eb7bdd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e987a3639a13f19577c7559e581c9f79de13a74f9d9c960e0c7974a1429987bc
MD5 7da1d176559c486a39c9c3d435351433
BLAKE2b-256 ec25b686d33b79a7f79646ee4814323238a320b9d391f4aef8d4d42d0ef7535c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 aa3f6fe69a11563416a1ce689e00b6a6b490c85c049554b682a685cd7c8f1bb1
MD5 6e339721315d42d6ef48412133372c1b
BLAKE2b-256 cdacce6879ebc5682e8faaa8842c9d6a05496db9f15028c4d696538ca3185145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 644b3b7d9e321f9393d15fe41f044a8683213a3bcab6adc3e6e101cde9d6784f
MD5 6c15423107a24870166cfb2095e1193a
BLAKE2b-256 5eb8b5a86645e1173a3737a1fcf8a347f93c78c73eb35a1baf78be23fe2aa5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d04acb017c439ba10ff786797d4e4c1ec42612a85d65dbb27ab2d24fb4362bde
MD5 97ba052d5ab7c75c2799e5acd1d04239
BLAKE2b-256 88d34540d7e581e3053e155cc081c6c8e188eea345577af10681b195bb0fbbf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6c3b4b1ec396bf1664613f835a2b571e8bcf3c3dc8c5379dbedde89be072707
MD5 5da838c8bc4cffbe0d392b466e4aecb0
BLAKE2b-256 3633595c0f44adc2a0f58a4d226141db5338335a12a6b247abdc57582ef967fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40116f4f3d6bad1b311a1f0e19e00cd6ce7c214a0b46215dcef586a69542017c
MD5 418e85717ff282a70cb7f6e734dd1e0d
BLAKE2b-256 f9c9c22ae778b2193ccb213c71e50e5d12b87a8dad413363318ea9109d997af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ff5e708128ff3eea2df645de0943d3454078079e5e99da2003941dcbd80dd04
MD5 586ced0f1dce2e988a65dfe4426bb5d1
BLAKE2b-256 372a6352087f152d5511524cb197c5d5a2c9b779de9d8658a8ec4f2a2e9f588b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6b1b803ed06a82af5c61af63a3d44e85847676de6a1f90b9bbc25dfd313ffb86
MD5 2386543560b322affc843b7832d56875
BLAKE2b-256 b88a128a6dca15529542640999df6ddd85a5dcca7edfa85aef1f7c239e3b36de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f00af4df5f75b4c6b5f7dea535fe45bd70da00765698253b4c318b3ae67ef747
MD5 a2031f8dfa981ad66e288155e7a8e416
BLAKE2b-256 f82fca2343e03ee7f73bd8384522998d447b5c02800acd3050bf705529ed4f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f28264b9679e5a51d4108309b371cfec9659639d35ea39931256b36851af240
MD5 18408f19db0192dcf7eda6dada900c97
BLAKE2b-256 08385e70c0743f5a68ebb5c44939b8f0f6747a728859dd82fba2621b29f45864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1de2d5ec2ec9bdf2d9c9c8ff8cf5463648990aa2cf8d902ea8d1db0368b3ade2
MD5 cc355db7c0d70d177e0548b06422ffbe
BLAKE2b-256 64fbc4f9ac6fe5e7e1bcae9c8cec89e7a88269a196727a691c7b9a9ed2bdb954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae6bd3415ac48807de4cbed241b72fa8f367f7838ec44f1d36298174aa14ee59
MD5 9b3bb33cc412d8c45c1aeec25c4afc2b
BLAKE2b-256 efa4b1b2d63840837bda3deb5a470ace4f2104d1791ba28480c1934ab4ae7c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77b981d5b1eda950688288c747e1f69c39dc1c27617a27f4dc55a83f3e3da99f
MD5 0227ee747d19f7386cd8232ccbdaca87
BLAKE2b-256 883bd888248413b084ad372e0a60e77e7e5eabdb10dd84dab733b9e89b46c055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8972abb3539551de7b0a041a13e417bc58a63b2f5874743adbfb26478baa39e5
MD5 629957a5258ec13cf4aba8b13189a9f3
BLAKE2b-256 2cecc46346d4bab8513bcc5977d1dd5a141769589f12c284aa594f2413a9eeb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 d96319f2d51f4c63862145d2f415f2c6e4f17a1bf65ad0e3d1b43cda45417112
MD5 11af7a170c444258e14dde182455d41f
BLAKE2b-256 a736ac636d60282a28688df6047bb0f4781210e421ca874aa40018a20743d939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb44da9a59dd41e4a586831157d69f8e8246c4775c10800899d115f97855451f
MD5 2ba2773c2a4f5db27221dcf4c77be2b7
BLAKE2b-256 7c2cef8581bfeffbd101ee1b6eddd9929624764ec0c3bfbbcf0fa5b24ee29f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 176be29bc232ca7f65eae19b8c81299d407975b5edc1e4f91ebb1ea625954497
MD5 5f18d98a3cd4fdee597f8ceca0249e38
BLAKE2b-256 9ea8667f83ef372ab59c46432d1f349c99cf0cbee941b9cade3cc47636ee1fbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9f10e18fbb696db99c9ff8f35618b193b85408e99193dd7c24911f3e035952d
MD5 5fc78099e045be913bb6e730d8529308
BLAKE2b-256 accd2b62ed89081533b46e3064939ecbb90cccb951bb8e7604d3e20136a87e2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b664da5298c7096497e3836f64e6aae208dfab65f88987b33ad52ce772b5750
MD5 d1cd6dc27999ac6d20031a78991e918e
BLAKE2b-256 666a9760bbc26867d05745af68faff2ae9603972e85f69ef611135721a64eaee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7ff825b2e7b6fc883d4f085911d27f6087bad4fc65ef060ed41fbd89a301b7cf
MD5 edb7257a0b0ef56684e29bef17bc5536
BLAKE2b-256 babc557b5c001807cb58eb3edb2f7ddf7b99cbc9d04e0bc8174b0f1e010c204c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 92601faef802f3408654bbb64c6952aa28dab7aed0b35f915a137edc8e3a72f9
MD5 6b52a3722978bfa0894a4d879af8376f
BLAKE2b-256 caced13e5b2bd05ce161ff051c41e010a7ebd1efcff68a08b1f144b176bbc74f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fc2e8e1105241d19e1b76bb6647aa8f15c57367df0fc028cca5a3dfbe9e8f28
MD5 2b65f22dc87b82ec8b24a13b7c2dae91
BLAKE2b-256 fdd1fbb5f74ab6c6fd747b0baab6113128e759ed7eeeb78aa04b8591880dff52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48eb12b773b002782a2fe2f73d9cc24e65599b0d16eaaea93a3bd099fdd33a66
MD5 40c497e34eec9e9311df2fadbe098ddb
BLAKE2b-256 4cb00081e28c8d978bb5c0bf52b06a1600ec272fd84bb8b097ac9bfc98097f12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cca25060c64ab0499f048a0858080f4059699cff8a59afbd07c14619ad0de875
MD5 c43b78739433d036fa59934060cf4b0a
BLAKE2b-256 964cce3c4bf7ee97624d6e82ff570a82cf755d59dde903c8d53c5f862fda7f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6a2257b89bc9ecf0e7fceca13d6b8ce3979689d310241eb31c8b41309853baf
MD5 39410595aed3e014883b7ebb31338c4e
BLAKE2b-256 4c5cda04c871d45fca8af730aaa4cf4b180e8bfb07a0399644b4ea9f54583a46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7557f52423627ca5401d5fb305b825e422268c3bc4eb93e2553557fbfab998ce
MD5 2846ca2e3c8f406dcc63521fcbce8e2c
BLAKE2b-256 1b034c60b2083d96bef696412ecd8428d84169b5dc7636bef0ba7c4c8685c5b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.8-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b3439fac473d3a4dbd2125fb9974e47eaa9867a7390c0b7edfadb4aa43930f3e
MD5 a890bfa611f0a45a6fadc26732e29a62
BLAKE2b-256 490728d49740177b2e6992a0673383b1bc518dd3ebc97dd0b1675e2e905c2cca

See more details on using hashes here.

Release history Release notifications | RSS feed

10.8.9

31 files

This release

10.8.8 This release

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