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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.2-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.2-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.2-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.2-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.2.tar.gz.

File metadata

  • Download URL: passagemath_giac-10.8.2.tar.gz
  • Upload date:
  • Size: 184.3 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.2.tar.gz
Algorithm Hash digest
SHA256 b559f96709bce66b3ecdc30d4be440a075ad363a6eca78a7ac8646b38e91e597
MD5 470374165965da9e292f5985b77011bc
BLAKE2b-256 a4c27726303fbb5e8b9f7b2a7e491991d5bbaa67081068919877ce19269f8e5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a3994b8fa8fda27aa63b1880f7f0585fc51f35f609241d17d6e7bd69dd27176
MD5 0006cc854da074a1be59ff7c68858388
BLAKE2b-256 3e0dd1b978cf391bc57ae0e67fc9f86c8cd1c2c3ea2f60589b1d2c3e3643f7a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b26e6805cb87e85b399ea0373781b76a55f70bc9b4313fd71180a90673b6d6d
MD5 55d0b6c8d76e084c73f28e8e77fd65c9
BLAKE2b-256 d3792e86ff8d1ef46e32cffad311684089877da97e275b63b6fb73fa0bc8ca42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82057ebb9075afb6469aa90b9258d4df84d08db496114ea91fb290a4da6a4c4c
MD5 76c1a2ab2876dc9aaec79a222c6fe43b
BLAKE2b-256 f0bd0b6b224d54c88d73d56912bdf8605b47f0cf4507853cdc99f3cde22abe10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74ee050b5fb37e0da7d5b162cf0b906ab193691868ea91e98916d57c4334a852
MD5 cf3df7379c98201c97cb5c9f3db98af9
BLAKE2b-256 81ce56dc262f4fd9245f60c5b60cee1159ffedb004695cea34366c770bf8a5db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9e667ddddd20c4914d3d97d00d13922f11eec3d4bb039286b9e566f057e20886
MD5 32cf3ee97da41d003c7c72c8c9054faa
BLAKE2b-256 2e111ce593c5e18468cb7128f769dab69ce685f1c8f6d2fd124b3b89af8343a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 aaf26ef399f1e42abd2684ddf794f08c68c718bb1bfd1fef0030d1a5b5544d64
MD5 82d6b6c39bea16fed45c2f9e1134f3c4
BLAKE2b-256 2d502ca90fbd52f73f126ddcf8a5ee4d1d1ae9c9525ae06f2e683f9472d58350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13efc9a59c1e2205a9ac1cbed10e8aa4c73b0f4feeaf6f37b1aa103821a88297
MD5 02a143f127de8e24e7557b34e16d6313
BLAKE2b-256 4f8b91e7cc7716c88712c9c4a8010f4af986a33613240cdd59a479d9e6042479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87acd2909e6701d3bd918dc6cce77eadf11b8dd0a3234798b5239bf72a295fc7
MD5 787a22ef5338550df93e33b316f8fc25
BLAKE2b-256 27462fa0540dd22a824adadf142350fcc1042db662f96793e9a0390dc5d218b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 183999ab900379e9f5cac365b73a5724a29d017c279a0cd0eb02b7a955cf6488
MD5 8c9de2a3a24befd44dbc1723cf16de91
BLAKE2b-256 723863010f78f8f9ba9e8e86617826daa92b6ff951dc7910728a136fa9b4079a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78eca2c6827babb420490288049cf9735b5224060ee0e274b66b128c4d603826
MD5 1d4f805a9c8f482d5c4063378f608508
BLAKE2b-256 693a4340759ffa938a1703e65744709b6d77ce37a08af9547267a1fbecf87ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 28a2b5f7fe6f2733d7ed3c3fc0902cb4a34b412f0ca62bda1a550c36d7afffa4
MD5 a186095dac5d136a3596da1f77100e24
BLAKE2b-256 6932481635c654fae2415fbb33111457185a9e6bef90aba1effd47e904934342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f09e02ab2afe4c354c7fb8b300f0da25d5065fef3740c53d6bf4bd8a29615c3f
MD5 5c6134c2d26cc091fddd76c2d763a676
BLAKE2b-256 d4e972488190a1bb299ec0653a7c2d45d32956ca65924d8a3a8ee3be2655bd80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37f0417c8fcd30dda563b95af6ce3c3ce68611780246978c79a022ee78107aa2
MD5 cc90742bb177c3b771b3cfe114f9cb0e
BLAKE2b-256 a358c10061fce63f802b827b3ebd4c5acca2d0005bd343282bb15bd95b27be28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6be2cd00fb924e520d88f2e186e06a75e3ea73f360f0668eb5cc1044a35d47d3
MD5 165ecaaf3ede2eee2c12d06da8c788de
BLAKE2b-256 a57d08152a58b82b148b0b7d92c015efcafc00b16b97e218ec3e876530bc9583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a3483db4c50544de15ae9a7a47ba8fbaaaf56c775d79c35419d0f248ed47902
MD5 bbd636867e84105f843d011f3074a0cf
BLAKE2b-256 d658335ba929e787d8e12c134739246cf5e4d189e478e43803574a4fd40c8e35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1c9bc6175f1b19d2eb9fb09bc1a02f905e926dbb33c813f13cc371017562d3f
MD5 71637431498644ea841a71581aecb3a0
BLAKE2b-256 0414259f595c1d5d21f82c6573e77033fff35ea6dcd81e0c2612300c10361f9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 46ba7f70a3a335910b4893bd02391e0c885d9fa6323ac92cb52aae32f9b40375
MD5 c50c0f3e5bbab421b383b046eac4c7d0
BLAKE2b-256 8b085712c3e02e5d340eee7423556c837d2c1e4888605dcec523e14faa117dfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 779adcd4e8ff8348c866a2e22943e218bf294d28814ec4fd087ce69918f2c8c9
MD5 9e5d2dd1df3ce2039424449c7a825e3d
BLAKE2b-256 32746eb3c588e8f43a596bfeddef5c79594bc5acc264087bbe47c03d6c51c899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 caefe107cc457d4c9e2928048ed6722f45ef0617ca95f8bd86f85f65a7bfc75e
MD5 ddca64a48f0785120b5402d7a949152f
BLAKE2b-256 db13a68b1ba649bb2222ac4e3c51a8ce7b06a092526e15e163a9dfc8a38084fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e759ea7267aa6bb512a8038992ad2961a0dc0f44c1454c559b1960e1b42523f2
MD5 2ea2315f7e640f6b0f7bdec7501e2c60
BLAKE2b-256 398187c6214f5ef5335ae807c4c51caf99e5d7ac3c1e90ba7893d05c9adc9bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e6dcbce373b41a34ef8f6e15bf4696e3bc8fffdcdb65dfb51e511616c3d14de
MD5 528bb349e2fd4576dfbfaa2b5b67c921
BLAKE2b-256 4c27be6a8aaebd6e4ea54a5c7b9f04163e2cb2232286b18efb018929f495560a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c020e09e8078e4c0d314ed1623465ffd8dbd81f7622e2c8dafec5aa114587baf
MD5 47eb94ea9753a7df96412ac21dd9774e
BLAKE2b-256 47116b820951fddf88e082639c7d44524e90255d97de966e2ce73d13e32dcc77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b44819bcaff5928d865980ca38e2e5a8b757d636240665d2b6796ebe7dbff44b
MD5 0930a45c65ef9bd17f01254519f4725e
BLAKE2b-256 9aaba61f133792e19e9cc570d6f609752f3a0aacd9483a29181f1e3b27516468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b5bcf70dafcbbd46161dca0b7e2f6a38829195204ccc5ae913ee87973bcb69e6
MD5 67994ce9e98cfd06c87fd19313bf023e
BLAKE2b-256 4c637979971cbe50d5f1720eb4f854e2a364476fd49c3ffa9d431f0db6dfb5b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47a0e12f8b115b7658c81e84f9fad01ec209c3ef67e35fb9eda36400af02830e
MD5 b9647329d8e772ae1c56e678457523cf
BLAKE2b-256 9fbde9bce88c3bb2f61501435e70cfa8433000a869f5a8ff922bedb7cb5f1c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b00287390c1ad21787ca64ba4036538a8879e51cb6ea7f1ff473a5f4334c2403
MD5 654c9cd4fe06f516464b97edc3da72de
BLAKE2b-256 ad93625257e7bc938e33cb131e73c3f4154a578d995f4430ca31745854eb49e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cfe87c180dd7d976f4a3f492e5dd65411326a2ed073a3212ecf277421b865a49
MD5 9a6b68cff6c3070a110b74b3fba9275e
BLAKE2b-256 f5709d6960b7bf6a931357e5840e988010b08d340b529f5a07e044c8d1508652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 401c0aa3a2af2e01c043b1cb974974a579686d174fbb94907cfdedac1387cf53
MD5 5ee8acd4626bea1c79b57e6be97d3af8
BLAKE2b-256 6d644131184b25cc50208993cebfea5725349af2557512d5cd68957240ac55a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9f9bd35ad0b43c7bb4f5bebbfb8618b8d31b3e60f33ec63bd8041360412ff829
MD5 a5a7f4eeafbc51717a7effee0b842f6f
BLAKE2b-256 7ecf5afb02e5bc43d4a040077092f3f3a7ad4b38a3226b73f6ffb9ab80e9b1af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.2-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 0030b85026c6aa8c3ce77386d35d1a50ce79414bf385c9e1e709feaed70dd6db
MD5 634e634037462789e77491d1062b2ef3
BLAKE2b-256 b22321ebd9b6d4e665605229b45edd9ad23d8ea94a134abae63d5e49ad12dbb3

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