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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_giac-10.8.5rc5-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.5rc5-cp314-cp314-musllinux_1_2_aarch64.whl (92.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.5rc5-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.5rc5-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.5rc5-cp314-cp314-macosx_13_0_arm64.whl (31.8 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_giac-10.8.5rc5-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.5rc5-cp313-cp313-musllinux_1_2_aarch64.whl (92.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.5rc5-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.5rc5-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.5rc5-cp313-cp313-macosx_13_0_arm64.whl (31.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_giac-10.8.5rc5-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.5rc5-cp312-cp312-musllinux_1_2_aarch64.whl (92.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.5rc5-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.5rc5-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.5rc5-cp312-cp312-macosx_13_0_arm64.whl (31.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_giac-10.8.5rc5-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.5rc5-cp311-cp311-musllinux_1_2_aarch64.whl (93.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.5rc5-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.5rc5-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.5rc5-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.5rc5.tar.gz.

File metadata

  • Download URL: passagemath_giac-10.8.5rc5.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.5rc5.tar.gz
Algorithm Hash digest
SHA256 2363974bc59b55f83d51559ad041f60c4b3fe04e0fee39bdcd8a48111210a1fb
MD5 c613726ee011ff30251f7950efe68e1d
BLAKE2b-256 81ab230ca752831abf0e729cf7d415cbd51bc3819bd82a6098ff4ce3fddf2f1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 414603fd6a4b9e0ce820d998050562461db572c42af15b342765a83ca64c4e43
MD5 c9025def3304fbb0bef972ef4f0055c0
BLAKE2b-256 fa8461abab683a55307be40a0c9eab027e9b6e30187b1e579c8b15d0b7a8d95b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53d5f0ec1db9df28926b596b477c914f311aa22d7f6e901230f570dc24a30153
MD5 6df8c62bf3a6f234661645a8caaf0ba0
BLAKE2b-256 45b70a2eab1f1ee408c42df14d4165bd36099e447ed745077103bd1d7e931c6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2259145b4adc59af678feb8d889dc272d1648134b69f3472950e8bc68f4caa0e
MD5 7ca9f13569d89f7e276c105d188f7504
BLAKE2b-256 27272aadad5d2a3956b69ac18ca8dc274c5f1792a7a3e7e96414ff0479ba274e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee508dcf972234245bf4f5297f40bc6343d17952f9d18c4e29fd79562c395614
MD5 f4a48bb4d2d89c37559d5b49500c394a
BLAKE2b-256 6535222766050e17c657bd169e34df2937ba0924f89177276b1c4b38f8224757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 dd79c4fd6050d121792ee0615e3373d695d01c6bb31a1c537166678a2c64b827
MD5 602abeee86d947538ac95f96d31cbbcf
BLAKE2b-256 67c34373fc0da8a87ed4227a1a2d40c5b3e49831f7f3e9748d1bea029e2299c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 773c73373986bec96b8d41215d3dec62a3fd2bbd105ec5d8a11ab82018c59ae5
MD5 b52c0bdee123f3e09a11503ba335c889
BLAKE2b-256 031999bff81642ead94b45d43b2c5616111aa37888b7026986897ffdabf0dfb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e9172917caa150fff1c9cd41e5e406e9ecd6f84c5fc3ff362aa46b21ea5c45c
MD5 2f4dfe0ce241166de79946b2b5bc7a3a
BLAKE2b-256 70b03ed70a75b8e017cb144ebb99a93babdf9fa9c99b1b4426900d3a1f6166a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1360140b88e1dee0356bbfe0b0853de383dd13f74d767a9325111a6266595cd3
MD5 cdb986299a84eddb2a4652c864270fc8
BLAKE2b-256 7427f34426fa26256194a95c1d233b647e2350bd62ecaf12b8f9476d5e938fa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16294b5348e44085831a292ae08e46c2e305b0f6dd194017ea4592933f8d12c6
MD5 beff080f9fcce11e4a06f2877427567e
BLAKE2b-256 154261d2b0ac977e815abee2f499ccaf1754051b409f7ce39152619331f9d662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 073fc65262e79a571c9c4effdd6d7824b0d975a10f72645d55d750a50960cc76
MD5 5234d8bc156fe96f06351980153418aa
BLAKE2b-256 828f296ebb094a0a65e573c2fa2f73918f3c667c3587de5119e9ee42d7251544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 464d4045d53a02e18ae107c92d8bde3df29599c775029ac7f8d02f1bc1e3cdb3
MD5 602a84fc2d160681458fc5432a418a8f
BLAKE2b-256 f129064249e1da06d6fabab7016907f9ce6eb5c9459e2206065b6a351ba3e3c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14a394fe753da0afeb39c98114e62f38c416fe34a403ed687adf6a1ccecd9d86
MD5 f7361623003337af4fc32a5af50c2aa4
BLAKE2b-256 90edc77279f8ee054cbad14f52b1dd800307558e2a14dbc2b3739dba11b619a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51626dbedfb4f920c5209359d91631e77ee5919779c4772a79f6ed7e19c5cc48
MD5 026bca654b46fece371b394c76c1c900
BLAKE2b-256 df964757b42b0a7ef9a0f387ab6d02eaddbffe9e6f1d566b2411e84a9954a434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f42cf00716e245f20a03ed3805b1a8b94916cdc057e5739372dce7069c9d708
MD5 547fe5d32d64ff3a189e66f66c0155ea
BLAKE2b-256 2e7427f4e442c962dfa8ec652d3e0ebd25f7822d4658a42f9c28b159986c9e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 216072e5cfea94a78936ca7a58f51cd5f763d7a525927620bc95a5411bd74f87
MD5 c1f4b41f3d769cd6afbd165fa63e6eaf
BLAKE2b-256 9e071aa37f61692eb312d3aa8d3640202baf39679d4103f64e92d844fbc2b311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a658e82c3d4961fc18fa88b51ece29ca72d11b5ccd36c3f9e9070e2c8cf1c4f
MD5 263170487d3df7b639a33763068f51a0
BLAKE2b-256 64cb83de635d3b48a6acae0906476c2e4ae9901689a9c745a7c9f8f4f69a879a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64fa0eb02674150df2bd3a796f162226a8e5b17463d5d4da141fc898b1ec34ac
MD5 74ba4b008ed2e2e1d83d7bf986b0eb95
BLAKE2b-256 ef86ca738f33f59a274220d5f6990ad59ec430e00c27b9b549f8219d7460c325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c174c861b1cae9ab0912b5cbad2db3163f2aed2543b19043126ab24464bd5f3
MD5 ad77c30822491d3c25593a7eb7dd272c
BLAKE2b-256 c42ee3715b3e70e2b41aa8d1040d4916df731374791c092ad698cbb5e04e19da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 570ddfab9f8b1c5c93f7773744c22154170aadd936e2ae088e6be7f28e481cba
MD5 2333aaaee63d9d49e7b5c401e803ec3b
BLAKE2b-256 3ddf4a5cf1e7290da0a8dd30409a48330bcb52fb273120145eddad6f7e250b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4056fe45c96098c5476a9c81df4b21b717906a3ae6d6f6e255d946d8920e4d4c
MD5 b12650c95adefc17b8ba03d7532718f4
BLAKE2b-256 ad9981b283ba90fac32918ea6e704dbd62355c3c2ebef9ee512c35e5994668b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 942fc4eda25fd628633be264b400b6d946ec27c664d24cb6873101779ba4d989
MD5 f5314f8a985a32e0e446847be8536649
BLAKE2b-256 9612a8bb991c1e328c2e3b55c756519d76cc532e501f1d23ae6de64d57ff3d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0238ab55df6896759792b280d011e8aa200b2c42e57a28dbfb8c9594b1bea8d1
MD5 b696abdb6a492de1a2b59648612e86af
BLAKE2b-256 cab9ab656ec540d5f3707231363017d3282f138b2d64200e4ff26167972b851e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74d571a26c29c4eaa4e91c6b48b8d670b904691b8ae3cb0bf5564027fdb02883
MD5 10ea305e9d59afd4e4557de165bdccbd
BLAKE2b-256 498453cc874a93450ec47c3d7ab3f498a11ed99100f537eab1d6afa914ca2035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e207c5bc326cba57294765cdcb472364652fcbd18f582c587ca1a646bd0bd00
MD5 8c895512af1b274e63b2a43fc02ef7b6
BLAKE2b-256 55e4eb5ae5967d28ec1e76436e4d1e9548889aa806d9ab8baeabe4efb64feb14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc5-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ff6218781698fb9216f3ca49e8cb378ad2fd526a57da3be9214d8f68d5c43949
MD5 85a996ef497ee1a63262a136abc25710
BLAKE2b-256 406d60fa6481bb138351343532e144b6d05559954d93f89ba37e577e308e4220

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