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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (103.2 MB view details)

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

passagemath_gap-10.8.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (102.7 MB view details)

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

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (103.3 MB view details)

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

passagemath_gap-10.8.6-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.6-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.6-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.6.tar.gz.

File metadata

  • Download URL: passagemath_gap-10.8.6.tar.gz
  • Upload date:
  • Size: 406.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for passagemath_gap-10.8.6.tar.gz
Algorithm Hash digest
SHA256 54d7a49506ff4182ccdab99f9185678cf1b899cead706d11688e83b9b5b58550
MD5 52c69651a6ee05e95fe51768ce5f6150
BLAKE2b-256 689960853fd3710189b0da887c0a922847d9a89c70ee8a3d6a3cfe6e3a7f4b58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdfabd5ef32f475a0c10e4e4a1eff37f62c3ccbb531df54d2d06afeee76138b4
MD5 21474e508ea9ede12bde990d850738ec
BLAKE2b-256 c46567c6655bdc20d46e4d311af870e1233fafdeae4741aed6e3fe770ea6fb96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45b1e04ca7f923647925286c03c8d53d53ae08803e182e2460d9ed3d8ae806f0
MD5 1bcb7297db2bc219bcade76d34bf97a7
BLAKE2b-256 9e21716d7b3360d7d10545f6b4db1b50a7744ac6677acd3a3529277dd6fa6aed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af7663cf739393c6125dce56e00d970fcfeab17e6a4e802be3b8977800f75fa3
MD5 26b0d22096b68709f95a7ef24e17c480
BLAKE2b-256 fc13b53bafd5423ce903c01e14ab106bcbceffe38684e7b08af8c3ef16f67ce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5aaee37f9cb518840b9ff122b36ef1e792efc31ca824a5075fb6aef2e23648e
MD5 5bcb23dbb3a2b3c893b0c04359f78f51
BLAKE2b-256 6a73be66c7442667a1d7729a792fa456e1871b3721a187757573795492d2ba7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0433f59bb252a6325b01fcc61ecd4aa71e03d4693cc431a4452a90e9cca08e07
MD5 24f3a7aabac2bc62cd5b7167a50a9651
BLAKE2b-256 808d3b445df44ba0b11ced84639dc816f6e984e3648c2d7a54456b9ff690a190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 1746dd55bde74de9732cf62ea2953268ca71f4d824b202bdcc0e200e1008ee20
MD5 8e93d10acc81028cf984adca1cc8a3ba
BLAKE2b-256 2e037492caf74077442728d2cd01ef435866a533921c8059fb1d5af074c06744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b494fbaf856a01d3a72619aa93c1eb99313f16e709b7387ef11682735aa8062
MD5 fb7e15f25f6935689ab503fde65a538c
BLAKE2b-256 8d66656d889b583e0ba1d60ed98a3934c71d884a38e2614f8c2f07eafbefe091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41322e192022b864aa085d5c4cf509098d57fc8d1129383186f39e152b48f9dd
MD5 657003b18b7e7596763f59c32106bfbc
BLAKE2b-256 1cf50142618e86fa7b4ab8809d43780bb86e056db4bc7cfdda7eeab2bc28c60c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bff890ee2149c3253c6678d0e14fb15993aac27f7618d6029905f419aa07ce0e
MD5 c8eec16a7c32731ce9053d79e9cdede2
BLAKE2b-256 e6429c3e32a78afe35296fd5a1e2293e2463bd7cb695386622f16b9161a3f50a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8120e1bce17fc7025fb4c389d8b84705bed82492acade8acd91fc145ca6a0c4e
MD5 79c755d669edd9d6bd13cb7745952618
BLAKE2b-256 661015cd77620784da01a204b3035403657a04cab9c6a711b1ce77147306d3fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e8f698e322a982ce4724b37eaf4a5a7b2e16a6a4088991006ab54d76c113b59b
MD5 78e1c4d422233642a4620229810e6e02
BLAKE2b-256 e3906589f6686b6e9ffadc3dc3aaad71082a500ad06b3bb05674b2411f7e6992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f8c728f3db28c4aaf82cb97bdeed01608028e6e281dfe4b813be3a5c832f0588
MD5 5cf78f42980293e0c7f174dfadc33360
BLAKE2b-256 cbb944650f28c2251670bdb400be51a32565b094720b4683071937621485beef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cad90bfdf096d6fab37d629bc5205aa257dd6fa77150d791cfa14b0d38f8661f
MD5 423dca6619f9d94ed0d1620a5c9d3413
BLAKE2b-256 bf960c0ad79e438baa12184a027458a6388d708d0d84327218b5c9e0b499aef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e0ad976236452060426541211a6ec7292e812ad289c5d4ec797f0b24378abad
MD5 eaa5df5482a35b9e135fb339ec12314e
BLAKE2b-256 c4889cf59574ddaba67fdc4e57113fa1edfc202bb5fb0e9514bb946e31d4c700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d3f94e75782b0b6b078811ae46da387d41da2c45965d151e9af98dd877839545
MD5 eb43ae058d190c6274c715392adf2866
BLAKE2b-256 cfbdadc991160c0e30bab099485fb21a0f79299599c4d96aebef9607439e3a14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 579adab5fe1240e613ac3f113f9dc0e7fb5eadc33106216405c61feab2a01c62
MD5 66540517f8711404c091fab3bb0fc785
BLAKE2b-256 8507584db32bcbcc316848d9ffe6122dfc586c275bd35c98ac24a9138b24bd03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0eef77c0142ec272bcc1fe634891eddc3f2428092f42b5f39abac7723b342398
MD5 3273f934b4ac79e6daa91922202bf991
BLAKE2b-256 e1f470ae6662931ee0ef48ea3074bdc12a0e0240dfabf6c91ba28cf329b5979b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e58f68b88dd114acefd8966e4bc9b5fbea88a3e0b0490a9fe9051ac836995ff4
MD5 f4896288f48bc99290fa3a38b438e929
BLAKE2b-256 57faddd1f9c35ae712e927705675183b1cbc151d81c85713e552cb2987d3339a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a35dc2be7bd604852826ab8767286748610e840ba0be6893f41a47b0f4a1c6f8
MD5 e39c3624595962ddad185a71ff773f7e
BLAKE2b-256 b551754b7848874810124ee6edf8aebba0fe9b415cc150a570fac74b135fcf77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 877d3c7d2e68b9b36e9b27b49db35a8d0e894ad947e2d99621df01a2775a8d23
MD5 ee72ac171e5f0fb75200e3741f4136f1
BLAKE2b-256 b798bdb0d291e327ba0116c70ad8e2e654f530e368c425b3172c3635d8ddf0ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a88859e082dfea38ebd214510f62a42597df2c59466193953ff09ada7af1e868
MD5 2a6f118e6edec2c73e33bf767c370b20
BLAKE2b-256 70330d829e851e0e5bc080d5f8cd01ef792f2a955d719b48931af93280127366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a3bc173e1365cd2e9544cd4c33eef7e67a63f53eb11e88ce8798c7cb80c5283
MD5 dd5eb3259919acf5d81b49a1ee1bf64b
BLAKE2b-256 cbde618461c230e086a444b26b24c7188b709c4bc135a4791d9a997f5e89bdbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 cf81dc2af4c948ca8f4828592e5bfa8ea929d0e5e2dfc16c5ec532fb00f3be8f
MD5 da35bd69d4bd427ff6f61f94dc749ee8
BLAKE2b-256 93aaeb1a45f55ea73338933fe2e5ed71ec4ac77229a796ff3a6148ab0ada2b55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 3045109b4ce25ccda7c84667e0cf4225bbe9f6c4763f5d9f8a680a99cc0debea
MD5 1f9a4de8f679d6877b53f3be19018913
BLAKE2b-256 d857c229ee378e000b03abc20251ce622158286a02343b09fd1201c8cf8c5d37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf4614ba9cf75ef78adf15403d86dcbef0884bb84e11b09b10774654ccd2c226
MD5 05e6f619ff16d9684f7e740d46b7410d
BLAKE2b-256 f2512f3e5cfbf814c8572d989dedbdd7361bcb75ade30e6c1bbb1809447496c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 855460ab086d3d31a14ffd49ecce0b4c23bb1aabbd69dee1d329671dc9c49203
MD5 a05db414dbae26fa3c89eb210a7518e9
BLAKE2b-256 50105c6beeb3ea5c35fdce3125e05c022350a55dbfe8e447f97422b68d685f85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 090ce95b25aaba02d31187afc8ee56687bcccb6f876da64974c54804dfa82a1c
MD5 948279e8eb09a016ca223341066fd165
BLAKE2b-256 b1244ad4edf3eefa808c8a3a030f9f87330a16d2053fda175965f139afa5e4ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af84572f646fd55b76742f69344e7cc862ff237db349bb9a5b1a0e27ab3b04df
MD5 44844c07312904ecb6ad6e3eec82f91e
BLAKE2b-256 9d3b674a42dc7f15d5d91ced52e68fcdab3f0bbf6fce941f45292f7319c0e69e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2eac74fa2780503075ea1efcec3636c8f6b231f46a3eb565d5f89be1dfd5d216
MD5 8446229fdda554af41d9a8fdf82074e6
BLAKE2b-256 58f1eb42ca9238dd4364d6a13f3e517061b4568ec7f413c8786407d6dfb4cd19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.6-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 70617b3f40c86ce51a6b4c07a52a08ce07138f7fe07b2f3c3b8bdfd667e75380
MD5 0d97dcb4598abd20931caacf97b2c56e
BLAKE2b-256 0b9dc726e15187b09c5200d7056f7fdd3a71e3023724e36b3263426b118ce3b2

See more details on using hashes here.

Release history Release notifications | RSS feed

10.8.9

31 files

10.8.8

31 files

10.8.7

31 files

This release

10.8.6 This release

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