Skip to main content

passagemath: Embeddable Common Lisp

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

This pip-installable distribution passagemath-ecl is a distribution of a part of the Sage Library. It ships the Python and Cython interfaces to Embeddable Common Lisp.

What is included

Examples

Starting ECL from the command line:

$ pipx run --spec "passagemath-ecl[test]" sage --ecl

ECL (Embeddable Common-Lisp) 23.9.9 (git:UNKNOWN)
Copyright (C) 1984 Taiichi Yuasa and Masami Hagiya
...
>

Finding the installation location of ECL in Python:

$ pipx run --spec "passagemath-ecl[test]" ipython

In [1]: from sage.features.ecl import Ecl

In [2]: Ecl().absolute_filename()
Out[2]: '.../bin/ecl'

Using the Cython interface to ECL:

$ pipx run --spec "passagemath-ecl[test]" sage

sage: from sage.libs.ecl import *
sage: ecl_eval("(defun fibo (n) (cond ((= n 0) 0) ((= n 1) 1) (t (+ (fibo (- n 1)) (fibo (- n 2))))))")
<ECL: FIBO>
sage: ecl_eval("(mapcar 'fibo '(1 2 3 4 5 6 7))")
<ECL: (1 1 2 3 5 8 13)>
sage: list(_)
[<ECL: 1>, <ECL: 1>, <ECL: 2>, <ECL: 3>, <ECL: 5>, <ECL: 8>, <ECL: 13>]

Release files for passagemath-ecl 10.8.12

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for passagemath-ecl 10.8.12
File Size Uploaded
passagemath_ecl-10.8.12.tar.gz 21.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for passagemath-ecl 10.8.12
File
passagemath_ecl-10.8.12-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
passagemath_ecl-10.8.12-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
passagemath_ecl-10.8.12-cp314-cp314t-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Details
passagemath_ecl-10.8.12-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
passagemath_ecl-10.8.12-cp314-cp314t-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 13.0+ x86-64 Details
passagemath_ecl-10.8.12-cp314-cp314t-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 13.0+ ARM64 Details
passagemath_ecl-10.8.12-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
passagemath_ecl-10.8.12-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
passagemath_ecl-10.8.12-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
passagemath_ecl-10.8.12-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
passagemath_ecl-10.8.12-cp314-cp314-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 13.0+ x86-64 Details
passagemath_ecl-10.8.12-cp314-cp314-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 macOS 13.0+ ARM64 Details
passagemath_ecl-10.8.12-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
passagemath_ecl-10.8.12-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
passagemath_ecl-10.8.12-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
passagemath_ecl-10.8.12-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
passagemath_ecl-10.8.12-cp313-cp313-macosx_13_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 13.0+ x86-64 Details
passagemath_ecl-10.8.12-cp313-cp313-macosx_13_0_arm64.whl CPython 3.13 CPython 3.13 macOS 13.0+ ARM64 Details
passagemath_ecl-10.8.12-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
passagemath_ecl-10.8.12-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
passagemath_ecl-10.8.12-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
passagemath_ecl-10.8.12-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
passagemath_ecl-10.8.12-cp312-cp312-macosx_13_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 13.0+ x86-64 Details
passagemath_ecl-10.8.12-cp312-cp312-macosx_13_0_arm64.whl CPython 3.12 CPython 3.12 macOS 13.0+ ARM64 Details
passagemath_ecl-10.8.12-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
passagemath_ecl-10.8.12-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
passagemath_ecl-10.8.12-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
passagemath_ecl-10.8.12-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
passagemath_ecl-10.8.12-cp311-cp311-macosx_13_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 13.0+ x86-64 Details
passagemath_ecl-10.8.12-cp311-cp311-macosx_13_0_arm64.whl CPython 3.11 CPython 3.11 macOS 13.0+ ARM64 Details

Total release size: 1.8 GB

Release files / passagemath_ecl-10.8.12.tar.gz

