Skip to main content

passagemath: Symbolic computation with GIAC

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

Giac/Xcas is a general purpose Computer algebra system by Bernard Parisse released under GPLv3. It has been developed since 2000 and is widely used: Giac/Xcas is the native CAS engine of the HP Prime calculators; the C++ kernel of the system, Giac, provides the CAS view of Geogebra.

This pip-installable source distribution passagemath-giac makes Giac available from Python and provides integration with the Sage Mathematical Software System.

What is included

Examples

A quick way to try it out interactively:

$ pipx run --spec "passagemath-giac[test]" ipython

In [1]: from passagemath_giac import *

In [2]: x = libgiac('x')

In [3]: V = [[x[i]**j for i in range(8)] for j in range(8)]

In [4]: libgiac(V).dim()
Out[4]: [8,8]

In [5]: libgiac.det_minor(V).factor()
Out[5]: (x[6]-(x[7]))*(x[5]-(x[7]))*(x[5]-(x[6]))*(x[4]-(x[7]))*(x[4]-(x[6]))*(x[4]-(x[5]))*(x[3]-(x[7]))*(x[3]-(x[6]))*(x[3]-(x[5]))*(x[3]-(x[4]))*(x[2]-(x[7]))*(x[2]-(x[6]))*(x[2]-(x[5]))*(x[2]-(x[4]))*(x[2]-(x[3]))*(x[1]-(x[7]))*(x[1]-(x[6]))*(x[1]-(x[5]))*(x[1]-(x[4]))*(x[1]-(x[3]))*(x[1]-(x[2]))*(x[0]-(x[7]))*(x[0]-(x[6]))*(x[0]-(x[5]))*(x[0]-(x[4]))*(x[0]-(x[3]))*(x[0]-(x[2]))*(x[0]-(x[1]))

In [6]: (x+5)**(1/3)        # note here 1/3 is done in Python before being sent to Giac
Out[6]: (x+5)^0.333333333333

In [7]: (x+5)**QQ('1/3')    # using Sage rationals
Out[7]: (x+5)^(1/3)

In [8]: from fractions import Fraction  # using Python rationals

In [9]: (x+5)**Fraction(1,3)
Out[9]: (x+5)^(1/3)

The last example again, using the Sage REPL:

$ pipx run --spec "passagemath-giac[test]" sage
Warning: sage.all is not available; this is a limited REPL.

sage: from passagemath_giac import *

sage: x = libgiac('x')

