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.1.tar.gz (184.2 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.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl (92.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_giac-10.8.1-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.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (92.4 MB view details)

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

passagemath_giac-10.8.1-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.1-cp314-cp314t-macosx_13_0_arm64.whl (31.5 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.1-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.1-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.1-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.1-cp314-cp314-macosx_13_0_arm64.whl (31.4 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.1-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.1-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.1-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.1-cp313-cp313-macosx_13_0_arm64.whl (31.4 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_giac-10.8.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (92.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.1-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.1-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.1-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.1-cp312-cp312-macosx_13_0_arm64.whl (31.4 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: passagemath_giac-10.8.1.tar.gz
  • Upload date:
  • Size: 184.2 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.8.1.tar.gz
Algorithm Hash digest
SHA256 7244de0bc0454228e498b9dd3f6ba11b9b54cbaeecd3980681cb7e19f2bd1a89
MD5 af01a5d493115673e49dafb379e59ca4
BLAKE2b-256 dd6ed8a60d012269dd85978ebbf115a2e8525229cdd001605305188a7e17fd23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30a0485a6b7c467c0a145f07055ac3485869a0ceb0f454ec63915647f70b83cf
MD5 f274f1b9e05da23927d3d8789f2f7afd
BLAKE2b-256 02038b4d189d34bde537410948fb7acdbbb7c62c164a7c710ca71432307c65cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 444069e4a5b6ff67e52d74cc346e76a5219d277d3cf8c029e730aaf5a8972b93
MD5 9876a706a44d4dda1b51d4f53b4698bf
BLAKE2b-256 068386bb4a2bb603cbe7219332bc638733ad80afe6731f83ff068692da60ab92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0473122a8290092ee83d1b5a465f2bae44e14ff1ab99db626bb4bdf14d30984a
MD5 e36a71c520008a4c287062a280bfe6d5
BLAKE2b-256 1b73710cd5db3aa14bb1115939b7025c765f1e376558a40b1cee4f3023cf5769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 951409f562cf7a9cd61b9e7d7c1fdec9c35148cddc89f38f9ca04fab5453cbc8
MD5 ffce9cd895d1174ecc0321b39d97e79f
BLAKE2b-256 a048cf5e1e59ede9597c31b91d51c5cc4b679a8909db97c9786e99d8caad415c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8f4ed3d95d57af635d950954909bea08fb1f6610ea0fe92234817f1d3bcc6bff
MD5 9d84e095fbf06d32306d22f65b95c223
BLAKE2b-256 6bf7d96dfbd095ee10f40011b7c024405227819f72b1ef8c3642725657d49667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 dc974001dcf45db9a9d8242e35f4a7720304d0c0d080e097781aa8da9cb02668
MD5 1b39f9a4654f439db70d9d21bab86fac
BLAKE2b-256 79bc3ec3bea460f397b0ebdb0bf2ccfc4f7c9f49ae4e23e8f47fc13b00ff4c8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ceb4392adc6dc35761fb426eb28ffeada6a1b1cbf8045479df7481fa42f214f
MD5 5e1f3a1deb16b7f1adac6398b5de5f97
BLAKE2b-256 3316507042b9ec57167da36312735437fc8a3d569cb527f084bafed19a44ac56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa374c448002b18156cd5c89635b7553d491dfc6404756e82b94bf7890f7b4dd
MD5 dce1ae63c99e26548a99ec916558ecea
BLAKE2b-256 b05be474b04d5e86690e79932d74b31194268e7d9590e93c2ad0d4ff037ca77a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2951050d575d221b0c05343da163fe3fb7edd6129e8e98409024197846016e83
MD5 f9cef547d451bdeb339238801ceb0832
BLAKE2b-256 c4385e0ea689f92840ff9db7af9e121ed0dcda0e78ea61b01f603306f5aba7d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50aaf471ea8f5fcbe5b440592ccd1a725ab2fc7f5b7ec231192312fcc69a272c
MD5 1ceb93abeec84884377f34786cac1d6b
BLAKE2b-256 8db1204685ccfa1cc09ba2c03e7911806bba1ffd9f4852a30def2debbb604a7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 22d836354773c19f07e3fd3c399540efcc56654d5a9beba675949c93e7b00656
MD5 0e60058aeb8d0a37386b8e32823fdf39
BLAKE2b-256 f7294dadd4fb38af4156ad9d3cf7ae0b267e7a3c7b5240b6c6b306567bf91617

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 42b0292f8a7c5ed815bd8f0a96458f65fbb961f8122fa073598913fc607e58ef
MD5 82ad189ba2d49e3c4d49683c3a44b969
BLAKE2b-256 a4758767c509fdeb1094b87051a4659e27224b824b766ed972d12e207c187501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0f160d4e624b4309fc56da69d0d5abd179b4a5746bf0287403cc0374b31d864
MD5 25ad3e149aff1c51b194d1133ed61dfe
BLAKE2b-256 b70bc334f3dc2d95e13b3678225cf931b38895d604afa9aa0cf4cda16d558d91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa2865bf39ca5a748f454af8ad97a8e19b221cf38d57ee6ab3cec115f55ce41d
MD5 3a595e2c841cc4b39838ee25251680b3
BLAKE2b-256 5312a72b19ae87ec4bef57f4da6df2add93e17be9fb6d488cb23f78a9d292152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b5a92dbad7ba18cac4bdaa5b9e63acdeb43e2be2c621b590008c4cca3516b4d
MD5 3cbf24df8e380c5ee83ee57f1c3d0d86
BLAKE2b-256 fad19b8060de64096f5f24cea7c223fa3f8209640f33afa9cd292db8b319e80d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c88fc212c3d71a4c750c423dbcad164b92cbed892afbf30b3781fba276d91a3a
MD5 31ac2d3563844898f539abe15ac47f73
BLAKE2b-256 19d4b46925c4cec788e4b5edb648b3c56999161bd334ffb3eb29cf21626df7bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e28ea7b735e78d20d9bd5ab9ed005fb909d2f3625e4c663330975d5ee7de3b41
MD5 1ef1cd11b341600a8dec45aa76d0395e
BLAKE2b-256 56fbc0b00f249a576a57b19b00e3c51a362e6ac5a17bd8c8d6abacafe95f3cee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9abaf5c6a8c9bdddd30fa551e19efae6065573be5721c9271a0f58fb38651c74
MD5 9bf4bac78ed7cccd1d3ac3bb1867490c
BLAKE2b-256 22a365d070fafe4c80a2643fd89d8c4775b3cd52646c4d8a31cd5ddb0eae5c6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4488cf472a8af93a5a7b42b875a2b79355ad493ef1090ca626ecbe1ac253efd3
MD5 37dc15e820b79c9e2eb240f4f3068ee2
BLAKE2b-256 614a78e5b1874a8ea4e2398cf3759a406b892809d97403586a6ebe16a237a6fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbe9756f64a9905b58543110100660c2501504a68343b5284892e789e7d58cea
MD5 91b9d0f0bb3d4b2dc5661ccaaf1bc83a
BLAKE2b-256 0e8049073f5b5dcc3db398e13a1a8af1e405bc518cf0fa7de95b0c8e55a5f7f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59f603892275b820cfd185f89fbab8c72d1a72813573889146cdcb922f08373c
MD5 1816196a10cf0f2a8513eb1e34bdf5df
BLAKE2b-256 cc56978c267537f9f4921359ccad81d08a513b8feeb5a892d36af7e64420c6be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 991aebf9556acb8428dd67ed51799b12dd55d3c941198e5c7b85f805ad7a38ad
MD5 5a89e5b149e143312a12c8ffb64d5e07
BLAKE2b-256 37bb30ece910a4d3d35e029dec7b3942ded134b8ec25391071bf644c169933c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a29e909ccc161c4f9236ec690ab604764cc06a87573a213d9481db9c3ab8e2e7
MD5 d219ef246c248371b4b60bbce049248a
BLAKE2b-256 39ef44be4b013b149645e1f8ab901119c0d96d0250e3187696f29054aef69029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 eb5bc20b6c573e7e16ed8fe4e21c19d5b788c1370fda144fa4c07a97c35c82e2
MD5 4fc9d40e94dcb303c079113ebf11f38d
BLAKE2b-256 d2eb579f71c79bbb537545e2cd2d1f982864fa4390c01e94a5c800bec85f66d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95e06d413a377a47913d199ccb26b5c69e7360a49afa4139c8c975147be0099f
MD5 6bbbe5f4ee4c77c2867de073caeb886a
BLAKE2b-256 d75fe316197e870c10592175901f687bff044484b6d4f777c61d0362164c4419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2502648d333f2bcab360fddef8acdcff9d87e573b7d92e31eebf4f12d4b7c45f
MD5 3a538252a34179441a4d51b65df821a2
BLAKE2b-256 14948e65a45cb1855a33b8cf83b372406ae0d8ed73ac5870bc9f5520dfc9ade9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 174232ed4764b41b2581ebfec7458b97a0d63bfef88248a3be46fb8b6b15d853
MD5 406ad54ffaf3c68f679a0b3d01015259
BLAKE2b-256 837641f206814c66443ecd66ed77a3f60524f47697c0aa5b9958425506457a29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57ce14deafbae643e829ac2bcf8b0ed36974e9fb470a709d3d9429e7390d3489
MD5 5c627c34fcebeb4547b4c9c20de4e711
BLAKE2b-256 afd4bc11cf31fde8bbd2daf07bc63fedc6870da449259c27479e0bd1c44be3aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1a6e02b2cc4530ef9dc311ae683e8966d385b791eaa0cc9229b476794a7c4f62
MD5 e883843b4c6e1d9ae4a3e146730029fe
BLAKE2b-256 a48dc8dfcd8f95b55c6623814117eddffdf3831de72db228c104513640eac3c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.1-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 bec9f81c1d64eb111a9b28356a338c024706f6de83201b6aa10d1d4645cbb4ee
MD5 5c4c82c98057643c8d82abbc116ad89c
BLAKE2b-256 b46c46ed2043f7e8d8bf38d58d2b18c25c98f91f9137e5fc2bd500785bd8eeb4

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