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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

File metadata

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

File hashes

Hashes for passagemath_gap-10.8.7.tar.gz
Algorithm Hash digest
SHA256 1b36fbc076ee665f28c7b87f153dfb24449a985169aeb771259b610659f45354
MD5 5abaf33f0172854d709ac6465c0c943e
BLAKE2b-256 dcf2dbe72933111b4fc6c5c7baa2ffd0d863dbaf0d1fd63f9cf90f72037a8d71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e41e97fd80393a42140c6a730dd7705ed493fadb7f19f721931f7a6c4f5ff52
MD5 1105d3f7952e9c74d4a7fabe281838ca
BLAKE2b-256 fde0a2fd4f5b109030be3815eecac7bb02569006b1eee116bb59d8278dbe3ab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef5bf80ca8a7664f564afd9868f55d0d94459172d93c915a7ad5856860e449b1
MD5 b1c00a096e823227eddc0d568c8e3587
BLAKE2b-256 c84f89b53ef3b74cca85cce5abe1c41ba78a3b4705f649318b44cccf7e23f7a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be6e8f186d15af09503c95a63e1be03c90874ce4afbe40337bd1c5e350ae0c24
MD5 fd6e440f9f120858b393de6286bc4fac
BLAKE2b-256 b89dcab5404c09190902dab9aa2a45084b499b07227772b53dd39f601ac732f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ca798e6c359b82265c3d3c6788e7f1f451286953d882d5cd5aa2095dd62b369
MD5 f4aa6e0380ea5bbc26d542c384e9da4b
BLAKE2b-256 43e3775ea41de39a3251c5ffcc5c39bf2749c8f1a48b6eb7ca4bbf02b88dde34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2a5a066fba2bfc094edbed44cdf88c09b2b09ce90679f0e339ac5932e04283ed
MD5 72784fea44f57bc500434bbcb8081eda
BLAKE2b-256 099a9a2310513e47e2de144b2ec211d762c8a4dd5e78b3b9d55831a1b1e91436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 edf9a2f68ce3a8dc6dab0536ebbf125ff0c521f219681fa606342008ed6b3642
MD5 a2f3a5b71b52bedac954b6eb586b79ed
BLAKE2b-256 ddce124e2755d0dd688b115f4c4e64e2504874a2571f8241a9d066afc0d62f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6203b6d35b45a9fd17008b273eeac45fbf6d48659e92bd23308d7d9d8456370d
MD5 ddb3ed691fba394d5665309f1de32d53
BLAKE2b-256 7a727cf0bd9726e49f6227ef2f3c9f9ea66282f05b701f1cdaa9bce81534c953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b1304a1d21032b2ad9a0bd81e1332d1caa8de500fc68799c884d9271f9370ef
MD5 b1a9b8f651887b62d3d5093419ef4d83
BLAKE2b-256 f6ca4b3bf263770da56be26242968aee43c7a8e8fb7f98a7967786038c82b261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67d02434ce4d0889ed4726b478ce9c3336877ca05b0a95cb932be87f921498be
MD5 a408f38714246418bc7b0a739e615a79
BLAKE2b-256 4d5a3cc1c57ebcc8cf4b5b4ade4be0c63bf2725db068f1c9616c6a003127f0be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75d85bb0eb601ac3db54e90d1e26d61e18f342e5839ec5d27922a8b9510af07b
MD5 894b3db684bdf039774f1332d336f3d6
BLAKE2b-256 f57e81e4903ee8a7780787bf2c7033e039aebc3413020cf6e6c89539e1cc39d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 503ad6aa55802be07989125e58171507bfc5329c48a5157a8d38f639366f9ff1
MD5 614803b09f75761544a9f62b7508104e
BLAKE2b-256 ef929416693e9c47549f0ef7e1b17c4f495707e8977fcccc8a9a32497bf79a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 49423bf1f5578d72cb97087a5ef1702fa99dc9c6686e51cc51f7aa460c109921
MD5 48f232721b8431f2279eb51efd12a12a
BLAKE2b-256 9ba18d89be96379296bbbbb9090fb08f0161d3ed405fc17b70ad2a6c4a4410d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e376b2dccbbd4c29b724b653ac6109eda87b910ac6c2117c5d5b1be56ad3857
MD5 9bfd298bac374afebeb75e744967fa85
BLAKE2b-256 723f6a9f365109b7aeddb02e41c9010361a76a0149298e88171445314249af5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca6c39c6e322a3397b57f4bfaca50adc297294454786fef3a5a4494aa58b2f69
MD5 11b389b333cee8930c853998a87bbbfe
BLAKE2b-256 6c35acebb05366a28b3968938359e12142f6d9dd0380d2da7171bf841d4c4d52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2502f5d12165432773af2a58b677cc9936b4df6e7dc17c2fe939b4591c899e98
MD5 8366650072eddb82ca2ab54e27c8a111
BLAKE2b-256 eb8ac734df187ff637b90cbd600a29836918b3d243daca214b18d9e6d45a3782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbd339ffddd04cd45baf85b84c7516c79e310a385b7c4b65746136084e004bca
MD5 74c03cdf7a520eff7044dc53a91ba5b8
BLAKE2b-256 a5062122a59b8dad5f3060e3ea0cf71e083931e05416e95ccf3635d2d9058483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5d6a54abdd4c2971b753fbebb9c9bffb0f4e9843013abdeea390b15fb7e86c98
MD5 d1dc7aa69e678e7b7de4d9dc29755734
BLAKE2b-256 9939ebe0c6d345abd28d5a8bf3355b1aa8c6f3dd6e8e6a05d5d0900e6474e195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 82accc688b87ab8b0a82bb0c3af5e954a2e5afdd9af2558da777a9d85dbb3207
MD5 5313d603095a09c47aa05955bd1d9be5
BLAKE2b-256 75fa4657ef791baae356e7a41d41b6ea840e6cbdcb9aa74704b28fd1172b8cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c1a3fbc0b5d011e8ff3bbe3eacb366ed44fef7d1986a796635d4c61ad02791a
MD5 78f7b33ecf3aaff8d4076834e4498660
BLAKE2b-256 cc2ced94d294c093d20837a9a40587ca02fa52c20395f085df0720ca39db7466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e4437a93b26b7f2648f125f4bd78f7cf7c3d6a73179a6d2576a5f0fb0612868
MD5 3688fff25280bc7e8a57bd170c2c8dfc
BLAKE2b-256 cce2504e8706ad83a0eae47302614d26f57c489ed02946c190b29bc655f0e7bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9082ac37fbcd5998b1acb715e5af4985f62fa18123e230317a7a074ab477176
MD5 57924b3ee94637ea75feefc89c87d55e
BLAKE2b-256 9ceaad18ef7d2909a1ac82f7f284eec59ddcd1de4182dc24b4f82c71a33235ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1902aa4dfaa33d051d1a90b1942e13e8b69494b6472598f547f0608c1512d094
MD5 f8f25fc41b8780ef23f3102ae147e8db
BLAKE2b-256 b46e075af41994adc16313d9d40b31f551e3709e33b69bd6018a72f9f4b06010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 38338e3a529d39f18174aeb798fa3ac1387d5ae0b9771c0d0ecccdebbfc3fc6e
MD5 d49196c5cb379dcf850b48ffd56803b8
BLAKE2b-256 7aaee1a16a4b1721608a788dcccd37f9459ee9dec49cba65f6bdaf445370b834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e50c65c93a68f090d5026dc4b4de6a8a27880d1457a99472874ed1e4e90be474
MD5 1a8776f62fed4901972db7b3f3d77b80
BLAKE2b-256 360fa72fb961ba35dd4eb6e9d15dd7042625bf51d738998a2f70d027751e8bbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c030787986ad700b81e92516b92e6c46fe41c203f925073570e044fe0ffb9a22
MD5 b351b7bc6952a52543cb785ecc3b6c60
BLAKE2b-256 beeb8f3edd50ca85c400fcfd78d65effffcd4ced611f99f5061de5247cb8d518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 983dcc5dee76b9eb2d6504e48f8ac6e6a863ad92929a3d07b2039b6e36a389dc
MD5 62403bb27680203ca97dcd236b81abba
BLAKE2b-256 8cb48b521838204251be3f6271f4f04a85eda8af60d1aed2b2c4cb17e4b53147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55ac608b38e9ba1382a6542554978e0502450044ca96b4f92be632f0e1d24e6d
MD5 4dbdc6ee012cf3b810f7222600ae8719
BLAKE2b-256 c31d42514b3c307723a025aec12c6b0d3b64178dfe16bb4cdd46ef827db5829f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b0c6bf324e20ce3f908a5aeab323b332bae4cb04a98fa387e8b4704c6bc079e
MD5 e21f23f190b897d86fd27f3dd2c6fdf1
BLAKE2b-256 531ea2306a5423228886ca25ab8997c84d3d260abfbc817c76ebd0c71e41f86e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 55fe3b0dd9cde67239cbf4ad4f00d577cf27255e4f38e66824d9c5ea9d0b515f
MD5 b1585433d8b104bea4346ad2d7516c23
BLAKE2b-256 1662a83b30384095994806837722c70cc05ad076fb091124abc79053793f42a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.7-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e19bc7a3895344578224cbe06220fcc51bc8a5f844a7487625934f5614b05456
MD5 f34dcc2d456b63ce4446d9a4e1ce0671
BLAKE2b-256 9f4aa2a2c9b7b6b93d2e0db7433f45f38be8cabedce2eafcaef8671d5701e733

See more details on using hashes here.

Release history Release notifications | RSS feed

10.8.9

31 files

10.8.8

31 files

This release

10.8.7 This release

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