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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_gap-10.8.4-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.4-cp314-cp314-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.4-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.4-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.4-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.4-cp314-cp314-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_gap-10.8.4-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.4-cp313-cp313-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.4-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.4-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.4-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.4-cp313-cp313-macosx_13_0_arm64.whl (64.5 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_gap-10.8.4-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.4-cp312-cp312-musllinux_1_2_aarch64.whl (86.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_gap-10.8.4-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.4-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.4-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.4-cp312-cp312-macosx_13_0_arm64.whl (64.6 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_gap-10.8.4-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.4-cp311-cp311-musllinux_1_2_aarch64.whl (86.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

File metadata

  • Download URL: passagemath_gap-10.8.4.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.4.tar.gz
Algorithm Hash digest
SHA256 7f238ebb51e36fdb41614ab807cbafa038dc50c588a762b04369050140d49143
MD5 8167c2395bc67cc7618fa6027f31b9dd
BLAKE2b-256 c9f248d8acbce3f4a42a03b4bb1ea99c0587829ad8bd86db829e1bad2cfa6374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 457a19d6f3a23ab8369c5c7414abfb2052776bc32803a12b5ed8eb44479506c9
MD5 8628e188a71972fcc2b98f7ce3b0002c
BLAKE2b-256 5fa382e01a6071b2ef653eeee056982b3cd572532ce0e244afcae690e9dd717e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39119edad849c0ceef5dd87920610f737569af5e189f01770194fac7309cb33f
MD5 042113f60549d6a90d6c3e5f691924f2
BLAKE2b-256 d1246ba19ebc3589603463525f250f92df5b05ac6a4bc0935afb06a8d4f9403b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c95af2e5beaf4960acc48275dd68d716ee6b2382ea107d37f59648461ae51d43
MD5 6a029140d0381b222b08ed2a07ecf21c
BLAKE2b-256 ee14df524886112d30c2cbc9ffd78dd4c13fa4d23f933fa1c36d8b22546cfa5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d1fc9d4cd420f3c9c5290d1cc798be4b1f5ff4ab6759e96ddc31125f0a008b9
MD5 0b46e37a23dee779d67db93efc2e8098
BLAKE2b-256 6fae1e7808f0dbcb3f0e6255aa0e9d3c10aad2253d18a221a41bd49be97e7f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0fab95152fd3da352adcb7a7de1495711a1a7570e22c5b1d140f69488b046e15
MD5 a610867343f62fc9b4260abfd5b38b3b
BLAKE2b-256 4e2f938f854a5a97d8303f9dbfdc6a5fcf6960d4b8d627846d85e60fa3682aea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8880c8e73ca301137dbee6592590baddb0e9a17e47562085dfddd87f199c6e96
MD5 70d7d7d881efa8db95d011c9290dc8b5
BLAKE2b-256 0c6a5dc9689c3f334fafa1556d5d3db4d9929f05996c24bbd58bb65eb71a4478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c53a04e9e409fa7a1fe751f2488bee15768f9c589a69984256650528cb8f41ea
MD5 c12dd76eea0a1a4e818f7ef43f731398
BLAKE2b-256 664ecf2f207a4997f16fd6704274ca197d69ae0d1612b8a36b611a1b411d3b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8435b56d46f1abdcce545915f2e5a0a7ca13cbc05f289a03d8b0d7a45a5b39a1
MD5 bf69ad4c3d0d4539312f0299239267be
BLAKE2b-256 cebbbd3cd0cdf5630a98431e9592365c3664c626398e1f39f7c5c429bc79721d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef8654513929042f58734b0911a26d966db8e4503dd0a9ba0109693cdb9dd4e3
MD5 68b3c4c2ca56316edc11516f6f8e82f5
BLAKE2b-256 414b39149fe77424a30b60b821ea22125b03a90016de2acc797faf439430d941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a11963c082915fafaf42860da62533999c4102675b7c092467d7b8854478c7a
MD5 135530c12e7076d53603b619657f2100
BLAKE2b-256 334aee1c2e0bfdced77f958e0381b41bd4a9bfa352014936fd6ea0e854ff18c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 4d08ea21099e9c296b6bd92e78bbdba369cba582ef7a653a748dcbe2657481ac
MD5 a3413c897abfce365c1bfe080c58721b
BLAKE2b-256 52d5a8da97ec470075ce1d3b873eba7e6ca6443f01b016a990cbf6f26b0e17e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c5a472d5bd89d120feaf952c3844208ba8a9a86091fd06d6d59ae173d784bca1
MD5 0009a53bdce380ac49e5387cf782afa8
BLAKE2b-256 2fff91e5b114d76a1e0d247a284d92774ec64aa0973263180f45f44bf123531c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8647fab0f92cad7a11899fafaa35c1ce13e46c9c628437bde8cd22ac6cb19e27
MD5 b580031779d16b0f1126c12566f20402
BLAKE2b-256 1aef0751812d3ae926bc503f8925025e89945bd33102c1e4ea33798ca5f775dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0cd51336571a2dd0170f43d873984caa768c03c421b29c74ea93622a8320e7b
MD5 213b3c39b5c84137f7d23e2cd2e77b00
BLAKE2b-256 2cc778edf1e0cdcf8e2d68b5a7fb928966febdb176a496f94441206882badb3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b7e7c008ac64f96d36c611d972b35344eec7c5ec518cca6fd6a1c6ebc68a1e9
MD5 ff281f39601c9f296ad4e1cc8b796a2f
BLAKE2b-256 8df31d4f480c4373dbc6e0e95e5e5fcb64292467eed4887a32e48f743c6d5b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae4162f2339c54c02322c32670f9411e715c55286a55fd4d16fc57ec5e6691ef
MD5 bec9c3dc25126545f7a31fdb22297576
BLAKE2b-256 60b7ada701234d0e0809252bc3744e78fd978819905802a3aaecd2bd2106e998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 cfd0166e400e2cb2a73a2bd66cabd72df9da3fb994a6c4fd5fb353e4e0da53a9
MD5 be52e03146fc48a0c5ebf7f330e3f1f2
BLAKE2b-256 dd922fadf12637341df79627736e6a04bab5387a5e790aa61f02baaf98d757b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 078fc251eb206a606dd9eaa9dca9fbc0e18eac985cc178b8e18ee0a9b18eda93
MD5 1a89aae476516163593802e3af42b886
BLAKE2b-256 a6a0720a526b2a09f69a45ea78cc7122f4fa83212c6a51f7e018d714828ae618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd01e5cdbf2ad2d5e46b69eceb3137d93bb156c961e6f6cb3b977799c801b4f8
MD5 313cd8ae5121d26894845015f136545d
BLAKE2b-256 715cf2e1c2cec22408d9a0c850090134cca9d9e1f3ae9e12e654243718f781fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7c5dfc5e7ae81b1ac27be312bef3b6212534177f759737420e0b47da1e40e34
MD5 ce507afde4346cc963b4c4f90851a846
BLAKE2b-256 8f510bf3d9bd1b404ba5c328fdab8a13a887b89980e5975d20327e97b90b8720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d7e1cc2e26f0554d80d1a186d00ab1fca2dcb89a930e6f10fd87576d8fce5fc
MD5 c40c797f4e1f155a9c85eaa45022f7d0
BLAKE2b-256 c4d0bd5df4e62ddcd2dfd95492d6f6627cae0c71f27d9ea8572b8d14620ddadd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9f6bebe8249d6436e3a3cc504a32c9135a7752fae7a51a1ec2bb39627ec69e6
MD5 9c89e054c6746bc8147fdac8673a4072
BLAKE2b-256 c5ec953655aae71b2a1d841df8c97b122ca032db401725f472fce101819fd250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 38e9baad0b576b4f0eeb18bca94994825b23f0c5b29c78d6b77f94dfe96d3e0c
MD5 e9fb0ed42a24ba11413476e3de162760
BLAKE2b-256 e82f2185a93637b768a9a06b460464aad2341d6363c13f8f81a22667f3854713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 813c80513f33764c8a1c7e8b373d6cbf0f4cc127e642bdc6f9b64ff6b0c7c447
MD5 d0bfa40e5982b6000c8ccb1dab3c8aea
BLAKE2b-256 6cbca959247d283803b1f0c754431fa33d4f3f5f7a0a98d8e52e85c0b7af2b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1a11cd997cb2405f498b3991a86b47a811a42b802ba5685fb8fea8dc1a23877
MD5 a9b263f02e93842691de56ced7f0b506
BLAKE2b-256 d0c1fde5eb397fc5bf149b71e157f1e3c286f7680e669ddcae487e5011d6adaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb420cfde48934a132a83d74b5c089ae63b1ae2bf0c6ae883e2d36a7401aba2e
MD5 ffb793ab3f75e4d7172bea0d2ca72f9c
BLAKE2b-256 bc14812fb6e796d2e9cfd4706797f103d4ed8c790d0f83b9d922a389055aee65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2481faa4a70a474b817de7fda98df5ed8213185f81a9e2e6c78c08268131a6d3
MD5 dc1c3c1cd43d2dcf355a13f94e9b42e9
BLAKE2b-256 3f7471ed0c66220f32256ba14495eb1d7a665170dc3edd8f07f0e8e08b7a7351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f54cd85606184814b761fba50be144d76ef84515d4e2ce49719917a27e7fff7
MD5 73a125e3b26305cbc4055d9eb7ee30dd
BLAKE2b-256 192b679f957dae4772a8eb2b96da24059e99d0f94849da4482379fa4d001da46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 bee257d65af3f531a6cbf3c0df7b103a0fac503110d0330722078fa6c9ddd2bb
MD5 530f95ef4e72a8a6dac6c03cddd1ae12
BLAKE2b-256 016ee3d3eaf2e7a456710fc53b10d2b8f57d45887dc36a7a9278d32e89ebee7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_gap-10.8.4-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a1938b7433edb506820e9ebaf0295637b1b0cca5c3a882def994da80cbfde1bf
MD5 b048d042feba05e6a622c1fb6d336f45
BLAKE2b-256 ed4cbf2823c86b52456b0cd031678e07ff2925b502aaf20f1485b4921007ef52

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