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-2025 under the motto “Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, and MATLAB”.

The passagemath fork was created in October 2024 with the following goals:

Full documentation is available online.

passagemath attempts to support all major Linux distributions and recent versions of macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or virtualization.

Complete sets of binary wheels are provided on PyPI for Python versions 3.9.x-3.12.x. Python 3.13.x is also supported, but some third-party packages are still missing wheels, so compilation from source is triggered for those.

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 sage.all__sagemath_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 sage.all__sagemath_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.5.45.tar.gz (183.3 kB view details)

Uploaded Source

Built Distributions

passagemath_giac-10.5.45-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.5.45-cp313-cp313-musllinux_1_2_aarch64.whl (92.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_giac-10.5.45-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (102.1 MB view details)

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

passagemath_giac-10.5.45-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (92.4 MB view details)

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

passagemath_giac-10.5.45-cp313-cp313-macosx_14_0_arm64.whl (27.8 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

passagemath_giac-10.5.45-cp313-cp313-macosx_13_0_x86_64.whl (33.0 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_giac-10.5.45-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.5.45-cp312-cp312-musllinux_1_2_aarch64.whl (92.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_giac-10.5.45-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (102.1 MB view details)

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

passagemath_giac-10.5.45-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (92.3 MB view details)

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

passagemath_giac-10.5.45-cp312-cp312-macosx_14_0_arm64.whl (27.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

passagemath_giac-10.5.45-cp312-cp312-macosx_13_0_x86_64.whl (33.0 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_giac-10.5.45-cp311-cp311-musllinux_1_2_x86_64.whl (102.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_giac-10.5.45-cp311-cp311-musllinux_1_2_aarch64.whl (92.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_giac-10.5.45-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (102.4 MB view details)

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

passagemath_giac-10.5.45-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (92.8 MB view details)

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

passagemath_giac-10.5.45-cp311-cp311-macosx_14_0_arm64.whl (27.8 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

passagemath_giac-10.5.45-cp311-cp311-macosx_13_0_x86_64.whl (33.1 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_giac-10.5.45-cp310-cp310-musllinux_1_2_x86_64.whl (102.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

passagemath_giac-10.5.45-cp310-cp310-musllinux_1_2_aarch64.whl (92.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

passagemath_giac-10.5.45-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (102.0 MB view details)

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

passagemath_giac-10.5.45-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (92.4 MB view details)

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

passagemath_giac-10.5.45-cp310-cp310-macosx_14_0_arm64.whl (27.8 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

passagemath_giac-10.5.45-cp310-cp310-macosx_13_0_x86_64.whl (33.1 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

passagemath_giac-10.5.45-cp39-cp39-musllinux_1_2_x86_64.whl (102.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

passagemath_giac-10.5.45-cp39-cp39-musllinux_1_2_aarch64.whl (92.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

passagemath_giac-10.5.45-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (102.0 MB view details)

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

passagemath_giac-10.5.45-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (92.4 MB view details)

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

passagemath_giac-10.5.45-cp39-cp39-macosx_14_0_arm64.whl (27.8 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

passagemath_giac-10.5.45-cp39-cp39-macosx_13_0_x86_64.whl (33.1 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

File details

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

File metadata

  • Download URL: passagemath_giac-10.5.45.tar.gz
  • Upload date:
  • Size: 183.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for passagemath_giac-10.5.45.tar.gz
Algorithm Hash digest
SHA256 8b07c0648793662a2d05bd6765c1424fcb27499097ac56701407ae5f4915b281
MD5 9dd08ed31b755389060f2ca8e2deb236
BLAKE2b-256 35c0e445c631d1b3d4eaf915e97671748526530f50dfa02a67da0d731919c01d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2b4577a631b6998977e8cc3611f138e4a41ac37a659d3afedd1181f27cfeeaf
MD5 cbd5661805372f28129babbe1fd06da6
BLAKE2b-256 0069ea77011722b1f66bbc61de8a6a3e7cbd2e3c485cc7a10ec5f457a3973260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02812be8f0363eecadaad5e5b22142ce48b04463f9b7756966e4487e83d5fdb6
MD5 3495e65c8b633fde237b5d0b7d73907a
BLAKE2b-256 c9e51d631b4674a465a4916ca04867d747b9912f0d70e9a5d4a3e523a645a6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61da40c6ff5917dbb80cd25ccff21f52d495bdcc1136029cdf824ed9d5d95aab
MD5 c4bc03ac13e4b3b1c2077be941bf350b
BLAKE2b-256 eb05fd1ac20f6c8a97d330b1dc44c064eb7bbe3abd3cbf8aec07b51375091076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08859007b92b73932016f201cb9e1097eb0fcf03b927f9c6fc716f43293f7782
MD5 7d1435bb3a4ae0e829ac1951a6bb6ded
BLAKE2b-256 94e6bd77c1f4afd57e73cf3f525862ebbddec7d4640a0a303cb5fc64ab2853a0

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1c36dd620a070a907fcfcbb4df6a46f5ff951970eb324adf8c14af3f7229a2b2
MD5 cd2deb7cda43fcaacbec221b22a87d98
BLAKE2b-256 ead5155edca73c6994f6043efe7db745f16f5bdcd8d6987be0246f8b455df721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 19d8fa18d2c2f473c17cac499b556f4351f68daf2a8f307e5f6b636fca5fe6a3
MD5 359777d766e77d538c0dfcc0caf241ca
BLAKE2b-256 19183e3ef2ddb07de15482908b21dbe691a42cf03710170d536237f448c42acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e4f4c0d91712dfd62c87a2276def575e7a8dd663fe8dbeaf308ea2609b380b7
MD5 ae94d871cd8147921f458ea8e876cc64
BLAKE2b-256 2b1d8cca69d44f40be0b417523e738de4bd5594b08531eaf41f135eb739c11eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 323c5c747129d8618f8610b9a1d14d4d537e1254c099a0704a5062cad51e35f9
MD5 a72e4082836c9d24bb3277a901ba98b7
BLAKE2b-256 148d7d81816f3c73a6d58d6e0b613b434b5ff769a58a79462ea4a553a692707a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2be035cf0a4b59df0156b9336edc9ad706a0b3dbdd7b301408aae2a30faec0eb
MD5 368c41f3841213883e700c07f75525fa
BLAKE2b-256 6f7fcecf124d0b646f2cda963dd09601488b6ff02d833cd0babb1cf6604c7354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f716bcfb57f02664941b23ceda7f5679df545f6eadae6a4323e29adc2b5abcf8
MD5 8915f140b63d37493a099c2131dfdc4e
BLAKE2b-256 70ed81023eb34dbeb76ca9a443a311d22fe6c1383be157d10891b539830305dd

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4d9e71562cc54e15d8d87c1026c6da4c789d589ab9913378c8a49bd7ae3b7af1
MD5 6c2142946f1fa370f9fa0bca86802a10
BLAKE2b-256 9d03055d36b7f965f5b63f44e2bf7d1639a871dd79b0c4c6574e9e6f09ad6b2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b9af14b5c3e4ffb2b7dbcbf44461a79f6f57226f2e5c444fc787a11b507f52bf
MD5 7811c4458142bb0ef75b6714d1a31a16
BLAKE2b-256 0161d88443ac394cb4178e07120f9d54498825fed29991ddbb50dd20267ca43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7a7110bf811945bc9097fd16251d91b0c27eb7cecf9b961ca069f556f3b06a2
MD5 efff5815788823aed8c3cb4182a186ac
BLAKE2b-256 40f8973e187161183ddddeae528305ba9474ed75ca9e5db2b724570c75b24f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a4cdf1521317bc0871188b1d952cb0a5c6ecbdf0bdd26494fc83fdbdffb283a
MD5 2d75536144075d666c16ecec2258fbdf
BLAKE2b-256 42f8ae908ff89c7adfe9fb4835ce95b3434f3585278b3d888bfb6cefed761079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e102a5f2db85be5f891fb253aa7f22eac6c8b8150f49d9e36319c1b2bc08d040
MD5 aea4204362146b761b157ab0ec460693
BLAKE2b-256 9af5cd28231859d7e9498107948e69211355c9be57c157167fb14d796e618a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7744caf4511ea755e5e25f78de7b77e11a24f787f39e282bcc5b8af6dd2d384c
MD5 9dd5cf0ff76e073dc98a07a6354548a7
BLAKE2b-256 b45436796255a20b8feab9dd9fc06b6e36174c53f3668824004a20cd4d18c4fb

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0b9f237c0ffeda5e5ff339d39a41778d2e1f56f8eefb1a47fd871883df991495
MD5 8da603a6381dbebeb169ef0d1d9b4e29
BLAKE2b-256 8f5648bab033acce2fcc5d3b51b11ed987dff5d42a85d13e62995c02243544f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5069ae1fec30167b8daeb6868a9b824ff37ba1e1bf3e2ef507bff6bb10f07311
MD5 4bb366e7fe613d59b1428d6ad780e5e4
BLAKE2b-256 6f8eec3dd65fb4ef1fd5f51235be486e03544e490c7d6e0ada2a89597645850f

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed3473a87b1bd3f56e5adcdd7e51007b0808761bcd2bff1adc94a2f820bcb145
MD5 9846d729ed3fe338608fa7275366cbc3
BLAKE2b-256 ffea0b792fe4e11ac3c87efd749a1c1c7193b9e2506ce2f050ad3d8bb71f308a

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06376430a09e27e019f3fc1d354d29f9f13e1e08e315ea83d62c2405de53c5df
MD5 e1560b1059a9bc821447d6cb87cc0849
BLAKE2b-256 235226adccceea17a4c3bb08977bf90df634f18588f0502d44f342470c8ed08f

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6b5cd57f35b7d45a7cd35f5e46fe1012c62a16e285190f6bfb3347c1574bcac
MD5 99dddbe8e087912efe9bfe246fd50b43
BLAKE2b-256 f3ec1d0e51fd0ad06a8b1686672d81c2a41f3435cc5b8cf0235e2cca8f49459a

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f56a914ec9cbed80f1e3244fd4c6bbc488ce7b97a56b074a4415754a3fd09f4c
MD5 86161d840090bb997d48e9dbd649b255
BLAKE2b-256 86b6bb8bf39cecc17700221d3917bcde890769b436b1265890ef06712fa1e4e5

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4f585ba5212433428acf9505e873b2737343a1d6439350a2fd89631693cca03d
MD5 dc69f538c10ce4ab0a6ee5c253365ef2
BLAKE2b-256 9ffc185392d42e38c59af8dcf1379c0db48770e845392f4b2b52d49e82796abd

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1bc0c50efaca95115a962fd18b0c08b105b77b33c03eac53f0304a44cf773bc4
MD5 8da282dd151ab611fd6b048a9c0e0c89
BLAKE2b-256 f58c9ff6158187711271b35322860436a6ec35b766dc55cc02c8a8b5703056bd

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4b73ea86642c25a0a6ba474f826efef0cb796bf32530dd3937a6a4cff241cc3
MD5 ba9b62a494d90219d4a966b35161b24e
BLAKE2b-256 2872c56da3bd61d268a7fba2c00983226794c881806ca017aa65d36a800f24f4

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08c9f1b907548425aba47cac7b24dd0bea38f3e6f9968163bcea032bc394c301
MD5 7ac539b4c6f355d92cd3f102297fce92
BLAKE2b-256 1c78329775f591cb022dd96f23f9b106f3e201112b820483e37a0226e17b87e5

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6103ec725488c650cfb68b72e50241cb30ad062fbd72b9e81e556a8ce48aff64
MD5 a7189e7cfe75ed40af4090cdae798644
BLAKE2b-256 14662d8a32ede7b3395a552ed258602aa5e3574779717b52ed559df356703191

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cbe7563bf75145e21cb3f5548e470b27db9456adf0ac3072ea4bfda033ce79ce
MD5 ed7103df03c6b668e41dad0356713130
BLAKE2b-256 2848427c226d6d0bd34ab46f9c96a84c998efdd201d54352c13aea273f670649

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d0b87862af15eefc08a3ce5d283783aad974520d96efc3ba7c2a200cfce93d66
MD5 ef322d0bdd6683cc185ef67051062e91
BLAKE2b-256 195adc05a72c96692ece8eaedbf7448d334b39b115b54d10ca9f2cbf8d95b44a

See more details on using hashes here.

File details

Details for the file passagemath_giac-10.5.45-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_giac-10.5.45-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 11969cd0c47d6e869d438429b38612592be2de0ab1512980e1e26196342239e8
MD5 b9cb351372c655eaee2a5de3e6c0acde
BLAKE2b-256 0e0b48594fd8c27308ede4e93d18a1f2c33da0016f5f4d455420336f56f64ed0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page