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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_giac-10.8.4-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.4-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.4-cp314-cp314t-macosx_13_0_x86_64.whl (35.0 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_giac-10.8.4-cp314-cp314t-macosx_13_0_arm64.whl (31.5 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.4-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.4-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.4-cp314-cp314-macosx_13_0_x86_64.whl (34.9 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_giac-10.8.4-cp314-cp314-macosx_13_0_arm64.whl (31.4 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.4-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.4-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.4-cp313-cp313-macosx_13_0_x86_64.whl (34.9 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_giac-10.8.4-cp313-cp313-macosx_13_0_arm64.whl (31.4 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_giac-10.8.4-cp312-cp312-musllinux_1_2_x86_64.whl (102.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.4-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.4-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.4-cp312-cp312-macosx_13_0_x86_64.whl (34.9 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_giac-10.8.4-cp312-cp312-macosx_13_0_arm64.whl (31.4 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.4-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.4-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.4-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.4-cp311-cp311-macosx_13_0_arm64.whl (31.4 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: passagemath_giac-10.8.4.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.4.tar.gz
Algorithm Hash digest
SHA256 f00ff79a54b500d854994663af7a1cc9f681c467e63ad00183b76d7d44596a89
MD5 13f1339646a669f94adb91ac3f0c5c68
BLAKE2b-256 fdb22fc92fe9853acd6da22ea2b9d6c87b33b6c1d3df0455a771cb1b48201fde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5522c91bfcb689b10e56fd80f8d21c513f67dccbce6284886c6a630e732cad0
MD5 667d8fb668b6676b0b5ba53192f1cbb8
BLAKE2b-256 e6aa7bf5466a72d55bedb379750a81739bfc3c0e23a5ff4cb9a3de5ad831d88d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e932cfd5f8427f13a85f42b14950b62dde79da35f0120aeba9df84cd78e81b48
MD5 1d7c1d45939456bba442e5a7e3a9baab
BLAKE2b-256 2189e702a0d6c3c4f1ddd5e3cee7a5f3ff35af9810134f477a33419e34502dd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95de9c154b6ee528312465581ba7bc39c6164145e2380319a7f60ba9ca6094e6
MD5 8d2432a4f704858c3a4cf82e54502cfc
BLAKE2b-256 6c255511d5457d2e3d203b5250fee1ef7a530bc130525edc0c318703f8d9d7a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7dffa907f0c6f6afe9014171be5c35967d1b5ff205f7049f2057774f7dc2a7d7
MD5 61c45ae6c7c3590d26f39bba7d7792f3
BLAKE2b-256 b02171b9eab726c0b318c484ede841555f655de0be8d8db98d23a2b514f66b98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 fc32cedee50e1eaaab672d35d6eb59cb8a4119c0e9744d36b97195d0194c3d71
MD5 f1284f034d470c8aecbee04faf85291d
BLAKE2b-256 f65294fa1d1956f19faae7528eec0d669d1d93fc8af71d9834782c90e38dc456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 5abb51b900eb086da98155f4412759d8860cc5dcd491961c6150796e0dbb8b3b
MD5 b9ea790b6f140a420da9df5218f6f45a
BLAKE2b-256 67be9d69a019b1d521a200e5b6b0089300175c9ddf0150d4c1a25c531ee122fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 528df05af6bee9be8030e075e3f97ad457582415f39490e8a8eff2ccc090eeca
MD5 2daa517a5a63785ad75d7acad5465e80
BLAKE2b-256 cc5dd4458472de3b939a8d3120a878577bbadebcf350011f482f11a68d541a33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65b1bd6c9a1de95ea3ee25c9691c6ef692e695c96f5a0f99b811ea7452ba00c5
MD5 bb7ec9235492a16ad7329372a455de1d
BLAKE2b-256 e054c847a04940333166d7bc1b0510adc92703eb89b49bd8066700453816efc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64861951c033cafa68c23058a083ed7d17f6d689411037d72336688501fb22be
MD5 221a12814a81e598639ae5df3a66cc92
BLAKE2b-256 af4b7bb2f41906f6b7c3e81a73f5d953f5ac9ab0a347c07cb6bcaa17b018f78f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 885f2a91214047c0a77affaf5dacc03ef6799d121652a60456d5a3a6324e0313
MD5 4d62d0989251c1780fa04bd388d99765
BLAKE2b-256 5dfc8a9f821ae44e194ff9a16f175d9e0bf7eb3d86eaa371a0e7fd076b6b9a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6b65699aeb53d31c479243bb2726e2737ccf992fec1187233e2e87b6fb043e2f
MD5 1a9090d0a01b1a317ae688b9a0624be6
BLAKE2b-256 65d0381bdf8c0ee542da2971ff15bdebba4fc3b4dd869b282dad5795021d7484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 5b8f0e15cb7f1b711242e2f6f2311c9c5ff3e106c373ca4ac44259c2fd5dfc63
MD5 9a047ed074ebcdad43119d2b666e48eb
BLAKE2b-256 f30919d0f97102bc5e3159ef123fad7ae6bb9c5efeebcf5057affcc1065d086e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2442d562459cc7a5727ffbd7aafd70ee0a621dcfc6911566f11f2f408c163c53
MD5 b8ca996f226af092ed02c5c3a519cbf3
BLAKE2b-256 396b3e792d8ebc2d5c69c1c092a15f7c1a0107c6091f669cfcfbebf5e0a5615a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 470c61957029b610254424b937dee791204b92d17198507100590b436c81cb5e
MD5 12de01be94ae21bb9edd68b64894f418
BLAKE2b-256 fed423117ca8ecc2f3d21185f1101929ca3a29096e9bffd1b7346ce12268e15c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4fe12400209db3769d3de4ea33aeee877fee701a45fb08a2e0b50fffd629b793
MD5 e2fdf7e0f6c39681e1d2ebdc0dde7b2c
BLAKE2b-256 a331fbd3896a9f261fb834f6338f4d11b60c3422d2656555b04e65d1058d806b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc0cda2188da68033bd8e26f29b0f72db9fc7de3e161fa4ee3356ff17824625d
MD5 0d4a158160ebe3d9320fb143a62f0c12
BLAKE2b-256 8ecc9705c13d3dedd415b1691fc33c94ab1bcd7f18522795a42447d4009d16a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5d80a0a71106024c69ad861a2eda7f9690a0c99ecaa51aca0ae3c493a8f5266d
MD5 79e8e87b86c428831e3ede75204a05f2
BLAKE2b-256 77054037d30fef1b754f7fe7670e4c7e4a9f1e4713c12b85da271e2df160dc52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 242dfd33b3c307609f69e1ddd3a7bc2ada83b37912c382a763d9b02b9210b679
MD5 8ff151ad3c809393d066cfe4a9fe375e
BLAKE2b-256 3442e3aae88877285136b2ddb7f9fb8b176b68a48d4fdc3496bacb3b581e6e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94c35864e622c796aafd3cc9fe923a6b74c16db596a505904a78e680fb4eb9d9
MD5 0f135164091dee5156e82b47b324f0a9
BLAKE2b-256 0eac67574cb6d421bbf0e1a143a80283a2fc270b9b5eb08b0e0a37ce68e69d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a0918cad084664c7295cac77d775c32e73be489522d337f915c7ac487304e78
MD5 6bf6741a45c2efd197f49bdf605e6f3a
BLAKE2b-256 0e53c6db62b0276cc30a6371a623e7b060a0503a93c4cd37603fe75483c477dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 263858df1bb86830742fe2df1aa7255aecf31460a24959aa43f6fb33f4016572
MD5 503be6b8c503b876466bb5c571011f95
BLAKE2b-256 e59245c1a902cbf670aed00be65fa5afc55c03513982a10ab73230d5341ff92f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5058375f0d4b429a639a5800a6624050479d2df0710c17147c2c8ab4dc7c0c35
MD5 2bef02201286e3dcf0cdaa055ed50750
BLAKE2b-256 19fcdc84c19806ddfe9c516c7fea492c1487dd411cce6275b163cd7c554e2f4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ca1cd1a308888721cc06d8d3b8c99784f61a7af8920642c3d4038faa85ed0314
MD5 18d786ed54ce74e15c0f50dd334d8681
BLAKE2b-256 94791a07db27e791a732dd7e94bd2917fab3a9f1dc275686e704b176a66e5a21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 0968a645daa4e62abb6db4a57848c92df9dd16b57cb07209a0cb4faa238518c4
MD5 fc48bbe5b93f6a6f25ad303cb31f67a2
BLAKE2b-256 879063c8ab2edabed5d0369f36ad1699b10b42d6b2ab6e675c539b4fcae1d017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a34beba6320e046c43c1263346b60fef304276ac637b0091c424ef63835abcb4
MD5 c74a72ea73904b15682313aa6f197818
BLAKE2b-256 33c6b89248b6d98aa60a703036bc640586b25f4495c8930985bdfad98da54125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4869cc0a2fc242d2f7ae036dfeb01b18bc96eaad703a9bf894d5958ce2bccbda
MD5 e64833f45944b2f02501330ad3ead6a4
BLAKE2b-256 8f53deecebe4f67cff45f5773c0b06705e724b78df3e0e1213139925a891fb92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04dca2192a8111af4c1fdef77d09e0221d9df6763de80a7e556d0de1dc22bc6c
MD5 9d605112cac88d6448a293a44a60524c
BLAKE2b-256 22c4baef22ce0aad5b8893850b6115750e7a0b88f424f04947d920c891297144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 51798c77564d4abc48bbcbdca77fa371e6f2881765c5b371706ef2ef2c3694d7
MD5 57e38b3d08a3eccd7ea8d46538a29f89
BLAKE2b-256 494184378ce1d416d4b5aa3bf41b22246f514fdcc1390c2ce457c95e3f289178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ceb811f870dd8028b985a9687f3797a07784f35a8b28ded7bcd3ae4002fee1ef
MD5 84a5601ee8f90ab0560128a11abebd98
BLAKE2b-256 d0e370a981049f23140ced4cafbbd506e7bca825e42d8865d9d16b0dba8a3ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.4-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 904aed86348a2df2027409c972e94ea158df263f826b8701ee6e6df329913f38
MD5 58e780283f494b562987cb3b93904915
BLAKE2b-256 2d7997871bd01e77cd94ef84b0565382cfa33a85de747936e8fcbad846350869

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