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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

File metadata

  • Download URL: passagemath_giac-10.8.5rc4.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.5rc4.tar.gz
Algorithm Hash digest
SHA256 c4680fa84a17d9ff3253f6e1885291dbc68199bcdeb4bb22fdd2577dba89ac32
MD5 162b80e137706ec1fd0d737380098261
BLAKE2b-256 c12d50e2d4bd870eeeaeb3324967fc5f2331904ef21b8dca3cdd06e5b38ae288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a406be03d654764d68acbb91606c3bfe130ae473c106e08bf5681f2debb5ff0
MD5 2f4323b9cf79f71b1993f4dd6b30cc84
BLAKE2b-256 686b4ee73ed9377284d0dc84e448d9626231b9f2cb4d93ee7b988f7d61094c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1592d9f09e4721fe92bea9f4c02a671995ed96e21c5efa284782dcc635907409
MD5 ef3a15bc5e98ef04ac10f79126375410
BLAKE2b-256 7ba6db8beaf46608bfafdeee9f1d0635b8929fc2a841a560a8ef3fedebbf2123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f237cf11001d8b9ff61f471799c63416c48984b2b3a178553e6de1b849232c51
MD5 992bd1dc5419b479f7b4f601eae85564
BLAKE2b-256 10f161b4b921513e64030919acdc40712624c6960203bef5c60123b4396f89d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 746233f1c3da48b4593cc429b65aa16be53bb194842dc47fc2a3dcc909fc8959
MD5 60c0ee7de85a27d6829a26a40075ac4d
BLAKE2b-256 e42559914c270fa9e0059160f7c4ae08635b260979a16d6eee1b76bcb355f796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 6c6ed8d9deccd31d5d0282f276d3af976a5251606fc0bc135d65a326c53f9a25
MD5 cc965b5b254b4307cf0268a9dce6857f
BLAKE2b-256 0cbadd3c94dbeb2a027e71f32dfa2e186d75d07e93ba2eebde07239d8734a310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19586cc753773708fe16c7def3aaac26067f0d1d3014f3328c9d05d998b3d804
MD5 438b27547970967584ec72bc0782cfc2
BLAKE2b-256 8966b7f14d4f4cf70d1828b3f9861994e0a4da48be9345cda24271e5dc949d1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d557806220c88e742ff780b59a528bb5bfaa251c3d4b182954c36c64ae1c7b8
MD5 ea8202f549bf77a035ddbf332a1589cd
BLAKE2b-256 09a237635953ada3129abcbf1cabd0472a78a8ff197b1ade7f48dae6786ef31c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66504a2da3b12d084d2f80ce868f9f531439e4a738d5c69eb8c97373584970f3
MD5 e8ec4df386b123146c91358ee36a983b
BLAKE2b-256 3cd102d7e6328afba9d5daccad6a8f9f14eed9f5b5973b6477afe62ad6f2ec94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b86eeb3f28e21c036bf81c2a2d167ce1a7af66ebdd27ec1be72c6ba07bacb33
MD5 cff9f76607f4dd97a4fd9ad4c80f8cce
BLAKE2b-256 46bdd7535edfedf56a9c4b16db80de508302cb2eebf968e6894af43067a3eaa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8923dc7863785c3c8e34552448d3a82a1b6c77e3e1ceb8b852d622ef8b631be3
MD5 43c7d8473ce90ac42c1138496c56273e
BLAKE2b-256 63556f5739000be5eb1c780163cf53503c0ed1ccc65c51ff7012df1dfa467337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eaa9b55eab375108e1e029400a6c5bfa546b8ed061de7ad6cec85ae6774c54c6
MD5 7fc02f5522b651abb06a073cede9634e
BLAKE2b-256 f1fc48c86adb656941210d1c0e038bec6de9f8ed403d85c3a0972631e916bed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9f1cacbc089c58aee7c9da3d44dd2ea2bab3266f31254a3ac5163a74129d2df
MD5 706142f8620bf78047684a945f83ec7e
BLAKE2b-256 a2cb1bebd8bfc84b15a23905f408215d6c208001e0b05f277150dadf26576c9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b6057570f12bacd6de2d40db881cff58fd1f2b504fccb02a3e7cd35e14c7fc4
MD5 cd74f51f4ef6297f4587ce607ed594af
BLAKE2b-256 75ec04ed06bfd9994ea33c0709bb1eea2d24bfe9d486cb7e8ac8274aa20cfe55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f52ab2e6e3354338f454b7f25890ec4548276d9655503c8537a470f61dee5fa
MD5 fb06448eba3841e0e4c5399d843cec86
BLAKE2b-256 13049726fa62ce935f9d17a81901066edf3600f334471043476b41f31aa07d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 73de945cac6c7e62eb38c1d089546a62051967ac54e26bdcead34a5b2f61764f
MD5 a03a1b30daac34ccbf3da0f3757cb564
BLAKE2b-256 f3263f18dbd85f1683145b74a04d985a332fed5e2ae6d385804421ea75aa1878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c0c858242cb35e53c7fdb954a8042fe20137e7eed35b9f1086d40277172070f
MD5 464e9bd746dfe21439ffa88afa92ec9f
BLAKE2b-256 f7e78f85d0e3e7b3d430851f320378ae6f77f581bc5bfd2b711ac3b46f150462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34b558ce5c9d05a6d012585f7890144ca1152b90926ebc22bd62df4d5f69cce3
MD5 54858838f0ecc17a4395325ac0d3a635
BLAKE2b-256 b06894a4dd6696cd44ef8fa8f8bcb03d393e4437a0e161fcfc4dcf12f653c28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f867419eb7ef9022592fd4e20d2049b36112d5a69d2cf7dbf6ab9bf1927969f
MD5 e163a3b6f10ed268096a7130fbbb415c
BLAKE2b-256 390b7b5ef60b22de15bff2362784fb9c30f827a0b42e1e111a58eb142353fd5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bab8bb52f34d1a3b22c2fcb761ddef44afb021fd43390837b8afe4ec3dd655c2
MD5 dc523ddd19839a5042b461b4180caa2b
BLAKE2b-256 0b9a04ba6a681830bd8b778ca7622bd792a15bb1840a1ad9fd6d392f621f0d92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9865f440552c0b694bbdf9470632a82e4760fc3dc0cd3b0f15719fa84f7b5ffa
MD5 9c8ef9a46354a51f3635549ff5b8a4a4
BLAKE2b-256 b86867c9936bb1744cb4f38d8c75cbbcfaab1cb914e23cf63d5306f525975e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41573415163970b12b0a970ffe5c9d2386713092d0bf43f7652d50b099f8027a
MD5 fee57c15e544216857a0dbc2e496f6f4
BLAKE2b-256 5224b9cdded9e79d139747f144fa9c063fe63cf1ab108201e54bcd0fb6110ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f5c214b6a4a5bbea6901243484878144ce90414b33b5cfc26a696c2c79151a1
MD5 35665bac253a964dff7a25a6ed53c117
BLAKE2b-256 07ff40d815cf363ea4cc817aeff1cccf5552cb9d7e7161321ca2fb36ff6a32d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7013521ce5ac68bf18ad554be1c571e82c8be85c9ca96d3d2d6f36073653076b
MD5 e16dd5de008cb7bd2483bf317b674953
BLAKE2b-256 a3c75a20db44e84bf29534ebb3020f76d4822406c635fb2a810cb00935ba497a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b6c7ac44fc32b6dcff84d704e2c233adb2d1da6118b33ff4d245d8c569c91d7
MD5 9651817a519a94ef66e4eefdda9d2ef1
BLAKE2b-256 d8eb114e8b416415322ecc46bafa3ec25124eb2e0c61a3f85058eb80bf69bc9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.5rc4-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9532d7db69d1935d99d10f2541fb87c89e17c12725bd113ef2b6a0f6818f64c0
MD5 5e217c625af3f411ecafec742c6b4076
BLAKE2b-256 1dba747a04f37dd6fefd4ac18b38e4d5c11b3f22ba616a741a842c5ed4747f88

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