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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

File metadata

  • Download URL: passagemath_gap-10.8.5rc1.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.5rc1.tar.gz
Algorithm Hash digest
SHA256 8d13c316480546b1ba74cf58c6352568aa4073fd879d61ff80960bc10e99e4cd
MD5 a25af95bd35f802da7619ccbbd748759
BLAKE2b-256 8e9475e40627aafe9384b073eca59d7e2960d305220cf4c9a1c487518ccdd40d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b660619c69ebf908cb08c729a3e1b72270223769698f64109f0a7b0e219d3a1e
MD5 84f10c52f0ce6d2ac2b0d661f9e9fdc3
BLAKE2b-256 d0f7a891f6fed241eb7f459054af69ada9a0facd2efb8067e9ef86c9af5ddd9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f76b09b5251043ca5f56902b22ffb759ee0e880f2db35f147eacec3dc595af78
MD5 131fbbb7f16c3b3378ef8cc408e5e67d
BLAKE2b-256 7bba19873f4ce535605a2c22bf7de8f6662ba37ac20e302ae7e90e7901409dac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72d609ab2b600197b2fefd3b7dda206ca29a3742558f80ae7ad342d612fff1d8
MD5 015ecda352c46c6baa0358342bc340c8
BLAKE2b-256 f1b2d777aef4825c047c465486760695be479cd22ae3461b62e2c8f1f15aaa69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 903f43d42a0963b5612ccd094f4449ecd358ed747ed275bcbcb596ce2da5200d
MD5 54db0214fc01833e3e0d895c0bd001b0
BLAKE2b-256 459d692c313b34e71d29c5b099d839e46d1afb6d21a08884c78468b51c9a9f1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 18cf01007abfea34e0a81e8c3e52f35cc0e6f09103099dc3807f45939148d713
MD5 0eea47673849fae19b4d735e54216f11
BLAKE2b-256 880f919edea92cbf8683b7ee48977957e31da0e15bb00aeebd90f6a5df806cb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a06aab6fed8b604c77b0f13a2040d5cbecb2b6d299305320c17a724d51584a08
MD5 3f4072220ee54876c279017811a62b66
BLAKE2b-256 adc7d22d140aad2759ed33441167427f4fb55f9ccdb3c06ea88110b9adf10d91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63040b19f04d8487dab9e39b536562b95b647ae23c82587582c78a03442cc241
MD5 629d4735b33b9ff21b6df24bf3c850eb
BLAKE2b-256 7ad3c7235cabd97087a1fb4050c064d84bce38a1b9160165e41e4df43c701226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0b2080fb736cc1f8cd76c14053967be14841eb786e939235ba29fff2af6f573
MD5 79772ab8ed862d95a738c993ae513bc0
BLAKE2b-256 4ab56d32bd99c5f26efef1ae3bc72d44535059d37c3bc739dcd3a44c7329be26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f291d0bbf5c91e7715043a3360fe92dd3c18d3bfc998a226ed9d80e31b302df2
MD5 1d7354f643788b0377df48754b35a10f
BLAKE2b-256 7f0b75ae065476d463a90b4741ac0d3c850bd66c344e35f8f4a8c10324985ced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a02cbd0fca2b39ea0dd750fe7ee1f8abb10f4ba05bbd8044a81afb59449eda0
MD5 554c452dc1ae00dad4efa17a4c599cbd
BLAKE2b-256 b40af59b6630a44dad7de3fdf0d600844723a41f4d807c10ee3e0cbfa2e31694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f0508e434764ead2f320d019808435d421393602e03dc7296898d113a9133e18
MD5 b9a31ebee57fb5004cbd3d3e99cd2198
BLAKE2b-256 55a4def9522c46e94a7097f5da3948d7eb447e01a3515a68e4dfbdf748e313a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 6af3bc587084e398dfdd1148a41a5cbffeb69fc04b91fd5d71a23eaf3c12e9ef
MD5 d8dcf8f1c3f84ddbfb16be81932dc7bf
BLAKE2b-256 704dbf16859ed854c86ad7f04efb5e3921419035597643330da5186d0774d37c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b11f3584511aea6b6edcf2ad12e571bcd8e341b38d532bb2702d6f3520246edf
MD5 579aa9f261ad7c2d0dab4d6bc8ff8f40
BLAKE2b-256 819d9a1681e7820a06ea0a480816a723945a2cd70899031e6f9f629475b1484f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d038b079bea9085ce051451241eba40aa55a5f35690d20e09eaf2a30e4c4a0d2
MD5 650969b32cf4455652b3f17df1ffa975
BLAKE2b-256 727930f909809902851300b86f174913bf37f44c576ef5e9af72661d45647da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7422f5b154f7d5392991bc2d839eb08c6bd8b01efd3ae077ec85694780629a4b
MD5 d11460172326d4756cba0bbc25cc028f
BLAKE2b-256 46b85a5237436b50f6f06dc2e0b3a27591850f38877526dc0c42fbda5f46edcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7aaef79f9aa2d03055c35b3c29029759eeb9c55b663d4771b8aeec87118b1ccf
MD5 837cb55b65f7fe0eddf732d980d305b5
BLAKE2b-256 7c523f91849175ee69960e43ae8ee44009a560ee4cfd00ef526f98e328aed870

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 359f1c593c1817cad059e29fcb344269d8a97db13ba37efbc08386ceab5178f8
MD5 c59e5bd303eb2579386d020a2bb6f9e0
BLAKE2b-256 cb6252871bc3aa7e9526fca4d18ca255b667c3d0e17be1df36a9bac233c367c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 27419da4792410f8637d05f2b0fcd0dc78e6fe16ff871c3c0931c17b27641eff
MD5 cee3804104c2952216e5473d69432ebf
BLAKE2b-256 d289a54f045601286ed85868f53a2c3468055ba505cfd63f23edee714b0de4ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9642e7a1df7f37bdea7627631430da17aa2e08259dbc8a95eb4440861518cf19
MD5 7f231b44e94ed17deae06712cae1ed69
BLAKE2b-256 09cd6969dc10b2759ba4e91e12f1b411bf94a16c3bcf1ca11802ff75c2ec96ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3240221b797cf67a316a84fb74687946fd04dd19dba73853a14ac4749490c583
MD5 057c5b7652add4dbb768b299ef11c723
BLAKE2b-256 2d49debf0714e161f7a2d7e57d5d584fd80ddb3e4af772fdbb3573148178c175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c777076f0804d15df4b651a0ec39911ce08bcc3141684970870e459c55db3e7
MD5 6dd833c61b4097bc07e1fa096e33ea00
BLAKE2b-256 6427eab36c0e5a0a49e8bd7d1e9fadeab7eafa1ee118ed6be5421d56e24877a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1079f678f8398865e6fe35fdfeda21dfffa6d67fd0c602a5ff2cf9e88f0270b5
MD5 5a30f7b1272954525ac44b3cc40894fe
BLAKE2b-256 7dac2f07505be86d7b93ac37ab27ad30037ed7aeef7a305e90a5cdf38de3f75f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 dc84418d608577ee75a299d8de657131f1dab1d01d99f8edb5552754c9312137
MD5 30295c57c5c34db3ca7e9c6296f8d65d
BLAKE2b-256 710d5237c38514328d38d76f8b5e5d31be363374ed63e91d152de32ba0ca2753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 88c50b92fb69c312a1b54c9631c692c89d2d9a6dc04d146f5321ebf24f219a10
MD5 c8e63e72094d3a96a4223f28d8b6b847
BLAKE2b-256 2f940ab7894c2131152f9eaa6f860d6110dab3054c48152138e3c45ce8437a49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61fa9bf47fa5da081a0b135e2b1cad09bebb7a02a5b9ae7d617b5c5e7e88ded8
MD5 c5ef2c0e05ea815731aaa899777373a6
BLAKE2b-256 3d719fa6a7eed13e6a309ecc0bc68f43cc08b9c1654c32d7dd5f7b90bcc8d52f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e26056c60147548f730f41f1cbe893a6727eb6dfb256d29d8e90f70e12e5267
MD5 80a98844b89259bc1feed47bdd06d1be
BLAKE2b-256 f6f96c5dd8a7d272641a945dacdbe196c681e1bc62a49e67af1f7979174eda49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ef5050983e928ec5559b812fa3c1c6e0ba51b66689ff187f85e4d324f7def91
MD5 47b514e440921389ea473eaf766948ca
BLAKE2b-256 fe0618f828d11e15325446732e00c7e3d9ba80339d0557bc5974efac833df92b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d06b74d377b4cb30aa32094fea34e513d281f278575cc752a37645552916c9e
MD5 08c6ab5c1c772767e3cb31e0aecd54a3
BLAKE2b-256 97c9d2ebeb4f4ca3b1781696c3fc3be7a233329adbf971a20974cbc23dc795b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ec55818291b74881e1f3cc8ce8f5de8dadffbac3971952093c5d98587251e123
MD5 24244f181651ee6d3f5ba0cb4c847513
BLAKE2b-256 76e91c6a1b61bc2c6d4193229101dc456d2755920ba4bf648d93378c5beab432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.5rc1-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f180e85f512d3b540c6e4c6aa0f6a21384f7ad0d0beb1bd77a778b1bea31e13c
MD5 5bc499d42710a0d08cc36fdffe608b5b
BLAKE2b-256 433d3b2c3f82fe86d286168daf09fcd6b5ea83acf2d02b87321272388e48bee3

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