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.10.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.10-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.10-cp314-cp314t-musllinux_1_2_aarch64.whl (93.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_giac-10.8.10-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.10-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.10-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.10-cp314-cp314t-macosx_13_0_arm64.whl (29.1 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_giac-10.8.10-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.10-cp314-cp314-musllinux_1_2_aarch64.whl (93.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.10-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.10-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.10-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.10-cp314-cp314-macosx_13_0_arm64.whl (29.0 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_giac-10.8.10-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.10-cp313-cp313-musllinux_1_2_aarch64.whl (94.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.10-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.10-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.10-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.10-cp313-cp313-macosx_13_0_arm64.whl (29.0 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_giac-10.8.10-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.10-cp312-cp312-musllinux_1_2_aarch64.whl (93.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (103.3 MB view details)

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

passagemath_giac-10.8.10-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.10-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.10-cp312-cp312-macosx_13_0_arm64.whl (29.0 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.10-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.10-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.10-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.10-cp311-cp311-macosx_13_0_arm64.whl (29.1 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: passagemath_giac-10.8.10.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.10.tar.gz
Algorithm Hash digest
SHA256 abaca7dd684bd5f14676fd8a1adc198eb279418f57d8d354d9aee7ae42ca2653
MD5 1fabf9b5a4b2f1f8bac525850165b507
BLAKE2b-256 86ecb649a074f9966edfa7546b405e7c3033a1ad0af75e99d44be0791a2c1b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31c831134361ae42a089ac50d88d4d07d0142f5d50c7ae5af9b5e8865809bf0b
MD5 022e0a417acead9dfd09351930dd353e
BLAKE2b-256 c940c7f0956db2d528185c8ffb814cf33434d513738b1925a076539f7cc4152d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4d5d5a96b2897fe6133169af6f07627a9413192cbc61cbc9b5cd092e1c306be
MD5 a4aa4225f4657990a242f4ade8574408
BLAKE2b-256 104100574f2dc305acaa061d4c0fa568b65b43e176bfdf1ca77d6886e0873275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40dce3af467932bef9fa5a727607b865965d13b1635ef49b0b11137c99d0e02c
MD5 aa7ef6a7c733de35bd2705459bd88183
BLAKE2b-256 b446c132c132371e7d4e5760c2cab6d20ffd7828cae4bb3f9589c2529ddae2c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0085ee2e27ea349a1bada6815b89aedbfca6ed267201f2a41775fa3f3de8cc9
MD5 2bca6478b8c565a49e56c62cf1cbc849
BLAKE2b-256 734889182944f1e238c22e77e3c369fb8be81fba5893704756188561121fa4ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3dbf770e0c88761e4bc14afc6b859edb927c002adc8d2dbaecb65cc6a0c8fd54
MD5 4d7a275b06e2439d80c6fdf20020d1da
BLAKE2b-256 94454314ccbba6464c8f8c688a9466116b09158b36dbda31a2b67175b16d947c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 28eb29eacb60d3d71f42d3281e2c3d859c4151efa054627c4347abd12b9292de
MD5 f82b887ee5bab952f5e5116b24976232
BLAKE2b-256 b4e0ecc6fe1b32fea5a5b20f17c95f92fcfe0f35e5fc34277e11feaff26e82bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fafd8dce512520e526b1cfbf7aeab16ed2e25981f6ec4063ea92511b108496b
MD5 9cbac4d567d8da00321bdee67e08429a
BLAKE2b-256 df15ca4ef1df41e211f6ba05a02b58899a86eabd13de6c5d1bacaa4bf17eec85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0027548af9473a0b29dbf8129156f8e722dbbacf2663d62d4099214ddae5f88b
MD5 923b71910a2543303568d8cc952ca6e1
BLAKE2b-256 f3faf3916a7f09c8709e2c0667d57cbf3a6ca2c616124fee53c71f9006040767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ac0902ae6ee3401eda7eef86f9cce9a988fa3a1e3076b416ce6f10992eb1350
MD5 b1d1021a981aada43af0106776210acf
BLAKE2b-256 56cd6ce8d79ca94c976757889d87b07ab7b9a87c8574ab2720497844962253e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6b35af8fb6102deb238552e5c7cd5f498fb62a8b01dec2f35790608200506bf
MD5 9e2b8dae55ee567ecbf1770d309c6d61
BLAKE2b-256 9fce2bd0769e06a2a9041f9647104ec7948aa39c6394c2f5ae118844bc20c029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1a260b6139d6b68ba2eb266c314cb4c5dc48c6ca6f99397a79bdca00d4101bb1
MD5 d8cf2764612556615c0d9b5d89d1f736
BLAKE2b-256 f8f68492ccda5ce8a7a19e2dda09591d4411307535a035223f6cd2b218aa6153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4a0543b514ff31554b08ff76e6ca5ed84131a365e5cc5e2afcc1c1aac9259a7e
MD5 3e34e4c7c47e572c6bac62ae763f48e7
BLAKE2b-256 0de28c5329a84d15e8d8d5a3d83f8eade70748b228cb049d6aa231ed21b21351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 365dd18aad1d8d4df4d20238f6ed73755f7be5bf51120b5ca5faf9142c9c5657
MD5 a7d51dde120e521dd94de6f83315b1c5
BLAKE2b-256 685185d22f66907117944fc5a2a8a50674c8c9ce1fe21c3dc57bf966aa0c6e38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 393c112730568119928ea0983acbc42a6bf73860a31e4c36df0652c94a595b73
MD5 3d65ee10751e78ba579e64efb26bd00b
BLAKE2b-256 ae620a2164453b58e79467ca3d7d158e343c151f9eb0d1f1bdb4da6be1842da3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4abd641e552d8be61bb753f29932d910e5fe08d913bbe6d28bfd3e901c78062b
MD5 98c3aac0784a4c905958fbfa419d59a7
BLAKE2b-256 b8089a702cff7c5182859325e53cefd6dbc7aeea6010129afd93702cd580acf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef504bc8f1d235d394d39d1be4db33dd972c77da4e40ba97545a6373cbd16795
MD5 769b6012239b0ddfa72830c0d1827660
BLAKE2b-256 1850367b8e7e7cfe7a74d89c380001ff94a19a24e0216d86eb8d7568e686f16e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 89044cbc1ea96ddcb3485141cf73255d9f5d3b9adc2216f044ec19f4d9f7d775
MD5 def974d47bda325d93e2fb2574fdd26b
BLAKE2b-256 7de7d9691a056369165fe77c5a7ac2fe44e3b38c3d25db046e8163bcad0dfd4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 deeed8f6fc883015a6918c80a35feb3a2efe57cdbb62734fa519fdd5f2caa73c
MD5 1c102ee746fc8075bee5fca5d009a2be
BLAKE2b-256 f02428c31faf4ba365586623d6954da114002c79dd1053328bb9bd607e9f3093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e45b8a7b9061b44c640dca6c84b272800b56231d66005ec3bf8e5118f80da00
MD5 6fda20396b993580400be4dd3310315b
BLAKE2b-256 5a85d897cd636093a4b08896981b0649880f6a5414ee5af7b278e8465ba9cff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2e56479c585341293ee3385ad10da4c03a63af08057bf650b1b87d577b8ccc6
MD5 5a612a88a566b363f6ee951ad1336f68
BLAKE2b-256 ca1ccc8adc2d772f80ac55d9dd0bf09b03146e765d9da76b458987f93f68a5cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d3f4a6c85c9f0a666a228b9125b6ca3e361523cdf70b7045f0f17b6ad355e9f
MD5 baab140140e3e5acbfae38617c03d343
BLAKE2b-256 d4a3627fcd5ca0f0b36ec3052d87c2166355ab39e08d6ce741cdc8176da8efbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5fd5037b0b337802d55c1607236c1ec5814b9ff9f732838dc954b65976d4391
MD5 ccf4d88de394e44bffcba70968603f9d
BLAKE2b-256 250bc63f0833c88c216b0cb725403680281cd4e4ee135be81f06ef7bdbc47bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 79a400a9c5f89bce6408d486ee1398f1983934ae308245a9adede5ae4fb42362
MD5 333ca376267b14842b490e55fe615390
BLAKE2b-256 364f2a796a9e38f6108c71c561732466a2a73dd0dc5c1a5fc5cc6dc57ac5d1a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ce3d870bd5f04738b790906e8f0b76f18c8c4723269a2662e24015a7db947fe5
MD5 68ee20eccbb015517c1ae356ca30091e
BLAKE2b-256 10ed514b07e50b96bc8271e3b8e3d3c4824abf19526e901d30d4d4ab7a7a47d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d70cc74cbd7180dc9cbce31b517447e367eb1de8f81d2e2b66f8022c0f42d6b
MD5 7bfc6e474f8e75678e486845c87d471d
BLAKE2b-256 984d34d0063d3d6f33ee64aaf6249752834c316a08127dc0078c50cac21a65ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d10463fbca8c765736d4878060aad716b0724a25dc4e44b48390667df0b958bb
MD5 d63b0cc13b906ef1067fd826e231b114
BLAKE2b-256 237d674b41bd2ba645bd710b83ee0f8afd71133f5780d54a269df32bb79c071c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d19fcd380bdc6cd2125cb65948a9e2baebd29543c6205279949cccbefcf1c88a
MD5 5ffdf3b85333abcb8d78bf307205cfde
BLAKE2b-256 351b0857ac7685d768a8a83164106fd3ae3377212c8e73d6062bdc226aaf606e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e8c23ed881efda78286c51e0416264b20defd7e370732f46618fafe6be9f2fee
MD5 3d307e69d6a302937e77c62aec792098
BLAKE2b-256 c1b0049a5a74e0b3f28f82b6b2041312bfe4bc9b40bbb5d4583f82d38f8986c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.10-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e925926432fc1e01a5ed5835857473545f6195e8fffe72644a46df44e0346931
MD5 e8408def73914a461d26f94d7447d3c0
BLAKE2b-256 37f37f7309d9c7f844004959ec961eba0b392e4f8c0c51490e604e46bc5a664b

See more details on using hashes here.

Release history Release notifications | RSS feed

10.8.11

29 files

This release

10.8.10 This release

30 files

10.8.9

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.2

31 files

10.6.48

37 files

10.5.49

31 files

10.4.68

9 files

10.4.2

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page