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 --pip-args="--prefer-binary" --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 --pip-args="--prefer-binary" --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.5.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.5-cp314-cp314t-musllinux_1_2_x86_64.whl (102.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_giac-10.8.5-cp314-cp314t-musllinux_1_2_aarch64.whl (92.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_giac-10.8.5-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.5-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.5-cp314-cp314t-macosx_13_0_x86_64.whl (35.1 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_giac-10.8.5-cp314-cp314t-macosx_13_0_arm64.whl (32.0 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_giac-10.8.5-cp314-cp314-musllinux_1_2_x86_64.whl (102.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_giac-10.8.5-cp314-cp314-musllinux_1_2_aarch64.whl (92.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.5-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.5-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.5-cp314-cp314-macosx_13_0_x86_64.whl (35.0 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_giac-10.8.5-cp314-cp314-macosx_13_0_arm64.whl (31.8 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_giac-10.8.5-cp313-cp313-musllinux_1_2_x86_64.whl (102.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_giac-10.8.5-cp313-cp313-musllinux_1_2_aarch64.whl (92.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.5-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.5-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.5-cp313-cp313-macosx_13_0_x86_64.whl (35.0 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_giac-10.8.5-cp313-cp313-macosx_13_0_arm64.whl (31.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_giac-10.8.5-cp312-cp312-musllinux_1_2_x86_64.whl (102.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_giac-10.8.5-cp312-cp312-musllinux_1_2_aarch64.whl (92.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.5-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.5-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.5-cp312-cp312-macosx_13_0_x86_64.whl (35.0 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_giac-10.8.5-cp312-cp312-macosx_13_0_arm64.whl (31.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_giac-10.8.5-cp311-cp311-musllinux_1_2_x86_64.whl (103.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_giac-10.8.5-cp311-cp311-musllinux_1_2_aarch64.whl (93.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.5-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.5-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.5-cp311-cp311-macosx_13_0_x86_64.whl (35.0 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_giac-10.8.5-cp311-cp311-macosx_13_0_arm64.whl (31.9 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

Details for the file passagemath_giac-10.8.5.tar.gz.

File metadata

  • Download URL: passagemath_giac-10.8.5.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.5.tar.gz
Algorithm Hash digest
SHA256 8f6927f53e7ab8d218f6a85fa3f83f63cec8ba09b8793da9b57d4a40367b4631
MD5 7992a4495c4057deaac7dea3bc0c52c2
BLAKE2b-256 09f460c44268dd9c4dd2d433809e0117140f677d282fd3c56c33763736a81388

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 494cd7e6d781faa4eddb64384abfa94039a9de8960930d9cdba955cc028c5c19
MD5 f56397f6ec59ab94b801a1268240e433
BLAKE2b-256 c92ec2ca1238894ed01fe702baf9fad09445173ecb986f6d767e4b41d5a4c173

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12c579ebc55b3277cbafb85ac4167fcea04a07f55fc038dc25da5838150c40ea
MD5 3e6fffe4855fef2c8a8283de73c00012
BLAKE2b-256 5e9ebe599955c4228bf6481d59075efad414d6027f9160f9c9646c285fedec04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7d88f210c9988dd9dcf432a25630d7563fc4eef581d712606b8a51e2317754a
MD5 ec4c9218ba6d432456779b6f261c439c
BLAKE2b-256 5861f617a80ec005031cf24917cf222311ca7f791d6e78f8c784d5422e954890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08f9fd56e2714bcede3abce36dc4cef4f0a49d638ad7b9801bb8d0bd120c3326
MD5 89672c203d4c1e04bdca47714f2b9bf0
BLAKE2b-256 0a759bbaa4dcb539d3e6a9b8225da0c28b6bc52e5e4ad9ef03670f6e1a8f1ce7

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 321be3503926d9cfb090d4b0d39f5fb89f84e81080704c715f2b5670f1eb2764
MD5 211ffad0a4c9a72f0b09d81fcf969e52
BLAKE2b-256 375d4dbd7c0be1da3fdac25c38d66ed645d8e43e89b56a0b205c7cdf6575cc32

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 5d86e2049b5820cfaa939245ce04284e8601259208f926fa82238be1ea56e768
MD5 33ee0a56fd6b5a0b948dabefa9b3b53c
BLAKE2b-256 e10cbd82a81897077700339e7014c6a15572a82e3f5459193982ab524d5f5125

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce8810783d5737d702916fdbe5dc556731be17b1bd54a392f40fcefd6ddc9beb
MD5 56aba75842ec73554a33c18352bf160b
BLAKE2b-256 d39e33064bc7bfdd02b0c50800d67b21fdd26bd8cf12689cd9fb155c48a9bfc6

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 974b2745128eb1e1e42be449894018bb5cf6b4a240a28c8d745c42cf0b4f41ac
MD5 884c2a80b4cefbc57a259a4029c40dcb
BLAKE2b-256 b88cd89b0705b3f8836563489fa5360040538bfd6d3b69cbc5b8c3fc208fbb27

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c6b4f380c98521bf9f31211e07a2d7b6ad1be29f0c9ac2f2f9de0b1c2ce1f35
MD5 20d0ac19570ab6ea49fd42da12e209a5
BLAKE2b-256 ebc320d215909de859824a60122807c47396c33992cdc2ddb208de1bf06ab028

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 567a1490f6a6a04c59926d2b825d1606dfdb0ff48ccff8485226a503b0e5d163
MD5 f1fff92c1dab24b32bb3000989645970
BLAKE2b-256 ef2eaa09926f6bdb7360fd30956f93f4bf096430bafbc66d061c2973bf3299fb

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b9fd22f553fc2fe22e4892ce25add735d7be8ff661050ad7247390589229269f
MD5 4240c6da1baafab3ecdc4afd49630660
BLAKE2b-256 1a7d51ef2272bb17bd47103d587d6329bc116a63193777e3f0c7b0c34ead3d78

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 89c01bea1b2944b1bcf86719ea1ea7223a96005e233f9196f557205aeee6a00d
MD5 64ee05af88619d7d9b5d6921ee8bbce4
BLAKE2b-256 b373d8f6b476a993bf7d2b8c618cbe260632a57de6deccf0954999c0b0b5c164

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17492bcb6b0a68ee89751d16707d5d58b9c889fb6f64af8c5db98adb54cc1c84
MD5 7d7ce73faab1745e8a9854e55f336f6b
BLAKE2b-256 b01a05c9a1671cc80383d4873521fafa27c246c0868a8b8f26b04b688516ba83

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d35c765edcf3df701267f9ed333629ab575a897eb20f6f6cceb82b98cac9f2d
MD5 1000637c107c30a56d374503f9d57bcb
BLAKE2b-256 2130a7afc12cbcd73ca3b68ba8e0860e31988789e04a87b30722d239d2f145f3

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba6cffe26a11bd94ac79cbd0dbece270990e46718e168e755e8552a339887e1b
MD5 c7efadcc040cf95a19cb92de1d1a5c64
BLAKE2b-256 7e580804ff275d531cbd5885ada8211027e720271cd75edaa88d69377bb4efdd

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3e8cfb780a3df46ff9319b9c91c481fcf53053177f71ddcb04256c7c7cf2f43
MD5 bb6743282ef37be666f5e3dba4b76e29
BLAKE2b-256 960e03f9e610e450388ccad22e8087aa9b1593476495a78f7ae07dabbf452a03

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 00079f040bc47acea8a0294763793a581b4ef8bd9268ca46695f70260b7b3682
MD5 253e641d3fbe76c7c177535fe85ce931
BLAKE2b-256 8767b93a2cf41795d01ffa7f61916200b9d5a5b6b880ab043e22670bf2d43fa6

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 78e704882f92c2faf0f397a6eb5093bee3688f9263c0e92365b4dbd1198e3888
MD5 014fb899887df2c3e77a73cbd7f995e8
BLAKE2b-256 412937120bb6a42862cba0eb9255a7f29277c6dede160039043ab5209032222a

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6b47b13d9cf5045cf442454b3e0adbd35249ddc411834edca4eea3fc173ddcc
MD5 2387bc0ae53a989f8f04bad11928c70b
BLAKE2b-256 3df5bf7f38f84a8b817bab8302512a00351e705b6114b5140bf9a85efba5bc4b

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9be221491a92c95036b66a313dc498aaa26e94d01bf453c5b6e4f26ea8e05aa6
MD5 617c1c879d0a46aafba280404b5c7227
BLAKE2b-256 e61433fa5d8da19983aa94498d372b0fa57be9090954cabfc50f48d350b2fc90

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ff377b9292be057a189b6df3c5b25221bef1c069c39d32ea77073ac1797fcea
MD5 deaf342f4645ae67df457ee36a3e2ec1
BLAKE2b-256 45675bf06771ff4010b023d48284dfad55c61841784152f54ec1c806ffb39f93

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f80d61b5374074cf1e5864a15c690fabe144267ed7882f7856bf2640ac39c5f4
MD5 7711ac3e793a018e62c4b31691c8d9f8
BLAKE2b-256 6fec9fd688ea4b393f6e7aef20f045aad451667657e91a3c0cbe7734767712e0

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ddc6cdc7f109fe995d5b5b6e430808fd35f55dcb0ca05d2e48f3f5f07ee430ef
MD5 2cfab2957f00fbfa0b39f1436ba74151
BLAKE2b-256 82ce62efe3958de851e92f59ab8e67973fcb7fbdbe035700e65eab6118e01da3

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 1e88c76763e3bc26ace9a36cf378a0d4e0b5c87fbef2f35d1293a065592ad777
MD5 f30f0dd4d2686fede0334213ae2eed96
BLAKE2b-256 66009094cdcd34211c32752052e9026ee4fbe22c9d2270c79c05c4e27b077669

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ac0986abfc6b5001709d567db729fda1ec40767085f11a9725b585a17d421bb
MD5 6c60caefb7f008129543b5a966f11246
BLAKE2b-256 46d79de988d9bc593f7f4d65a2174e9d041d3cd4be18899d503f03dca666f387

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a109e8b9c87e0590422dae1558abb9bc8a1eebf2e608773fa248e914fb3d45c
MD5 b3898a41f75a05755048e6f81063314c
BLAKE2b-256 83e4ead8c727d7ed0f0d261c0d8ccc2511b05b3860d7945f5e0dbb29235412c5

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5523a492dd1bae803832171f7133e7e4991d2ca380057bb7e38732601a1b05c
MD5 9ddbcc012a4193a026f3db66e07d6481
BLAKE2b-256 1df5f5d17f1e703d77a77ba18f3a49a4479d2818669ca39981d285075767f3b0

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d279be0a396038de97e3838e5d34b64a2ba2f685183ae768d149ffdd1caa39b1
MD5 522487e645c519d759405870b44c7af8
BLAKE2b-256 05a9aee087baa4689beb37331112374a17db05f60e8ad028691f326faac27d7b

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 61c063de76fd7885d5cc07bc3d0175f45fedbedf38ec974b6a9a0c4c597a58a9
MD5 03a8e28a5922dded208a5cbf6bc83766
BLAKE2b-256 ca0bd3e4bec652f6787ac023e50365d101d9df1864247bd706696eb4bfbf3f34

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.8.5-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.8.5-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ba879a0144f3feaada9eb6c6d57006da8bbf9ddeea6abab779fd358b6d3ca657
MD5 ca4748b95c5a697e2bb167639ea48fbc
BLAKE2b-256 fc201eb5551378c0c4d9f498bdcfbc0f0f66e3cd1bfffc88cf0e16decbeb3b08

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