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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_giac-10.8.11-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.11-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (94.6 MB view details)

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

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_giac-10.8.11-cp314-cp314-musllinux_1_2_x86_64.whl (103.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.11-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (103.2 MB view details)

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

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

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_giac-10.8.11-cp313-cp313-musllinux_1_2_x86_64.whl (103.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_giac-10.8.11-cp313-cp313-musllinux_1_2_aarch64.whl (93.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.11-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (103.3 MB view details)

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

passagemath_giac-10.8.11-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (94.6 MB view details)

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

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

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_giac-10.8.11-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.11-cp312-cp312-musllinux_1_2_aarch64.whl (93.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.11-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.11-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (94.4 MB view details)

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

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_giac-10.8.11-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.11-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.11-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.11.tar.gz.

File metadata

  • Download URL: passagemath_giac-10.8.11.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.11.tar.gz
Algorithm Hash digest
SHA256 f49b16b23f9937f27c08c069005281448ba53ba8a1d2213f13f2b59b52414a9e
MD5 3ac6fa0da2a5b82e1faed5bba44b271e
BLAKE2b-256 501204a4ce4b8161800ba08a7a5fd24c7ba958b26a5d43084a085eb3d117f8dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be99edf956587e1227b0ec58ec7aec3378a3e02cf097cff39f19d1be33f16bf6
MD5 c7085e845fb7e029815e24f03cf06c0b
BLAKE2b-256 76b248ca827fda16453f0900011622c337908faeffdfcb2e2cdb5f37e9dece2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6f82e769c1312031b53c15ee4adac2ee2872dacf2e8ad3855be500e833e07ed
MD5 aa5ea1de6bc8796a700e843940177e23
BLAKE2b-256 9f77f73905a81f19eab5007e4669b978bc92326c74f007dc2d1f9e806254d1c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d482e750d0848b90dec68a30fe9601ea676b341dcef212c18b8f2cd50358f61d
MD5 aae53d624aadd4b97b06d6854ca9a997
BLAKE2b-256 9acb0474283fa99ba867644ac0a303d6e42da29d5d1bbdfe0401ff027be1ee31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c25ba3200918db15a21066e16e1223025b697af388adda0adfba4d94fa796304
MD5 f622c19763512d9c221b9415e64a284c
BLAKE2b-256 aad5df2d56520a8ee4d036aa94017b80bfec814be1fc3a3302592f7bacd0b862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 52d40012bf0ac7428549444456bc8572bbe9601d4697ebc7189b1c2d985e86c4
MD5 c33f594c472a2f6e248fe3be2c724007
BLAKE2b-256 4c42d72fca622c4d8aef730931e7634967492f0a196bad291fade7a56ad98594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e692f6f8ce10930299dfe83f377aa58cf15666de737c140ffae07ac546d7ced5
MD5 98ef8de28fa730522764ea7e630ef131
BLAKE2b-256 ea3c2f0997dbe43d0caecb795575f0736bc5d12138eae1e588e09f19c477b8e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0583b5dffc5f2db8a7588530f6b6a17c497dd8c3e8b6a50d3c7bb9c26af7b930
MD5 92184b07523e248600e39898753c734f
BLAKE2b-256 aca4d070519a0f98ee0af99264679c1451fe8b47af7dc0e21966d272e1d2b460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4739d7ef00c927a60bf3c58030cf2db5f1e5274a4690d64b4896494717e9bd19
MD5 0bd091680ca7cc7f46269e7b0c5d245e
BLAKE2b-256 07d50bed6c7300ef3aa58d87bab17d6d8e820a44d9c0e6e90d75f3e0a8a4366e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 385f2fc37be95f7dc6145523dd7a81a4a5eb4c11601e7a0cfa91accf3a59a00a
MD5 175b4cb195f94f5932e5901f39760e76
BLAKE2b-256 80255b82476358abb733b51e5ef4b69cc33b0f944dd5c86e35eb283c1da93b03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4bdd791f95622c89ad8612350bcc3a2cb79ed369c816d1e06f67d0e7a331a2dd
MD5 b62a7dd9db481499a215f439a588e152
BLAKE2b-256 c508fc8e6348dbea49acf2a2fd0c514f729fdc8f17843cf103eb72d1686fc1ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 4c769ca0d42f29c8cb54d61946985be576ff1355d7dcf4edf80c248b830aa4d8
MD5 ea3e50a5515f2e6c11f7ae1c894e396c
BLAKE2b-256 f5946f22f23aaf1fae7387c7ef62b516d6471cee2a9ed3437b989eda05c30e3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 24e13f2d2dc3571f0256d0e8e0c8ec79343d1df02c39d04fd8440756b8f6b405
MD5 87f65de9bcd337b65b0b8824f362b690
BLAKE2b-256 4cb39366d37a504581827e238fc6484f5ebedf19a1b8456b92e60762044ddc04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f2ad12d68df2cc59b18f79c300774d57f0fa7d7353e6630b8c92d95f7a1e74d
MD5 362f9fa38fedaa9ef9117e629eff3481
BLAKE2b-256 41da2c12f9d17beb92799dd08e9d58c1b7f30f5fd80b68823445b33bff89d9b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 178b77637e9141d9a9a7df69dac74d63e7a11d02f44ee6b91ff7174fc9b9d7ae
MD5 c483a9f7599a29d9d8dcea80c9ba92a9
BLAKE2b-256 d2cbec8dabcc8a9315e0af2cdd8ae0f3a895583d28d83fb7ba41779821533547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecf2f6eb3aa1fa7ba8bd76a25cd858fae330b28d56f95dd86a63157010983c4b
MD5 570bd83f56c8ee3391f27c3f31dd6021
BLAKE2b-256 a7d6902e2c04c55f3d0060acd50a71fed4ccea74f20933464a0047d20797d02e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b3a91864c4c0dbcf54d8ba08512c6dad87fe068f07b7065df56383ed4b2aa8e6
MD5 13d406901bbe3296b06632b209a20782
BLAKE2b-256 343065f07c2d2c763296f83432d7aa65b18fa4afed9d286870ca17ab2ca534dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0d24e9fa3b5d56327707eccddc51f64950c9307226db431b2f8d6e2fc2ac90f1
MD5 eb98bbf8676e02925faecc62b5886086
BLAKE2b-256 56b1d8fdf307f646d2b548c57a9a040c3cc7be42092498df724b45263fb6dbfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 593e1777788f4ec97b0605ed63529f0c1844eafb8cf340963c030c6ba71f86b3
MD5 52fe6d857bd59c5a5e6e2f6f606ec1f7
BLAKE2b-256 1c8b6df74155d8543f7b30d457ed0006937ede2e74b8b4bed2ff5dc3471f4dbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6c0e4725d1d365d6838aa07da1f8be6553c6b5b40b6822e89793118be66c98d
MD5 5198c16edbcec0dbbde7e6d6670e3adc
BLAKE2b-256 b285142dcbf71ed0b13838b26d9f89bc8db1d370406e7fe3e8133c1360497be7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17d35a49976b14368ac53cedc4ee2310440b691d693a9478cff936d9ab74154c
MD5 861d41da87b71c2349d161b55b0f35ba
BLAKE2b-256 67e48725f1d0dedc81a5f755c96f52ed845fb6c5e21cde4255c7c4526a348267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33435891217c5a7bdeee124ece339b48afcaf928920b76cf95ca1625426c90a4
MD5 c7c10cb589339213e2309769a275ad70
BLAKE2b-256 9493405dd033913e5c59037d97446ae8a1b0532047cf0df34a324e34c29ff5e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e504ccc8b50637c5b46daae27d056e736e1c0c449bc5ab6c1adca87166dfbc9e
MD5 1b0a66ca5ac66acc78e278717ccc152d
BLAKE2b-256 032aad0b235cd3fdb2bd7946a6b79e4bbdd2011f9ef0c519cae03ac4a7424c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9fac074e354493489a5002c1fb7a4eb13aa088834589dadcfef1b0b67788ec07
MD5 f16a12f87ad8c819a43453a45f24e809
BLAKE2b-256 04e2d497ce58170a992915ae6357f9d7b35c8ea48f1adad6edaf76f9b021a691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 79baff99da359d6d131615941d48cb6a9aaf40b00664eb229bd6ef367f754799
MD5 76914221ec5e4573f90c5487273fb9c8
BLAKE2b-256 5a28491b4b4c82a701f3116905dfa23978cf58c5b1181d3963e5d82406cec1c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8773a25222ba0db5ea2a7fec522bfd4c61c402a0007dbbc18d1b3cfd655d6c12
MD5 106677130d22369eefb8a6376303cc1c
BLAKE2b-256 845b727789158a58370d8e0c2e08bda1c21d2e7541d29ccc4d1f30e873c11209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eee4fa98ec5618ed35172fedf071d1fd1760200ae05e21445dc35672f000daae
MD5 92ad87e1663a7ef79b6f79abaff915fe
BLAKE2b-256 b25fb0ea00a48b63f9017047b6dfe31b97f6d34b77b66c76792cabd4cd121af6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 dc16d177eea47083c36fadbdfc8581318ae0e7c1c377a52efb05536054d0f685
MD5 4f6bfbfc78f431e5c23aff3fcd8e99c3
BLAKE2b-256 fa901203054e11c55f3ea3e8fddf18f509a5ca7b764c54e76b9f2889b5cbbdff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_giac-10.8.11-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 0313bbf816fc10d4b121790b8bba26064d14016edb579db84fd53500431b1001
MD5 ba22ed163b33b63dd2ccd492383e14d2
BLAKE2b-256 8f012fe0e78eabce55aaa7f57f099f752ca6181a357936d1397dfa16d5d6f26d

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

10.8.11 This release

29 files

10.8.10

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