Download URL passagemath_ecl-10.8.12.tar.gz
Size 21.5 kB
Tags Source
SHA-256 checksum
How to use checksums
f122e71c3a226d529a9c6a4c054482544c3df0f0cd7e5568a6e56f6acae63a7e
BLAKE2b-256 checksum
How to use checksums
204ba0c4d4c74b2b5d3682ff608b21c81c1430ae74ecd6afd74c2d563e4c89be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 79.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ac4f27c2f580307c0acbfa48d2ab4cfc5f2419b479d3af6ae2586800b1f23b53
BLAKE2b-256 checksum
How to use checksums
c7d17cb7ef1b0f6d8fca23ed74ba249b00f5310d2dbfe0c5501aaf6d6f6f92cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL passagemath_ecl-10.8.12-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 76.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1c9dcb76b9396563673aa36809198ac4e28809d4fd60d158a4b0f52e5fb7002f
BLAKE2b-256 checksum
How to use checksums
c6f14b85d60dbd61aa15b78c2e390d44921966077e777cdaa09726d857cc75fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 79.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7df87cc69dc27ebfb6a13e571c43a3c1ea8c7db9daf61d9f45144903317f63da
BLAKE2b-256 checksum
How to use checksums
2e4c175779f7feaca121ca3c6f41892b4e09c6de9e98d7066a056e611a4231d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL passagemath_ecl-10.8.12-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 76.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f6d402c6066026725eb175f9ea89ae2ca8e4844783cdc0cd82ba96321a233958
BLAKE2b-256 checksum
How to use checksums
e4c0ababdf6c02cd035fb5b5e6a394deaa252831ffb4c6138ecadf5c1ad64196
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp314-cp314t-macosx_13_0_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp314-cp314t-macosx_13_0_x86_64.whl
Size 22.8 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
78f6ef61f0130e59275f3b59bbe5519b8f145f90e50cbf8a7e5200a33181c78a
BLAKE2b-256 checksum
How to use checksums
301e1df749942a88a2de6a5552069e34d218b4f31e7d5049b9154b28b59a7ee1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp314-cp314t-macosx_13_0_arm64.whl

Download URL passagemath_ecl-10.8.12-cp314-cp314t-macosx_13_0_arm64.whl
Size 20.8 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
51fe2dfc9d2985169eddc54bdd4f8ce9bd4a6ba9a39129b31b665f92dd0316f7
BLAKE2b-256 checksum
How to use checksums
05f0e1ae49195bdd65520a23ce869e896e4daabb67b992e6e0d7fd20ca2dd44c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp314-cp314-musllinux_1_2_x86_64.whl
Size 79.0 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a3e57f78a2bd6ff43793c5f135ac607cb44c6367546670a1d832b96f6b5f752e
BLAKE2b-256 checksum
How to use checksums
d734dc125555cac1dbd679a182f08d226c2731474029b662e5deaa33b69d4ff9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL passagemath_ecl-10.8.12-cp314-cp314-musllinux_1_2_aarch64.whl
Size 76.6 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
09b20ed7d872182f702517270515c884e1dcd8e05462ced83047ef5211a2ae04
BLAKE2b-256 checksum
How to use checksums
057a73f4790c09d730142a9c585fdda5f0752a4e1cfcb713007f4ffd9e855800
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp314-cp314-manylinux_2_28_x86_64.whl
Size 79.2 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a4d26a9da58961b4beed8e4410f503f1f2129eb5aef5fab09231053e388818cc
BLAKE2b-256 checksum
How to use checksums
e77a2f9d9045557ab269d56357ec2109d3316715a5274d97a1a69c921f56207f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL passagemath_ecl-10.8.12-cp314-cp314-manylinux_2_28_aarch64.whl
Size 76.7 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ec76a394a0368a77e00585eb4616867c6d3a4a586734d1f87b6eb9aba9f4b50b
BLAKE2b-256 checksum
How to use checksums
cd4b0c2ecfa012182dd7a815621e2ef29f699a5bea9b2f7335917b4679d0e6df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp314-cp314-macosx_13_0_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp314-cp314-macosx_13_0_x86_64.whl
Size 22.8 MB
Tags CPython 3.14 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
95bbfa7182dcacfb1a65aa200e0605b66c07d6cc9ee1cd748b7d86f27a23c48d
BLAKE2b-256 checksum
How to use checksums
cad20bb9c7e5220d5cb04d321526806264e2d8b34d67ecc2de13c380ad431942
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp314-cp314-macosx_13_0_arm64.whl

