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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_giac-10.8.3-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.3-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (92.5 MB view details)

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

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: passagemath_giac-10.8.3.tar.gz
  • Upload date:
  • Size: 182.6 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.3.tar.gz
Algorithm Hash digest
SHA256 7b7d561302e7aab3fe6360903e2297253c7f46105291e0daed2571cf31414362
MD5 c8ea52b385050f325ec774b7cc46068f
BLAKE2b-256 a984db3c7f9c59bd0cb70ba58179fb95f030895a4e7e6cb40cdc057cae05439f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5390df37e93e5477e17a5395a2c401a4e234d1c42819635ac169de75f1211f4d
MD5 c07e55f1a55a912a90baa942a213cc8f
BLAKE2b-256 2158c776c8fb4488b78e145c4e404a8a100f652206040db43f025daa52374555

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6f127a92a72f377cfa017f39ba1a6be470d91782b9907a05d238b4ec80412c0
MD5 97fdd43917b629e2f491435456d7e5a5
BLAKE2b-256 b9cbd9365a06e3f34b409f16e5faab2efe74a5587d718851e041b35d24c224f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e211ca145bde256fec94ec6fd910a20ac2c5edb1136fb26358cef12c7cbde5f3
MD5 574b8999a1188456308809b9b5502837
BLAKE2b-256 ff579ab16d7fc3f84c7208bdfcdfd084adceefc4e9f5311b16d53595ab4ce40e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 333ac429476dd0db20a259b286bf820eabddad949ac4798a7bd5a9b9ca15f34e
MD5 b410e4701cd1c784ea5856521444007f
BLAKE2b-256 94acda251c4329560a66556ec3bcf7712d1b63355b603aeb209de98dbdcccb11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f39133583bddabac70ab954b88436eb46e2f7628e7c00b8c377b4954eb3cff25
MD5 6e3b3d6c5daa783c19fdc80e5b5322ea
BLAKE2b-256 7c92e6fd10ceda076c5110934d1bb29d76c41a21d9c807fc06ede87c7a390b07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 3dcde33470f72ab053a1dad3d8d1480c9903cdb5d360292060ec3716c0badfdc
MD5 3907a8d3cdbc7c4ff7f068b2f1af2e1c
BLAKE2b-256 058356fef689e786fa2a952b1b4fe7050d7baa1a9699c57bd3e88f3d41e7095a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 296616b79074357f8c993b6496effd6ab291946443dde528a66a8bacfb3d6fb4
MD5 8acd111f00e5683acfb2e02f80841cbc
BLAKE2b-256 a5da093f51033d560543009ec7dec815591021aa49f531a719a9b1f5d98d5ce1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bdbb1d07132da6b3dfe9e84b4d5d6d658378f1bcd9a703e47fc90b48e24f534
MD5 d005757d87761ba095eb98d5353dbea0
BLAKE2b-256 4609a8465e4f19a75c1b37bfadd58e2de689a4df618fb24ba2c95de09a10139e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44879753a713acc3b59072eab058e0f60518bfcd592679e13752ad2c311cf53f
MD5 a1113d1bf0e0a612df657bd8f83b8391
BLAKE2b-256 9c8e07ac0aac11c3887a8679048986377df022be8947365e05661fde4a9fdcb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f56e34b641052894e79bccefe8f5d2f07a3694e9a2ec64db62ed49efae5f93f
MD5 7351c7e8b2473d3be34f2baf021d4a90
BLAKE2b-256 1b88fec244338b8b10af238d300c5db3cb58990d7941dfbfee8034d1d02b1243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 fa06fad77ab600121b82b7bba96b034c97bf4fdfeaebc4c9323f392cc8c25c22
MD5 175c8f217adf0fd6074136a466bd64eb
BLAKE2b-256 6beb0d62366de91543a495d8fdf67a873fee73e2aad6480e060cfa74a615ecad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 00c7253a098a570554464a4b5eafeae3757a55998de03f919a665748046afd15
MD5 5b7362a421f2f04037c100f0227d8138
BLAKE2b-256 534b485525f2ad171c6095e974e3ed69eff77d722b6b615dad9ea3f6e3e40585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b27ae75a6650ffa08f230159af08efe724d86cba7cf988fc2a1e747a210d3fc
MD5 9f53218e429f8dd907df1f7e4b6faa99
BLAKE2b-256 6a460223fcafd8764c20e885e109fac0cbf9377de214959fb54b3c3dabbf2292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e43c076027228b311395e712cb8dbde60757eaba460a867d5f58ceec730278c
MD5 fdfc893885826dab23a24dabff3990ad
BLAKE2b-256 a307c68a678fee088bfe135df3eeab390c39d32c876866fe4588883ba1272618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b19ba51b6deaf54f248ab0ecfd607951bf3b3258b0264d731cd3871133eb073
MD5 4cb3223b2c6ba63b5d84dc9c30f3d703
BLAKE2b-256 cb3b6c1460592f26a339c845f067927e81a955626bbc57d79201d5d31bd19857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a24251afec6c1a1397e48a65db616c23fd25efb329a41c39eea5bb68375999a7
MD5 c4bcb91e639a132bf3d52f6679beaf86
BLAKE2b-256 a4ee14052a0289746e01bb132d2068fb4358ecdfd655104c9433a642d7c7c297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ed3cab44a429ea0265b495dcdbaa5d9d7dcebb601704b77826b190f79d516972
MD5 672834a4732fc8f6a3dac989abfa2ebd
BLAKE2b-256 5e7fe951196b98eb9269270ab1372fbb56880b19c9088ff3ac01156dd01a6e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a2de036a25b7722d1e2bc56545da8a672f9c8afded34586d91ca82708e6b602b
MD5 a92708b7f94274785ebb2fee7807f95f
BLAKE2b-256 b32762aa80d9ba90b89c03537df4ab0f9446ed25ec3e39724775ea84356ba4f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d016bd1452c07d757b5f4c315e84a929321311f0374b6959c048faa2aa0b26d
MD5 6cfecb85f0677a6c3dcfc6408e715535
BLAKE2b-256 521597921c97099534037d7c2fb82f6e724fc9d0c61a5d1eea12ee715176ef87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0cb63600a41f13cace3af7cdf316e5ef590c81d362fb237fd75b992fd826a9f5
MD5 77c2c7eaab9a886ea2983d226379a619
BLAKE2b-256 a4594e1583e100e5abe2aeeeaff49338d49e26be20caf113c7fea15fefd6f631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87c58f95d8c87395cc84007cc47832e89cf360e73bdba787e3c12c87961251ff
MD5 6f07108206643de46786760726b0bb64
BLAKE2b-256 0dc30a9785619e065794327b40f34f7c94dec8aed4037eb631befcc6af1bd48e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc3ed659ed0e1f01787531bf53a947abfc7b15edfe1ccba2247c0f84391ca418
MD5 1e928d22e2859b4255e4f3a40b925c3b
BLAKE2b-256 4cfa50738ab1192c5840939ba66496aafe92c1431d5755ce859822f36f33f0ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 419fe477ca2bd259fbb91fc533761a26365930e1fde7891f179bd15244aa6a85
MD5 008056e4ddba3f73cbca34c14d701b17
BLAKE2b-256 60d38fbd1ad90ca434cae170f08329dd00b3f5d8f3d0b347d9127fc5f59152f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 df0af02be736636589eba941b7a730f8a4be520dadd6b80b43470bfe5ea5d7d4
MD5 8263f45291be89e1cfd4af36562d3dc4
BLAKE2b-256 c4b1c7c5d8a92eceb36f2c385ef2c6fc650f51a10d891088274afd36c36c3e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66d1b9b15243519f41572ef958a7e6017a17841fc4f109fcb08dd38fb1fce3d4
MD5 a41484456a0e78b7dfbc0cc25beb56dc
BLAKE2b-256 7bc11d8308bfd6e0ed7fb6028a3862025aeda7385aa134d0cdac53bbcf3b6981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9333c609a7e0ede2833bf3fa4a40c03f909cf37a917397887d92e887bf84ba13
MD5 76797aa81341f31e94faf76104435dd0
BLAKE2b-256 91b5702061c2e7bae0997faede86d6aac675c1fd7ccc97d3164e5ddeed07efd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd9d6ffb4cc73eafd612d990d9583f0bde0ffffc2155fb3d960c8b666611ae75
MD5 4e479e2a84e41e6f14e35db5806d9046
BLAKE2b-256 49955d6c40b6d31b4f11051f4db12e0fbb779752f7d68bfaf7a8724ce8a83479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a43915259250fe29af4f42a7a9597240da11749c172dbe6f3abf70190cef48c8
MD5 bd16136dc00ad8da08a3044935e1de5d
BLAKE2b-256 ba5e24f9efed15d971fe74a4a6701d7473478f2ca80a560264a7892ba3639c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b78313980f473d5d0e7b022a965a2365742cfc82fde73e691986d3b589e46994
MD5 772b9582b830230298c477f2c0ee5cef
BLAKE2b-256 9d6453ec07b04f7cd0ec87f28be7104448b4dd1511c22af941a3713e615b9957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.3-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 47264933bbc1ada4f8c3066583953e183dcb9930232aeb79b880308c9b4af6b5
MD5 86e8303bf69f3e991062ad05f5cf776f
BLAKE2b-256 b9130bfb0ecf4f712f1ff9aec400d535e8167d3875fb52da8b739de26be38f48

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