Skip to main content

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 --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 --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)

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.9.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.9-cp314-cp314t-musllinux_1_2_x86_64.whl (103.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_giac-10.8.9-cp314-cp314t-musllinux_1_2_aarch64.whl (93.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_giac-10.8.9-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (103.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_giac-10.8.9-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (94.5 MB view details)

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

passagemath_giac-10.8.9-cp314-cp314t-macosx_13_0_x86_64.whl (35.5 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_giac-10.8.9-cp314-cp314t-macosx_13_0_arm64.whl (29.1 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_giac-10.8.9-cp314-cp314-musllinux_1_2_x86_64.whl (103.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_giac-10.8.9-cp314-cp314-musllinux_1_2_aarch64.whl (93.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.9-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (103.3 MB view details)

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

passagemath_giac-10.8.9-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (94.5 MB view details)

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

passagemath_giac-10.8.9-cp314-cp314-macosx_13_0_x86_64.whl (35.4 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_giac-10.8.9-cp314-cp314-macosx_13_0_arm64.whl (29.0 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_giac-10.8.9-cp313-cp313-musllinux_1_2_x86_64.whl (103.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_giac-10.8.9-cp313-cp313-musllinux_1_2_aarch64.whl (94.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.9-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (103.4 MB view details)

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

passagemath_giac-10.8.9-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (94.7 MB view details)

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

passagemath_giac-10.8.9-cp313-cp313-macosx_13_0_x86_64.whl (35.4 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_giac-10.8.9-cp313-cp313-macosx_13_0_arm64.whl (29.0 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_giac-10.8.9-cp312-cp312-musllinux_1_2_x86_64.whl (103.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_giac-10.8.9-cp312-cp312-musllinux_1_2_aarch64.whl (93.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (103.2 MB view details)

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

passagemath_giac-10.8.9-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (94.6 MB view details)

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

passagemath_giac-10.8.9-cp312-cp312-macosx_13_0_x86_64.whl (35.4 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_giac-10.8.9-cp312-cp312-macosx_13_0_arm64.whl (29.0 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_giac-10.8.9-cp311-cp311-musllinux_1_2_aarch64.whl (94.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (103.8 MB view details)

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

passagemath_giac-10.8.9-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (95.2 MB view details)

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

passagemath_giac-10.8.9-cp311-cp311-macosx_13_0_x86_64.whl (35.4 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_giac-10.8.9-cp311-cp311-macosx_13_0_arm64.whl (29.0 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: passagemath_giac-10.8.9.tar.gz
  • Upload date:
  • Size: 182.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for passagemath_giac-10.8.9.tar.gz
Algorithm Hash digest
SHA256 715c9ee161285cfea2c0b2e6622959adf472c144a37b8ba9816a6b2c6d0714ad
MD5 974008f77ac6e3fb5ea64c61be1fd94d
BLAKE2b-256 f190da330b702e26b45f26fb05fefca622224c68cea288af74f483b5eb3c95ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d21a7a3435465c3b604918ad394c547c3aef09fbbf8e7314d8134a0537d0e92
MD5 c89e9e615453b6a3fbc482b44bf53a2b
BLAKE2b-256 400047e011f5da037d822e228e6ff9ba7468890891264c3c15d82db70633af43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de103aff8a884f7d549aba4904fb8399fe707b2ae3647d700dac39b654679ffb
MD5 0ec2dcc3cc747a0b4daf78f4630637ef
BLAKE2b-256 db05e20b98295a61bda61a7a140a68bfb8f7c385d76264a9368b917970673675

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70cb086863802f1984617528f7fc1e7253f05c17f24460018c365bd09406c929
MD5 7b8bc69d1a306886753bfc7d02728a33
BLAKE2b-256 387f99da6591b720f012b1c5a18ad7d5c20fb914d19cfb25c0d767ddf2c3480a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3cad8439565e77e6db8535dcece96773d6c3e901769d2113ea886a09da636148
MD5 49cdc3003ef2361f5efba93f86e14554
BLAKE2b-256 b42bc300c221bcae838bc554d78b69197fedad452dd5746f9030475ce211f725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3ca74885519920e60de3a86e51384bc36526860b330f25659738583fec288fff
MD5 572cfde0c39242e34c282845aa906c7f
BLAKE2b-256 3ee3b0b9a2c60fdd03a5aa4f09bf6c23b32bc11072f659bc0d4a05159124df0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f02e241e1cd0af7d3f01c6292eb4e2c2c66f8596f50c5bfcb5bf53b077a19c0c
MD5 629da46a481040ba6a26afc5860e80d7
BLAKE2b-256 0777b6671ee1e06c20fdca81eb39bfee3d3cf891b263000737375f0c65b2075c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c3d2e22a2ea4eddcea847991751a21ff2b0d9ff471de0e8249ba8f5ac343cb4
MD5 a3e65997061931eb6c70e49ba0f21329
BLAKE2b-256 00966219da1f3711d59c14a2090192a08351504333dfb1600e2ca5effa8d86b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 425c6554091556e375e447804a70369ff2615dcba4f9b3317732e4f3576a5789
MD5 bb47bd85a0b581987adaed5ed9d68c0e
BLAKE2b-256 d5436ae0660a402874f68bc9105a8811b553275f21bfed65624dbb1a6d3db475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8183e8b4796efb178c1d7341ad70ed4cef73a91b11d43478f44edbee44b2d9c0
MD5 6acfdb28aa8015fddc73f8d5072009cb
BLAKE2b-256 78d516fdb1ac36ac486287f146c7da3b06dfe6afbd23d77a3b5027995afb3dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7e410937bb90b91abf5282338ebb67df085016b2caae60e27006866903514f30
MD5 e582d2a4fb45bddb155ca0d34d449f61
BLAKE2b-256 723e13cca2bf8f529fae20720e90d23b80dbaa4292b4b1c91fc8291bfda0fe0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 320d50bd5139b4bb0cfacc1164d46a6b7ea6e20be94a18a5696ccce3f191363d
MD5 1f602379be3d710ee19177d60f6c4a2e
BLAKE2b-256 bec0fc4b0d09b6900372e419cd030d95ef78132262195d1323c24546c9780529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f6da5444ef8bdd1d58a721590fce0f89b0110325782dcf90959b2b6808ce9d76
MD5 ea84418d16fa4f53a502b63453f4a68f
BLAKE2b-256 404fd9ebfb5f3fdee4126903889c7cc1a01df1ab690b2c13d1020620b41cdfc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22111e98ba230198713bcc43463cc778bca9e32604e9de54a2584582f9da445a
MD5 7c7f5446bcf1524381d927bfc7e63215
BLAKE2b-256 6163f36150b108d6f156ec573da08d2c6ab82fbf82e6f3f11f709859b8504886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 725f613d6700295ee4ef94409694d291103d2ea3bfd9e2ceb466e03c3de4276a
MD5 4ee47437cf5d60dc445a8e59fbc09a56
BLAKE2b-256 f5ad4f4b93a042052563496c9e0a002c50985432f8644c548d20296fb727de93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcc38001c2ecc27ff4ed550bca272676d8e59b14f14b472069db951e3a1d7245
MD5 d8f6a1bd78754fb57d42e223c5c38ce4
BLAKE2b-256 403be69522522b7d643c421cb787426adfd3f7449e146b109667301c021f97c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f09722231783580a3e5e325847cb24aa60fa99e12f5c97a342315d1981dac01e
MD5 df0d675f6386a39a50a6952b47744577
BLAKE2b-256 b1e577852a44c992b49431f0ab660e70c9c826cde20c02818f6194ef1bf78e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e3c19e357c54e883873a82be4c450eee5b43fdf38d3d99071e00a3d568d2c46c
MD5 77d9b472bf2a07c5989a4cadd8dac433
BLAKE2b-256 1bc6cea23356540b819521fd725a8a059e869b2e44ac2d9536483a8df1b0278e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 2602c8d707f062fb0ac6534230c792d97074677f0060a91a4500d9a0a583903c
MD5 2e046e5d7fde0b95fcfce77f1027c7c3
BLAKE2b-256 ea27bc97a31e565d5bcfd649785d2c2f985092fedb3d91f87f4f7773c953b5ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 974bb6b39c3b3b49c7a5337153aac464edbba6362b659de212926a9d5d56ff66
MD5 ec236d9944da6cb57f4a288d27e683bf
BLAKE2b-256 fa617ea0beb8561e0155d15437a1991c8973740b0f1534ead389ba53ec8f659a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 597fd666b0d430e4a9a87ce56f1e6a372f51dcdb19c053fced0077cc627201e7
MD5 47ec0de974a8ae3578888ea421a23bd5
BLAKE2b-256 86626acf585c4cf89f03ba3c8f1b84ef36986c2bc1cf3d52a17722e4554728e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f439f960d76fa67ae876b6cd579ae66e6304ca9b5504b6b584f5c697325b6116
MD5 d1a25afbfabcf5068dec9dec0482c55c
BLAKE2b-256 981fd7f975460e9bd9393c3ac25a9d810a9963542dffce8edd12ec62e9005bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab1c9fcab9cef4cd9ada58680311130653f4c5a88cdf0113ef303788b079b0e6
MD5 35286980b8d07510e36b0d8f8eac2c0b
BLAKE2b-256 bba331d818869eee4cd7f3963aaa327d7b38c3dc22154fa736dfb5609f1024ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 086c55a53a7ffc646aeab34218e8b5159f2c69ca8afb9a031def823325d9cd5e
MD5 a7b9b6b191774008f84662aef420b0e2
BLAKE2b-256 5e7ba9c9a7ee8344939890960ef8acf2d471b17c07a137e24ba8588d6a82a274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 226c274b80538f4af1e985cfd6ae3f95b93cf608cef6aacd7fe403db8c4ebc41
MD5 9bc9b3b0774e3a5c5f1fcf863fe09eb1
BLAKE2b-256 82713b7d18c81d12a488240141d7a21ea365f7a229c710897d192f77df7a73a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 932f8dbf3cc727fd5440c1cad6581f3c1163783cb693a90811e52a2986b2c973
MD5 fa89ad636d5ec5f4e9d554f6e7e09fb7
BLAKE2b-256 a806b5531dca4bac6554a745974e6cc47800d0c94fc0aa4ef3047da6ec24b477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24d47f2c1cf2a45b637d1437b2e884b831bbba1add9d45e52e95a977b0862ebc
MD5 8f36e2dc8b641f68c39f4684a225558b
BLAKE2b-256 ed022719e00c5aa9d635ca753f4c3c541bd49449d0016c88e9f78e9211343c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d88d0211046a5ad4f260454a11da5705393fe4202810dceaf16d6e5ee84b28ee
MD5 4ffa23d9141af36ca414c0b806e43e95
BLAKE2b-256 306816529805351f01e22870fd73bc5bac094409dcfccd2a4cd9e183e6bbb02a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 51d5fd0837aa9639a58b1ec082cc7584ac5fbc72d804b6d8675a991541dab4f4
MD5 b63850e1095f31af41ad77916f3345c0
BLAKE2b-256 dffb07ae0c8f9226fc9a857a36eab6dad9fd79db2c456b85681effe556910fc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.9-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 67f76b5f88a9b5b57d71292a6fdf809eca3e01b65883d709df8bf900aa5b31a1
MD5 9b942e846ec36c159f0c22480a784475
BLAKE2b-256 c98fc64d8222cbb64e028b7b28e7e6dc9d4ed0793c483a40b145e5281e3d6d17

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

10.8.9 This release

30 files

10.8.8

31 files

10.8.7

31 files

10.8.6

31 files

10.8.5

31 files

10.8.4

31 files

10.8.3

31 files

10.8.2

31 files

10.6.48

37 files

10.5.49

31 files

10.4.68

9 files

10.4.36

1 file

10.4.2

1 file

Supported by

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