Download URL passagemath_ecl-10.8.12-cp314-cp314-macosx_13_0_arm64.whl
Size 20.8 MB
Tags CPython 3.14 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
ee43da995c037369df4a8853407c4ee96da80259cb0ba6ed0ffbc492434bf59c
BLAKE2b-256 checksum
How to use checksums
cb70df21cfad0b4f19a7be33ff7bb9a900f758df67c12f978fb46385faa0b9a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp313-cp313-musllinux_1_2_x86_64.whl
Size 79.0 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7638029ec5540e3ea70a24c2f6cd2094d31a0db4314d319e3d244a63c9ecd14a
BLAKE2b-256 checksum
How to use checksums
b8d3b8c1b8adc930b5c833c72cdbbefcc89d80aca0e562b8df2fb5f68f8cc089
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL passagemath_ecl-10.8.12-cp313-cp313-musllinux_1_2_aarch64.whl
Size 76.6 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
069a389255b383bcbfa3e90de323870df6f1b75315b5fce7115a9aa19b246501
BLAKE2b-256 checksum
How to use checksums
0cea2fccfb0d64f8a48fbba67908e06b23adb25ea43a2c3483d3446268869cd2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp313-cp313-manylinux_2_28_x86_64.whl
Size 79.2 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
522e8d9d767bb9a4b11e53d6b43d22eab8ec507d21b7688ad1c3f36d9df1f963
BLAKE2b-256 checksum
How to use checksums
30033d6ccb765e66cbf2d3bf328ab50e81e1ca03631e1d4615f8d552e80ddd4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL passagemath_ecl-10.8.12-cp313-cp313-manylinux_2_28_aarch64.whl
Size 76.7 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d353920818db71e94fc1f27bcc05aacd8cabd2ad4fcf9a4a7f9dd1d5225e02a8
BLAKE2b-256 checksum
How to use checksums
c796a3ec3f92ff6b965fda2a5d84cd90330e19ad5a9f7f5239e5240c2110faf8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp313-cp313-macosx_13_0_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp313-cp313-macosx_13_0_x86_64.whl
Size 22.8 MB
Tags CPython 3.13 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
3aec921c96d7c6a08730e19f5c2c46258eaa43c288a789a93009d591cf2da85e
BLAKE2b-256 checksum
How to use checksums
480dc2c08e0a4202efef0c8e857baa3c46c2956ee6fb51367ebe34dae6c8345d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp313-cp313-macosx_13_0_arm64.whl

Download URL passagemath_ecl-10.8.12-cp313-cp313-macosx_13_0_arm64.whl
Size 20.8 MB
Tags CPython 3.13 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
66bf9919acc05ea5bb5258a97215b3874df83cd62e60c1c255fc3ecb0fb5ba14
BLAKE2b-256 checksum
How to use checksums
0f7a529d62ef88a42ac20a1711dabfee3ee9430cc20a589a7ed4b55d44500ed9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp312-cp312-musllinux_1_2_x86_64.whl
Size 79.0 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
294159aaec1e558002ebf4776adbe7ab2c002904b54b17255163a45f06de470c
BLAKE2b-256 checksum
How to use checksums
156855014114297c4777aaabeb2c0e196f6d1ca0580a4de94dfb3bd615db9761
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL passagemath_ecl-10.8.12-cp312-cp312-musllinux_1_2_aarch64.whl
Size 76.6 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d0b32b8b75dd2311ec0696179f4e178cac6a131010ae2cd29e0c22a25a15ec9b
BLAKE2b-256 checksum
How to use checksums
05b614eefc348dc493ab89c3213d92d245cc3e76998b40be1ec12c056047cee2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp312-cp312-manylinux_2_28_x86_64.whl
Size 79.2 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3b8307af54c4a96f1146ffde721fa0d00fb5909daa18b7345df8b3c81145316d
BLAKE2b-256 checksum
How to use checksums
8332eb8197103f4e5d14cc53c86beb2c7069ac45b3db8a6b191dea10b58fb791
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL passagemath_ecl-10.8.12-cp312-cp312-manylinux_2_28_aarch64.whl
Size 76.7 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
3cf925ce0d2f0a195aa8fbd12276707143bc83fb6fe1969b2b29f2030065ac4a
BLAKE2b-256 checksum
How to use checksums
4d612879537dd2bee640194757aaecd5364950c712821664cba7e410b191a90c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp312-cp312-macosx_13_0_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp312-cp312-macosx_13_0_x86_64.whl
Size 22.8 MB
Tags CPython 3.12 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
a7a3fdd787b6ca582dc341f3413b253e36e18e45d18556f03df08afc82563b3a
BLAKE2b-256 checksum
How to use checksums
1b375b29d59842ae644dc5063c464975dc8fa2b072ecde5ed699f74d35567de0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp312-cp312-macosx_13_0_arm64.whl

