Skip to main content

passagemath: Computational Group Theory with GAP

Project description

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 --pip-args="--prefer-binary" --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 --pip-args="--prefer-binary" --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

Project details


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.5rc2.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.5rc2-cp314-cp314t-musllinux_1_2_x86_64.whl (87.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_gap-10.8.5rc2-cp314-cp314t-musllinux_1_2_aarch64.whl (86.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (87.3 MB view details)

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

passagemath_gap-10.8.5rc2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (87.1 MB view details)

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

passagemath_gap-10.8.5rc2-cp314-cp314t-macosx_13_0_x86_64.whl (65.2 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_gap-10.8.5rc2-cp314-cp314t-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_gap-10.8.5rc2-cp314-cp314-musllinux_1_2_x86_64.whl (87.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.5rc2-cp314-cp314-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (86.8 MB view details)

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

passagemath_gap-10.8.5rc2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (86.4 MB view details)

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

passagemath_gap-10.8.5rc2-cp314-cp314-macosx_13_0_x86_64.whl (65.1 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_gap-10.8.5rc2-cp314-cp314-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_gap-10.8.5rc2-cp313-cp313-musllinux_1_2_x86_64.whl (87.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.5rc2-cp313-cp313-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (86.9 MB view details)

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

passagemath_gap-10.8.5rc2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (86.4 MB view details)

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

passagemath_gap-10.8.5rc2-cp313-cp313-macosx_13_0_x86_64.whl (65.1 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_gap-10.8.5rc2-cp313-cp313-macosx_13_0_arm64.whl (64.5 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_gap-10.8.5rc2-cp312-cp312-musllinux_1_2_x86_64.whl (87.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.5rc2-cp312-cp312-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (86.9 MB view details)

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

passagemath_gap-10.8.5rc2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (86.5 MB view details)

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

passagemath_gap-10.8.5rc2-cp312-cp312-macosx_13_0_x86_64.whl (65.1 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_gap-10.8.5rc2-cp312-cp312-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_gap-10.8.5rc2-cp311-cp311-musllinux_1_2_x86_64.whl (87.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_gap-10.8.5rc2-cp311-cp311-musllinux_1_2_aarch64.whl (86.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (87.0 MB view details)

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

passagemath_gap-10.8.5rc2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (86.6 MB view details)

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

passagemath_gap-10.8.5rc2-cp311-cp311-macosx_13_0_x86_64.whl (65.1 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_gap-10.8.5rc2-cp311-cp311-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

Details for the file passagemath_gap-10.8.5rc2.tar.gz.

File metadata

  • Download URL: passagemath_gap-10.8.5rc2.tar.gz
  • Upload date:
  • Size: 406.2 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.5rc2.tar.gz
Algorithm Hash digest
SHA256 d45207d81b61706b6320361522d872bc7cca1e65d8db3cdb5972500792e15d19
MD5 7d678b3d6b9e7c399495679c811c9cf0
BLAKE2b-256 5e734a792125894216f1cb5f5c81acfee5072eeb6211c34865c3955b874d9613

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa6e5b0190d55da45dac5fe6dca9fc283962b6d568500029671c60e4253fe3a1
MD5 ac59ac7464abf28c6a8764b6dbe8ed50
BLAKE2b-256 31dac0ab20f4f27062c34e1eb949241f993ec3fee95290b6c916083373b595ba

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4d64d50cefe6648299e06911570e48f0ac446393ee83885dcd753bac31ab6cd
MD5 3afbb29e80d6fee20db4a174507d5e17
BLAKE2b-256 9dbdf5f035400e6899c99d4e06cd70339982cb6dd6ae855278483b1f4ac1d8b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e00047f77bb13bbc03365ff3d2e0e859fb3e9959674699da31b1930e6e45ddf
MD5 41be47de48a218af7439504cb05489d2
BLAKE2b-256 722471a2f6ee0eee46cc4f7a846c0c5c1fb97c3564cd673e2d6128c84934a928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 821442dee917cb7ed8d402a9179e6188db76188ae22d1f4a666cbf8405b44058
MD5 1bc15ed6c59f2992cdf36dcd95c5b71f
BLAKE2b-256 35afdaa773ef5cd2ab9cc65aea20071e8f9c52464db972115ee6eb7fffd049cb

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 61a261dc1dd89723a80a3434529f3ee3fb8a027806b2d8f80210d2992b2c9108
MD5 66945945cf6edec7c33483fa05a5544a
BLAKE2b-256 8311279c40dd8441c9636d730a030812ea4d88d7b1518687ff0e040ff9f60ca2

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 06049e2fe6fe148739ca7a900576ab862240a2f6ef21f3ee018c5ba807f63676
MD5 7fbb43c55df53fd9f11933f7b72254ba
BLAKE2b-256 b273bd4d2947433e90597f84dc2b7386b43ae6c8c513c2cf6734d2d2317bd179

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d71a8febbb9992f52d7c19299d06edc2384541179dc4de246c51d1373609d923
MD5 429dfb86756427bf759ec58361139d5c
BLAKE2b-256 f11b32fd14f6c8bbc38af749a047b7efba264a22d6165ebb4efa5b588dc14d7a

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc95cd00f4a18adbe7b8b488a63de53f8b8f0af6a9ea303b647d03da2142d11e
MD5 47d6212c2236b0a6f754f819bc6f3562
BLAKE2b-256 1748018c2d03a8ae1b189c719214b475dc43c00c241f8542cd8146c9118a19ee

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6f4680cd1885d210456bdb2d306dcf3c32ed309ea0eee5e4e4a005f05928e0c
MD5 9762b7dda49ae8ab546b38a45ead162d
BLAKE2b-256 747318ded681344be7b737d8f9fea0bc0cd5540937dc3e671b889d7258cc107d

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1c085c7d2ab8c83b143e4d1bca026985c13acb2541c5f8baba4ac1d515e3272
MD5 186eb8281a7fb22ea79ce50badde9d78
BLAKE2b-256 c7724ac6ff2aadbe2e50f3a3753d956c0a397776019e3b996b615743b61e9d98

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5dbc15c2d8763837207fe7b3fadd702fe9decbba1466a6dfe26f6462126cf818
MD5 07ed568521d6c5e4830f181777488dc2
BLAKE2b-256 37de1334f36dcc381441794c52550dabc220fe35d35de7cfdd90db7243f6b838

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 43e4950fa0d2141560998b967b6b93e2508f8937927ee2da7817bf335e8c0356
MD5 5827ff555378ad421bb0878dfeaafee4
BLAKE2b-256 30a5e679e30b1975951734e8ac9a323923c616ce0da9272ea627374f8b39d35d

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edf66ef1fa890854894f715efe365dd02a257516305b741efd31d27438ae0d4d
MD5 1896c4861bc01a3aeec01eec54041d92
BLAKE2b-256 01ca6082624cb888ae13c0bd0104b8d2d5b474c4b6f79184e87f7c0afb9a2fd5

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4121a0db851a5dd5653caa13cb19219f65b6dac7920fc4aeabfd2486f2403dfa
MD5 499348fb006b39b80865375aca4252aa
BLAKE2b-256 ed535ffca562dc7d1542898b1d78e67af9adadfd1a89188748d2ea7bdfc9e706

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d0b60e6b64adc891b7a008f7456c60e0e64c120fbb3542a08cdfe7e857e020d
MD5 6a98372e91637c877c9ff9997298e5b7
BLAKE2b-256 a3acf18b057102b92c237059c6d71c8ce51df0ed0757487aed77b3d30c63a6d9

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b19f8b454ef94cca4c0f185b027fccb6c163683b4d379b60b9dd7cd1718fc812
MD5 4b47e6516eb41503ab7d8e506ae98332
BLAKE2b-256 29f680ca79481aa7735ac6420e713559474951a26c3c75508347c70dcaa343d0

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7dbf0c749309086a6629a957e44219249b35cbb51f6f817171f2eb894fa4b81d
MD5 8cdb74c8552b460a027d157f3ff24390
BLAKE2b-256 97efae599fcec525fe69eed640f1d770b76f5aa580fdef94d8055d72d41dbc72

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b354774a00271d5457d74a053ad1b96977a1840066567eceb78efef4fbaaa935
MD5 cd6a6a59bad0f8556c0ef1a497079996
BLAKE2b-256 8d2276b8dd4ce8093269c9a73b24d11f90a56903906b5dfe584fa9a32b2f277d

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a19f7ef98bdd0b4eb059d8d84f487c6c22932254579cd21d80fb0107ff3dec57
MD5 94e9107ee8b108d0e9febf7d8168e314
BLAKE2b-256 d9ee9b3d499db3b04abf5a135fd2d91f9a6d651ea8c8ade1da9b938990ccde61

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8889317f0d3a20e7c188c3b1691c76af8c92a7417a47a16f393c5f480021feb1
MD5 3ef59012bf894dad8316429b9e77dd8d
BLAKE2b-256 0fa2038223477452083778b8d691de5e67a60122a85706ac8f7cb10fd8d0cf16

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3324ecd9029d89388c0789328093bd28d358c686fb5238d87d9392c4a4a2369
MD5 40dda89e0c68e612fb0bc38a44a463bc
BLAKE2b-256 13862a47cd0650b763deeb9b89efa3bb773244e4abc7800c2747c52155c37762

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 889957970f8923db7e0013b74ff577e4198a996bafda28580c6eb59b5aa1dbc6
MD5 115be06b321245f7cbf72729e460cd7a
BLAKE2b-256 81299de1f5e867375a1691eeda07c2a0dcaf01546a10f392a7f18736c5dc644b

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f2db824b181445c0014fce4f9b97f3541adcb42608a4b34a3c7cd74775fb9cc4
MD5 e9d8f4ead195a2cd87411e829fac7798
BLAKE2b-256 9e059a090c67642a751f44f492b4d801fe4671b6dc3ed70c0a0512b5c627de54

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 1a1a9572a374b4d37665288fbc8b9ad24271a355ad772836a8e793809e6a32dd
MD5 dec942df31677f9200efec69cb0454f3
BLAKE2b-256 800462f8038b32a736c5c4563ae56407b04dae0cbebb084e33b87db72f9a466b

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fbbfffd43ca4098ec2c7be77e79fa0dc7b979d420e69ee60cb4f1f601ccfe97
MD5 3a07bb2313d06685006d1f3d9232208d
BLAKE2b-256 ae8dae9116184a767f28c232cf7bcc0799ad957a30f160d53ad5e7044fe00d4f

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0727f5bf2b54d24cb74ae790b5d0a580660e45386678c7592cadf82af64bf977
MD5 a8f7b62211fc8d63c5bb51471d596558
BLAKE2b-256 a7b0206b26bb7bbb286b0d87ee197ca216c0fc8ef790d2a16845553def1fddd5

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc31d4dcc5922512fbc382bc64ecc15faa274039be695c7b8dcc81b3c656615a
MD5 46dd92c1ba4d2204a1e2a7e569d1cf40
BLAKE2b-256 b7c63432c68892e61b4af162cc74533b01fa2828b268f3922805ce1bcf501493

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 156dd662c9786d313879e327c3277e2695044fa7bf5c54f763f407cf98a4a74f
MD5 5ce8e841d015139ec936a96a9519dfa1
BLAKE2b-256 a08804048d2f48ad82bc59541441fe9131a5071c1a8c2eccbe1c22c5a286fc1e

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 758b057969b84ea07d87cbe27a4a6f4b667c7fc2e5f370b72a44dfbef662fcac
MD5 d511aa54bbce2f27b61cdded3d2feeaa
BLAKE2b-256 c779fa0ac5485a95c068835ff8d09239eee902ff38558c87ada6489e3a3d4de7

See more details on using hashes here.

File details

Details for the file passagemath_gap-10.8.5rc2-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc2-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 318dbc24583bc5f4ba064dc00febd7383db702a76c926eaec55329e28810183e
MD5 da3d42b7d61c5f4507bcd0f4e11aafc2
BLAKE2b-256 8420b7db443c0c894130859de2183d448e7a89aac83faafd303c117e8e975a36

See more details on using hashes here.

Supported by

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