sage: (x+5)^(1/3)           # the Sage preparser translates this to (x+5)**QQ('1/3')
(x+5)^(1/3)

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_giac-10.8.6rc0.tar.gz (182.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

passagemath_giac-10.8.6rc0-cp314-cp314t-musllinux_1_2_x86_64.whl (101.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_giac-10.8.6rc0-cp314-cp314t-musllinux_1_2_aarch64.whl (91.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_giac-10.8.6rc0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (101.3 MB view details)

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

passagemath_giac-10.8.6rc0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (92.5 MB view details)

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

passagemath_giac-10.8.6rc0-cp314-cp314t-macosx_13_0_x86_64.whl (34.9 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_giac-10.8.6rc0-cp314-cp314t-macosx_13_0_arm64.whl (31.8 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_giac-10.8.6rc0-cp314-cp314-musllinux_1_2_x86_64.whl (101.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_giac-10.8.6rc0-cp314-cp314-musllinux_1_2_aarch64.whl (91.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.6rc0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (101.5 MB view details)

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

passagemath_giac-10.8.6rc0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (92.4 MB view details)

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

passagemath_giac-10.8.6rc0-cp314-cp314-macosx_13_0_x86_64.whl (34.8 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_giac-10.8.6rc0-cp314-cp314-macosx_13_0_arm64.whl (31.7 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_giac-10.8.6rc0-cp313-cp313-musllinux_1_2_x86_64.whl (101.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_giac-10.8.6rc0-cp313-cp313-musllinux_1_2_aarch64.whl (91.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.6rc0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (101.6 MB view details)

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

passagemath_giac-10.8.6rc0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (92.6 MB view details)

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

passagemath_giac-10.8.6rc0-cp313-cp313-macosx_13_0_x86_64.whl (34.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_giac-10.8.6rc0-cp313-cp313-macosx_13_0_arm64.whl (31.6 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_giac-10.8.6rc0-cp312-cp312-musllinux_1_2_x86_64.whl (101.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_giac-10.8.6rc0-cp312-cp312-musllinux_1_2_aarch64.whl (91.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.6rc0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (101.5 MB view details)

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

passagemath_giac-10.8.6rc0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (92.5 MB view details)

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

passagemath_giac-10.8.6rc0-cp312-cp312-macosx_13_0_x86_64.whl (34.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_giac-10.8.6rc0-cp312-cp312-macosx_13_0_arm64.whl (31.6 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_giac-10.8.6rc0-cp311-cp311-musllinux_1_2_x86_64.whl (102.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_giac-10.8.6rc0-cp311-cp311-musllinux_1_2_aarch64.whl (92.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.6rc0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (102.0 MB view details)

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

passagemath_giac-10.8.6rc0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (93.1 MB view details)

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

passagemath_giac-10.8.6rc0-cp311-cp311-macosx_13_0_x86_64.whl (34.8 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_giac-10.8.6rc0-cp311-cp311-macosx_13_0_arm64.whl (31.7 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

Details for the file passagemath_giac-10.8.6rc0.tar.gz.

File metadata

  • Download URL: passagemath_giac-10.8.6rc0.tar.gz
  • Upload date:
  • Size: 182.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for passagemath_giac-10.8.6rc0.tar.gz
Algorithm Hash digest
SHA256 a2117269db931f51d051a195d6dcef78dd26af35dc25748d0c8b1b757753bf65
MD5 ee8f4533f8e8699fa5d229bd3609ea40
BLAKE2b-256 680f4e852feca8ebe17c89e521bc34f1e5bd5725e5711b94fa33b9d3a89974bb

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dc655f9b7e9b2448d1baddd8fe8544c6714962cf111194e2c36ef441271b5bf
MD5 cf33506d2e75021dac151722963d0063
BLAKE2b-256 aa0a1c898048dd5d4c6c0c29acbd92107cc1a0ffa71a56dac786a554e73234a4

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 923e05d4200fa0b08368c109e48e0e82c8c255152f29dd4380f611c7b8038e74
MD5 8718ad1b639e8f348e90326d9e292283
BLAKE2b-256 bcd05ae95692626270360c73126ffdcf7b2a0a133a77d06a339d2cd38e94c679

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41a965b278114347e811c78533f28831b1d196d980b3c1aad4af717bb7faffa9
MD5 d83dd5e066105dadbe154f859947137b
BLAKE2b-256 0f3594ddb231378da299a5f1c389a18d08a3d23c468461e3784640a4ce8268e7

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e02101301c4e87aa89db9a8b02af3c8d317c52df399304c7830a75908ad13e54
MD5 917d0e2658168b67ee12cc6eeb06ff5a
BLAKE2b-256 1ba3aa848f4290de9d2615e24a4c6f0f530241f7fba7c6b3bd62959f92261748

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 82c5562fea633c922680ffeac07b61db9ad8811ccd6ee91c87445e82ee1ce556
MD5 e9479e5806890537e44b734edf04a4cb
BLAKE2b-256 010bcdb49b3dc92ba69e16c5afe0e5aa61915c3a98263c80a5e5f6722c1097de

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 deffdf1784d783c0a3f3edcdaae736e21e4f29409dbcf17f0cf97016d94f3105
MD5 d89bfeeae29674ed9fb0e5cb70b907d9
BLAKE2b-256 d7f66aa07a878ea57851a867edd320e7aae571a21ed2b2d95cf830e62104d239

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca3ff8442f88d897755aac4e6c155b2cbc5f2d707271f13f1427dfde9cd4dd74
MD5 9434eedb7be0470e561ef7cb1d602f42
BLAKE2b-256 df2c63a2b0ce50a3f0816bd11e498ce33e97f5b374351ddd0ad2442a0b57ea44

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f44286251411623ab751c1781a11510171e8ef783205d92f89fe1b644f606d2
MD5 67611b583a22eba53282c83724e22059
BLAKE2b-256 9589e6a31073ff26cf6cf3bc237cc0cf0fe2a4a42d1e06789f8f9cec6cf33b38

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 701372d60c7e7eb81f67154ff883885717a36ac3801a8021a3feecc5ded91a17
MD5 33669db4a37ca935f808f8ea127c5378
BLAKE2b-256 d729975e1eb5211eb08102c7b3462b02a43da9e174fb1233853f4f8677e0c30a

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc4d4f207c8f8d1301b2bffd3738b06cbb39e8827f9e4e6198651186fc8fa4a5
MD5 cddb387ebaf975afa4decde3fad4a7c4
BLAKE2b-256 262fdbeefa3f008bf4d2e5011c41308ed318c2b125f686f653fc3d4746df6cf7

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 52618dd3fa5a3eaed76f610ed8c9a1db3ea5b1f6febdeac6179d404bfa2b5dbc
MD5 14e5f0091f6fe94a3a891ac83e061ac3
BLAKE2b-256 980c2bec978e23e99f19ecf29955eca598179fe3fec62ba2912c1aa0def7f8f8

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8b5b628700c9d7c371bd2a26aa0c6974f8bac9901a6efd7f620cc30505a2c7ea
MD5 3a823531dd2f4c52311426e93a306e1f
BLAKE2b-256 f2022187f7cd78391cf7149496db20071b5d71caa4e051e7c9080a4d2a920736

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2040167840ef308a90b0de6a05bf22ab078a3e5672afc1b0713262b785851cee
MD5 140ee5b531210ccfad14dbdc9e4d6d98
BLAKE2b-256 8977f6fa9865f10f0a4266961f1c3d6d2ef9bb885c5b70396021a6571db737b0

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e15235058ed8641de4fcbfec3693b3c0996d70f1b833e122998277ce71afb222
MD5 e8c2f36e12b024baaf16b70d946a17db
BLAKE2b-256 8de1b9d9cdc308dd026cf0a2b965dda8ab7e1fb8f99d74ce60e4aa3116d02a01

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a900ae83f17c841b67e57d95ac438f454808cd9a07183fdb3b398442220241b
MD5 eddd7a8a148066e409a36258000f6070
BLAKE2b-256 23b16163e42b4267a60a57c64350f6eabbdaf91ce09042a8e161742f5e71b898

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c045a5201034e1300a4152b8bb5104b48875f09e5a288a3a1c7a8b56deb8e65b
MD5 cd4b53e8a7dae4f8a6007a55893d5aa5
BLAKE2b-256 21cb553a9e144a30fdc6874fa3ad3262a58b18c81db3f8ff6186dfec4b1a6600

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 123a2d90edb132de96815a27f37d39e678e608041bb9ea2cc049ea90dfe43173
MD5 5439c29a71450bb19bf03951d6fc29be
BLAKE2b-256 e77ef3f651fe4dc4b03b6e37b31c33f1164f02580d6bdada02ef2ab92e8f4c78

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b61e883a5ceef46de7a7d34cc577f55d5418cc4c25fc25e3a7b4144bae636800
MD5 0642501b51284ab57b9ebcf62d41f27c
BLAKE2b-256 028bc9af076d8cdf7a096afdb8256f26193f41f93906fc114bec58c813b3298a

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1750238f62746a1aaa8cf12ca9c2116665a6123cd56456444506935db0c7c52b
MD5 b6d36d5bb9fe8e61b4b2c346b34276a5
BLAKE2b-256 1501a263bb9d57912703c17da7d33c0e435edd464f8fdf9eb2f7d0b6e9e5c0e5

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0670b4f71f299d51ba0b265914d896a336e1eaf71f35f07353cdeaada487395
MD5 4714e1777e866024acef4c62991374aa
BLAKE2b-256 5c25d7a23363a7f8611c40b2e65479d7ed179a99318803765868bcf230bb2468

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85b3c5fcd19b95d97a38fc04c82c89d6f83846e6024a8bb6a3d8cc26cbbfceca
MD5 1de90af2378a9e148c59b23995092006
BLAKE2b-256 943a196904033b4b04aeec494e2b5d0b00363492afeaabf65543a01d1da9c236

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e7c760ed99772a2e08ed699229027dd90f27657afadb1beecf2b919ab126f26
MD5 257198c271eaadcf45a7a593212ad49c
BLAKE2b-256 438f1e72d5a0e813bd25e0d71333b6f421f2c8a6a97215a6b60cd1d75828b078

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e050fa1625fcd7a48e212169940590d9164d0ef3757a20b081c03bbdae87a23a
MD5 617c3839fb9101f7261fed0070dbd7e5
BLAKE2b-256 7cbdb0a734f7491fbc2e0b05749446748e30e2b2280631b47e68cb6bb85bdf1e

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 7589ffec26eade99a229a5245397e56224ee6acdd05ab90c5e5bb700abed0682
MD5 dec418e8b5be2cda6df137f925761bc1
BLAKE2b-256 b3cadc08d5e19eb2b8a7d88fc06120c7f17cfed24cc5c584a46d5cffc17263a4

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 037c5a31935ecdade7f70a17a1cedefd44ddbc8bf0328bb7815fce991ede43eb
MD5 396a3c2fcf6b5f70209ec56eda2c34df
BLAKE2b-256 cc6c079d7a8a48b69e3638cf6c757d832ef459069e6a0253d08e0d695736efc0

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f5b049fd347e6b415feb9c9f38751ee2c508958ceedd1a99c3a7f729788e377
MD5 600dec135babcfd6439a70c8a7ce4738
BLAKE2b-256 68540527ec88f25405ba8beece61a74e052f8a400352faa9a1aae4c50a98b6ec

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98d62748b4e33208ef755c101ab86b6ee8fed4a5ac2902ebbf9bf601feddc89d
MD5 5f59b905b468042ca4a4b8d754c92225
BLAKE2b-256 83a879ad6df2202782b9d08d2971667061757e5a4e12cdfcb8998987b151b3e7

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f18f200404c0832a9d9b8e0d6c18773150e859dce2f508eaf78bb9a833460e96
MD5 9b149d2cd90c7bb2c1e7350ab7924db7
BLAKE2b-256 43454f25d360dc0d2809e18c636ace3423f853f191e21691d1cb0e3a3d57293c

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f18e22d34a0230e7bea553675ec0298371fc6ddb9c01976e1ca059bc3b2e616b
MD5 4645ad4913c80c9657272d350239afb9
BLAKE2b-256 bee799e67589b7132116281e8767549726bea73884031adab4e23e2290d72aae

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.6rc0-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.6rc0-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 76aa82c7b63ca4df0fd64d44d9dbfb79fb1790f0fa655e461b99d2d52d4571aa
MD5 d83238c4b7431c9045f9c18412c64a8f
BLAKE2b-256 505a96d5c12c7ae110d684949432ac17de4f0bb4eb9f1742dd4247fc0dc7721e

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