Download URL passagemath_ecl-10.8.12-cp312-cp312-macosx_13_0_arm64.whl
Size 20.8 MB
Tags CPython 3.12 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
5971cd5069084e28f192f91e273f7f6727940b1ae0f46075b73bc9525ceec31e
BLAKE2b-256 checksum
How to use checksums
ebf243fa42b6cd3b83b7ecd9f4aab1d8cbc72544a28b50d1eb3316c3417165b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp311-cp311-musllinux_1_2_x86_64.whl
Size 79.0 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2a8c095ed6ef8ad291c508f0febe100132a5af7367fa393560262ce00f3f1dc1
BLAKE2b-256 checksum
How to use checksums
2b832585670c628e5da7292260f6c3dc972998bfc196f8776ddcc14bef63097e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL passagemath_ecl-10.8.12-cp311-cp311-musllinux_1_2_aarch64.whl
Size 76.6 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8676c83c621410cb7c8276718a8cdeb75b7ba1d737774a780c35dc10f16dd78f
BLAKE2b-256 checksum
How to use checksums
d6a06ffc287d468da1fa0b413dc51ffffb0bbd1fb971f42b7b8c6aff74a2cfaa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp311-cp311-manylinux_2_28_x86_64.whl
Size 79.2 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
366cb946da3ddfb57d894a7addcbbe24d67784b9f26e71b526ef880a7e44ea0a
BLAKE2b-256 checksum
How to use checksums
70cc9e873d5500480433dbcdb594b1f13e5db050835bc6ec014b614ebaa6aa05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL passagemath_ecl-10.8.12-cp311-cp311-manylinux_2_28_aarch64.whl
Size 76.7 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
63107fb197cdd1a704bfe1e6825f7277ce3869ee86ea420d04728abeb621d677
BLAKE2b-256 checksum
How to use checksums
89694ef53cb3a5d933dd94d3feeb3b7fd401c89d6b77658bf65aa3e7c4f1fade
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp311-cp311-macosx_13_0_x86_64.whl

Download URL passagemath_ecl-10.8.12-cp311-cp311-macosx_13_0_x86_64.whl
Size 22.8 MB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
7ac3570541715da47b56b53d5fe4e149f02b25b562c24e0de5b2047b87154a0b
BLAKE2b-256 checksum
How to use checksums
800b2382075ae4e6ced1524f73ffcfb53eb1cf19d2a5f2e056aabfc5b2953546
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / passagemath_ecl-10.8.12-cp311-cp311-macosx_13_0_arm64.whl

Download URL passagemath_ecl-10.8.12-cp311-cp311-macosx_13_0_arm64.whl
Size 20.8 MB
Tags CPython 3.11 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
58c96a773153e7645fb1a9db073d3b586efa24ab92c2e037389920aacd527f8e
BLAKE2b-256 checksum
How to use checksums
edf487e91af682c6d3226f1b9c252de1a514027c8f0ed96d68fbdc19c6ede3d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release history Release notifications | RSS feed

This release

10.8.12 This release

31 release files

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