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.5rc4.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.5rc4-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.5rc4-cp314-cp314t-musllinux_1_2_aarch64.whl (86.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (87.2 MB view details)

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

passagemath_gap-10.8.5rc4-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.5rc4-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.5rc4-cp314-cp314t-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_gap-10.8.5rc4-cp314-cp314-musllinux_1_2_x86_64.whl (87.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc4-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.5rc4-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.5rc4-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.5rc4-cp314-cp314-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_gap-10.8.5rc4-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.5rc4-cp313-cp313-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc4-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.5rc4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (86.5 MB view details)

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

passagemath_gap-10.8.5rc4-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.5rc4-cp313-cp313-macosx_13_0_arm64.whl (64.5 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_gap-10.8.5rc4-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.5rc4-cp312-cp312-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (87.0 MB view details)

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

passagemath_gap-10.8.5rc4-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.5rc4-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.5rc4-cp312-cp312-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_gap-10.8.5rc4-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.5rc4-cp311-cp311-musllinux_1_2_aarch64.whl (86.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.5rc4-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.5rc4-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.5rc4-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.5rc4-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.5rc4.tar.gz.

File metadata

  • Download URL: passagemath_gap-10.8.5rc4.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.5rc4.tar.gz
Algorithm Hash digest
SHA256 cb1d10887e5a421157c2c65af78a9e041a8edfd3fbabf8f7df70deccd907f56c
MD5 1732158f38694666efc981b93a6609a3
BLAKE2b-256 2941d7d4f7f88957ef2aa3f1231dc651cf0be53cd0826a5c208dd13dc1850f31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8816acc1b1f39df9925d5a4fcc925e0b0e76ede6a4bdcdacb1563aeb7cb5ba09
MD5 029e5675d4bd68637e1d1fdae3b0f023
BLAKE2b-256 87efc1f14fc8a5bd30903daf204de2850a277f444b8ac97e1717f78a72094763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d94ce1b283a2c1b602292d62fb7c5ebf4e6619e6762729dad980d1d2df30b657
MD5 b7e1f41d98b6cc27e09a374d399144e1
BLAKE2b-256 d33355f349cc32dfdc9886b93c1778a842d7cdd7dbf7e19e59bb9532fd5a5c50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bb03b17dd431a8cf58682f1b385f52f81572e7a881f410b826724845766786f
MD5 6a39b674278ee8a285fe3a8a0269caaf
BLAKE2b-256 d8250c840deccbe45144f9b8f4ff9efdd4e99a99d81140bd474c248f083f4d8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 144c149e30a56e80197da5b31fe6fc27077ab513ce22c2a7cdfe34ab4c01f155
MD5 31d2b85188ca9b8c95ba714716b3ede7
BLAKE2b-256 7de04a0ce066e3896c2db2710a2debe65b34a49cc5adb6403c2cc6c984ddddee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c0f3f8e4adcacc7b8ec9451fb269987c7e6520fd89e4ad83ec47e6d9a5c051f1
MD5 ef71f304d089c3dac2ac9874d32012e6
BLAKE2b-256 ddc37e48777e2f59e7b65ecc62bd826c840fcf996103eeeb88ba27b8dfbf4427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e6d875adf585159e8e21bc9b7c7dc371fbcd8bf79966212fbf72de68655bce1e
MD5 c212582c08407b77ebb565cfde71a3d0
BLAKE2b-256 d57e748ff21b9c3f5ef0ae75ca6377ee9d44d72ab72a565f674538dd0641eccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b7156e73b933f77b72ba5461ad0d93f82dea8559bd7be058022168b24eb63f6
MD5 099ff59a92566adbb52299a3fd4d9f59
BLAKE2b-256 1fdbcedf1d98e26ef72578d0324e463676b02f8726e1b6d570cdf5848d39984b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 effebbafeb2e2a2008c2ee0dc4b07dad817c8f625f5dd15f8132e552e8e25ec7
MD5 a2b3b1f9e6ea9e28a93aae7ef8b60216
BLAKE2b-256 a7299d2c2ec29fc60dd22b819d9623b2738b882489f0a75118d38c6ee8defd78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b83983a25a1393c3c471e37d1a5365006da7fff03ec7b68fc555698eaa78f246
MD5 4409d1fb092749da60ebc18e64c1f1ad
BLAKE2b-256 20869c549d8ea121c44e586ca1a15c005b631064021e4a6f7ce347d0aafeedf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14935a4700ffa6d7f014c11a30617fd844e4b1726c536332767aa7f63fba77b5
MD5 7322faeb8d753b124a99c72bf0748e5c
BLAKE2b-256 ebf312881eaf8b4b3637f932a3fb177d2c31a94d9854ae2a621c09fb996aff7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 69d99132bed0a9a069b564c351cdba6ae848d74aed308e40a212821f2ac433d2
MD5 7f9d049f62851162a227e1029ceda083
BLAKE2b-256 5afd69cd68d979e2c2e870cd0402708745168da0dd076044cd16c37ad3e2b207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 7e5a0ad544f209661843cc7116db61da7e8ddf6da4b185b3d96aca3cc1235257
MD5 28b7e4842d74d965bc6c4432a22b29cb
BLAKE2b-256 a4c4d1ec23b59d2980269fc581249762da12b246ae7dd603be00a248a4b90bd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f617e14099c26292e40c3a399abc4cb9955ba5022d388f7e58009a1592ed033
MD5 adca2d27ea360929ee50f8215f63929e
BLAKE2b-256 07e495c8bf97c47ac0439805303f2c818900b6d87ac9cd98c71b85644b3de6ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cae1ca0eb7f1cf1e821a18d0703db6f02c0e2185bbaf9f82a2667ca63758f3e
MD5 533f8fbaa997d287c69208aff8f0aa9f
BLAKE2b-256 e26e55f6970ac36d0587dd310f3c1806f174d2dfb9ae8dff9bde3e04e484b00b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fbe000c82fc2993cce40962f86db0e520f2174ab5fdd932af9bb01016bb7f4f0
MD5 730ddb00ac194bf5695db86afaea95b2
BLAKE2b-256 ee910c2f1b4bbe2333b949e6cfe95be11b38fb092b3878fe86fdedef4a0988da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35b6d9cdf0f036d6d91634f5b5bb2ab657f4dd32197f88d692d3beb80fdc5d04
MD5 0edf5aa4c4a5939b6b1ba34eb0daabfa
BLAKE2b-256 26bb8f4a5fd3ef27965a5d828b5bfa7337706c021a1ec752c0277148ef351a2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ab250c19e30673f1474cd76ac58d10b9997bb76ad84967bab2983fc733f0a413
MD5 6c6826f0418667536e2424dc3b2a4afe
BLAKE2b-256 e41f9105de6674f26c573cb288fe336b0e965bc5b2b49a77a05b3cee54c1069d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4c243321fa0d9e36cb372cc7faea780d2c3cfe6686183a78a66740c7eed837b6
MD5 5a333895b6adab21a5e84a7fa1268143
BLAKE2b-256 031c70350f61276c29cebc96afc4a8929859426dc2ab675c7a2ff7db8fb2df35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dde6b8cde56f60e79e54d5e6ce3955dc6f95c3d7b43c2769f603e820175d82d9
MD5 91f51573b185af0980c91c267281fbd5
BLAKE2b-256 45422dd4c4063410960df629a10cdfc72cccf86179a5dbddb3410aa339a0e012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b76ac13e62e0cca6866c3676b380c244f926a1e0e448b6eb51fda1d652bde89
MD5 c9a5c22a773c805d7ae4408263799daf
BLAKE2b-256 2ee5f2b9e0af4c770ff38dfdcd4206aa284d0b75557b2bd92900a5398ca09dd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf4751028b91c15fc6cd1d4ba51fbde4e9d50af4f36d59e20b6ad32f0b5d287e
MD5 4863b412148337937a8fefe67f6c083b
BLAKE2b-256 df969043b5b03c6b5ce2351bb132d3b8152d2f517b1afeb4d2a51d2e6a9a454b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48a83bc4699940e219e729fee0a7196979a75122ecdd13990340271300526ab6
MD5 7bd195fa008abfab350d1b46b4e6e3d5
BLAKE2b-256 85b26b29657272601dfee6313d369226398d3408dd078a24ead64f090024a8a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 51e5cdaa280ee85af0cc1cb037caf6b52762aed1223ccaddf6b2b2d2d8b6bde9
MD5 22f436463e8e507f7f2718360a38fbee
BLAKE2b-256 2347806cea5c03266e976437466493ada25abbc9dceaca09d5cca8f4bdb3be52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 90ac6bc9c34e882524c5e4120905678ade4ecfd259048ff39df63a0645216eaf
MD5 20997e87e3dbb33291ac451930bffcfc
BLAKE2b-256 9daa909fe8efca1f4c3fab4c5d943d11512457c9adc159dd788b5134eb3e3c8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 601b745bbad69295cc71f763dc300f0e8bcf3ec9ee3c39239b9caf4397136aa7
MD5 51a7c331f0a0cce327a6522112651825
BLAKE2b-256 7a8bfbc8bd8892cdc51a5ea5a6509be41f92bad534c5bd5f16cf593e640a568e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e53849a6ec57a415fcb6344b57717e50ddea61c560f4a4abd9e4207013cb5f5c
MD5 5fd9479b603500eab10a2f66481fbde1
BLAKE2b-256 1a51f4dcaf2ae48482634b1e92468928b6df714b1047d01e948c36e8a76273d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2095727f81c4fec8e63fea0209999f101655aa3ed0cfa434cfd96d67de6961c1
MD5 9aa88471e21e1748af5d10f666ca77f8
BLAKE2b-256 15da81c1ba53f44ce66a89c564106fdc42305a98c7ebfb529e0dedcf12b980c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14d30066dd2c0dc7d3d1d8f9caf69d16710d5488857bd8b20f6d8e9c858e6e5e
MD5 5dfd32bbe95da566317ecf01f2fafa93
BLAKE2b-256 09614d1232cc555a00f223bddc3ce8fd63903fb9a9910968e7208cbb5556b5e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 74912d41081aac68589589b09fa3e0bf81b9f052dc03c1e7fa2d55897a3822cd
MD5 c9435ddab570dc757807ea4d6fa87427
BLAKE2b-256 b388d87583aaab2b1358e474aa0ca265f6c7bd52033fc0b525f5ac6dd58ab91c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc4-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a81877c8c78bcd027276deceb71aa6f28b70ddbf43b154a0d6973ead648e2a91
MD5 b36826884451bf808a2d0f718d50e6ed
BLAKE2b-256 1062e3ce1fe6dc0b016472438069c1df3e5067932a21cfd90ebc470e30e90658

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