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.49.tar.gz (183.3 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.5.49-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.49-cp313-cp313-musllinux_1_2_aarch64.whl (92.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_giac-10.5.49-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (102.2 MB view details)

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

passagemath_giac-10.5.49-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.49-cp313-cp313-macosx_14_0_arm64.whl (27.8 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

passagemath_giac-10.5.49-cp313-cp313-macosx_13_0_x86_64.whl (33.1 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_giac-10.5.49-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.49-cp312-cp312-musllinux_1_2_aarch64.whl (92.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_giac-10.5.49-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (102.2 MB view details)

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

passagemath_giac-10.5.49-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.49-cp312-cp312-macosx_14_0_arm64.whl (27.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

passagemath_giac-10.5.49-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.49-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.49-cp311-cp311-musllinux_1_2_aarch64.whl (92.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_giac-10.5.49-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (102.5 MB view details)

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

passagemath_giac-10.5.49-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.49-cp311-cp311-macosx_14_0_arm64.whl (27.8 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

passagemath_giac-10.5.49-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.49-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.49-cp310-cp310-musllinux_1_2_aarch64.whl (92.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

passagemath_giac-10.5.49-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.49-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.49-cp310-cp310-macosx_14_0_arm64.whl (27.8 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

passagemath_giac-10.5.49-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.49-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.49-cp39-cp39-musllinux_1_2_aarch64.whl (92.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

passagemath_giac-10.5.49-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.49-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.49-cp39-cp39-macosx_14_0_arm64.whl (27.8 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

passagemath_giac-10.5.49-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.49.tar.gz.

File metadata

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

File hashes

Hashes for passagemath_giac-10.5.49.tar.gz
Algorithm Hash digest
SHA256 3964bd089adf50541a94028bdd6a3bda691df3a25d488453ae31a6d86ff4daa7
MD5 d890d0d4eb16b2f90ef9cc01cdde4281
BLAKE2b-256 ed68da694aa60793b3b9fadf57eb95c1343e3d6e8b6468ada174ef8603cd20f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f887b3defd3e831897c63d36ae95d1446b74b2d39b1e66552e45f32ac6632f10
MD5 7351dbdf9e00026be687186e08244eb3
BLAKE2b-256 bcedc5b61c9487a85e31279b3ccbeb40fd71aabb499805729894e017847c809d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c94f01f8f136ca1c7f7457d62cf6af69af1fabfc194189c6c64d347665673de
MD5 c9f9a1a96a153048e0e7d86d64dced02
BLAKE2b-256 b5015422ef3ad3a09debadd7f1e2e864caf9e942c734f020e319663c5d4b8ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 caed27ef1c38884d70e33d4b494c08bd0a1c06d319734def430dc66554429cea
MD5 cb92872e4f5d07560fc0a553aff56fdd
BLAKE2b-256 a31b30fe8bf2e93a86f83364c23981329a45d523c720932722e52eddb14e4f35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3c94c437d17b1d8effad889604a418e76e74803f671898c6398c2b20d0e1bf7d
MD5 7255cc62515e86ea5262788a6b4e38ea
BLAKE2b-256 399743286edadf7fd3f1e8c21849cbbbe01d67454c6b6f3324ddb1029a9886f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0a00e7b19106761cfe76b0b2019aa37eec6b45926e6c6332566262e01b96e53a
MD5 acace57d10556c9fc14ccf3458abed02
BLAKE2b-256 11c1ec7c170a36f98633ebc75ab2367cf218d1c866b2b362d9ad1da770a2a006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 460e3dafeecdef52d9e67e32f4ea80887d1381af20adabe8c0f5f507bc24ce61
MD5 952f9a4cfe1c75d5b5230903cc9e86d9
BLAKE2b-256 415a0e9b5f413bbbd0ffb8786079d485cf28b4057f26ee74e4f120f2c3808a8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d4125d9ae7725224315177e9da00b8ed43dd3277872faa7d2aee479357dd847
MD5 fe59c23f6b35cdb0304e8f7e16812013
BLAKE2b-256 a444664dc16d31dbd1dc4be63e08739f8d3951a8b90e737edcb4ae212bfd58e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f4d74fd436f456f53f05546d29b0d67d82c3db55e4e1f4d621bfe81e46e7ea9
MD5 a9dd4df6ce06c2c8186e223a4de06194
BLAKE2b-256 7bb5b400919fa830bae30adf66a792990973287b07ba6f0fae690d5194521e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32e6c848efe1df0951b0f9ef6a0d740336a97c0ec7a9dc25917007ccbe45cf57
MD5 e6297ea6e03697254d25abfa30e884c1
BLAKE2b-256 c2ec9a7a299580c95669bb9d50cdae7da2e3d678982ced58561da3251476abe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d603522bb682cf290734bfc2537d83c6428ce1dda010595f41a7ae4097b52fb
MD5 e879835a2958e53664d249b694e16ad8
BLAKE2b-256 09940ba73057605b14e7c16d9455e9db0b84c47841eafa2d88c70ab8b484feee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d0fadea457d3238d7df9d1cf3f178b309d747097c9f6a88934be4ca2c3261100
MD5 5449ab2e9a2ac9b1b117dabfb308fe1a
BLAKE2b-256 583dfd6ed793175e4a02a7e1cc7e19bfb8ff4aee7b69174d4d98c181adde07fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0b25eca9b240960130e98af74f3f97b59ceeb07e354cf934cb59c923291f6752
MD5 13bdf692a91dc7a7f94d23150b0fbbbe
BLAKE2b-256 bc3eb0ef2baf2c16aa74c1939a43795a60cd6ef31d4a77232eb167d8eb81570a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5db2dc837e18ca1adae5aad1feded51fb178f1eac869c5ee3c31d8cc3b5fc8ba
MD5 5df6b5b434337ae7d23ad79a44bfa42d
BLAKE2b-256 79662e1c55e08365f05debf75631138b120d5c0017d259fa9443ef1d990be4a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2db1c0957fb7d01af2991f2da4a153c614ca7871550bc60d10a1c40a329ee945
MD5 6d6940b7f6c0250b905c08b8a87ce40b
BLAKE2b-256 78cf5c26db639bd7db92329f2de55c4319528e742a95b1a8888e3f1f1340221f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53f87539d94ec7161b32fff90a6d34c150567769079ac201c547165cc9706df6
MD5 ff25981b252ceb0a9af2583579898343
BLAKE2b-256 5b1850719ca3a07caaac342445774b6713218954774e335b33bbd6f86706c8e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5146b3d96b9636e5d46ac93f102d63918ce98b98ccd97d95af29f09bd0d88c01
MD5 adce16fa8359d9c481cdf3ebf2d61249
BLAKE2b-256 8cae1d650e81b0488ae20980ad661cd11d835870b44b6c3252043ad6c94a8a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ad4a28bea43a9621fa450f712add596ea2dd6aaaeb597e590c3eff19e7a87ff0
MD5 e4b8c541e12f8e68edb8cd5ca9f84bcf
BLAKE2b-256 c241ed07da0b1809b123cb87ea2fe66b66aafe7484f5aaa8616006af2116691d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 026ef2b131e772211afb0e8fb3c5be8e3e21d9ddef5196438291ae9b29a34ffc
MD5 cb0eb4e0366ffae580631bd46db77c4c
BLAKE2b-256 bb66e7c64d863e4f7f31537abaf640dd8772e5d9efe93ad43a17716618a38114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b992f923964c8192af8eecd9f63281f09b78affda395ed23c988a792c7a63de
MD5 36001d7135bec02d67d67b7bf90be71a
BLAKE2b-256 ac073eeb38f4d054c1156dba2cb25fe81202ca8d5a08a8f10b9b3a822c74371e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3d90e50c279997a6aab1faa4c13199c558f918af2dae00aecead6ed03986279
MD5 bc0c1c9b9eb07372c1b7bc74de5f5140
BLAKE2b-256 6304227b4238348c5823027e1fb2f3a92262630fd8d30f0ca2deb8d053a973f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a2c6fe2b537f13215622475aacdc290bd0c878932be57fae579e9b6905c2723
MD5 4c6033ab6558d88d7c158339fff6cb01
BLAKE2b-256 aac088e77f97d591964369954ae0901a541e84307fa588b408a45b62421c672b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f2dff502fe19eb83abc3667fff485bdedb90f21ec610e067c6f5a162a269009
MD5 f0ebe3e32b664842ec3cd4810d5e6e9b
BLAKE2b-256 11b859b5d4df1a4a24bbf4902ffd27082c1ce4c4f82a43fe7e8a692c7f6eb096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2007fa887364b74ee3cdc874ab39a32b79b325e28fbd3aae375f378d42cd6013
MD5 d4258246b1a8ffaf74486677f3305004
BLAKE2b-256 6be511859de0c96563aba02f0d735ee71f15f33b955ff132b7ca5ce7388ef2e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2940693c471c91c636171ccd7f3e3b8c4aef061dbf63c46a8855b505977e33da
MD5 84c4e59947f5e27f452d3e6a6ec5eba7
BLAKE2b-256 3699520d8a80a35edf3fb20ca819468d6f9854e89cf77bb326edf95072e001e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c08fa4d80c99516da2f27299ccb119b1cd7184901b11f0d6811c4429d8a4631
MD5 dffef6b74294645a799804b7ac26ef99
BLAKE2b-256 64a0378ff5f4cb0ac1190981653e918e0af799bdf2d5f286f0ff515eb82e5375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1c2822a02458c1218d71b96af9c5fcaa6bcce652324d703a7c8dda0bf4a7757
MD5 77a6278c540108930f7a7373651f0dfb
BLAKE2b-256 4a50e66ea491b068db4c9892f33829276903fa815b67623f5649ef55e3b68b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67ca2fd824172fe0cdaf1774aa3f70a57c28815b01948e398489ca4778604e81
MD5 fdeec7a3eb6d80c25c7b433d57808410
BLAKE2b-256 a3b25f26f860927c2c7fc4c861f3a0e0929a32be7403386c3183b95e894d06c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ccd22834fc46753b60dafb7aada0ee8c5aa7ad487293d90612976be8ba3d432
MD5 0ae185a9766ece8db459e7698fe5a4cb
BLAKE2b-256 118a88ecb6ecbbbdf83896cdaa5e623e9ea13047d7c616bef447e565cf22da26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ecb07cc525492687da6dba8d0cf71101eab7616903d1339798416c4eb9db4a1e
MD5 9089e4c4c9e1614490d54dafcbc24b4d
BLAKE2b-256 b5708d91d197e569af81efc64bb21fcbb3e035ab0cb87c061094cd7f6ebb13d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.5.49-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f5b614d32cef3d400be44ced6459762038308a6cf09b9f86de73abdd63b7cc75
MD5 0ca88e171b7f3638de8246622638740c
BLAKE2b-256 d123006fd260dcd2ac900f0bbbd768a65afb4efc8412e7c3b3660aca2af85b65

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