Skip to main content

Python bindings to the clingo solver.

Project description

⚡ Overview

Clingo is a cross-platform solver for Answer Set Programming (ASP), developed as part of the Potassco project. It runs on Linux, macOS, Windows, and can also be compiled to JavaScript for use in browsers and JavaScript environments.

ASP offers a simple and powerful modeling language for describing combinatorial problems as logic programs. Clingo takes such a logic program and computes answer sets representing solutions to the given problem.

To get started, check out our Getting Started page or try the Online Demo.

📝 Resources

📦 Binary Packages

💚 Conda

Binary packages are available from Anaconda:

# stable
conda install -c potassco -c conda-forge clingo
# development
conda install -c potassco/label/dev-20 -c conda-forge clingo

Packages have to be installed on top of the conda-forge channel. The Miniforge distribution ships a conda version configured to use this channel by default (see Miniforge installation instructions).

  • Supported platforms: linux_x86_64, macosx_14_0_{arm64,x86_64}, win_amd64.
  • Supported Python versions: cp312, cp313.

🐍 PyPI

Python packages are available from PyPI:

# stable
pip install https://test.pypi.org/simple clingo
# development
pip install --extra-index-url https://test.pypi.org/simple clingo

Development packages are available on the separate package index at Test PyPI.

  • Supported platforms: manylinux_2_34_{x86_64,ppc64le,aarch64}, macosx_14_0_{arm64,x86_64}, win_amd64.
  • Supported Python versions: cp312, cp313, pp311 (manylinux_2_34_x86_64 only).

☁️ Cloudsmith

Packages for Debian and Ubuntu are available on Cloudsmith:

# stable
curl -1sLf 'https://dl.cloudsmith.io/public/potassco/wip-20/setup.deb.sh' | sudo -E bash
sudo apt update
sudo apt install clingo python3-clingo
# development
curl -1sLf 'https://dl.cloudsmith.io/public/potassco/stable/setup.deb.sh' | sudo -E bash
sudo apt update
sudo apt install clingo python3-clingo

Note that only Ubuntu 24.04 (Noble Numbat) and Debian 13 (Trixie) development versions are supported at the moment. Newer distributions or additional architectures might be added later if there is demand.

  • Supported architectures: x86_64.

🐧 Ubuntu PPA

For Ubuntu users, a PPA is available for easy installation and updates:

# development
sudo add-apt-repository ppa:potassco/stable
sudo apt update
sudo apt install clingo python3-clingo
# development
sudo add-apt-repository ppa:potassco/wip-20
sudo apt update
sudo apt install clingo python3-clingo

Note that only Ubuntu 24.04 (Noble Numbat) development versions are supported for now. The packages are more or less the same as the ones for Cloudsmith but build and shipped via Ubuntu's Launchpad.

  • Supported architectures: x86_64.

🛠️ Building the Application

📋 Requirements

  • a C++20 compiler
  • re2c
  • cmake
  • ninja (recommended, optional)
  • python (recommended, optional)

🏗️ Building

The instructions below work for both single-config and multi-config generators. For faster builds, consider using the Ninja generator by adding -G Ninja to the cmake command.

mkdir -p build
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release

📥 Installation

The install target copies the built files to standard system locations, as determined by GNUInstallDirs.

cmake --build build --config Release --target install

Avoid running the install target as root or administrator; instead, set a local prefix using the CMAKE_INSTALL_PREFIX variable when running cmake. If Python support is important, installing into a virtual environment is a good idea.

🐍 Building the Python Module

It is also possible to just build a Python module for Clingo, which allows you to use Clingo from Python without needing to build the entire application.

📋 Requirements

  • a C++20 compiler
  • python
  • pipx (recommended)

🏗️ Building

Assuming pipx is installed, build the Python module with:

pipx run build .

📥 Installation

It is strongly recommended to install the package into a virtual environment to avoid potential conflicts with other packages or system-wide Python installations. To create and activate a virtual environment, you can use the following commands:

python -m venv .venv
source .venv/bin/activate # Unix-based systems
.venv/Scripts/activate    # Windows

After building, install the generated wheel file from the dist folder:

pip install dist/clingo*.whl

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

clingo_funasp-6.0.0.post13.tar.gz (11.3 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

clingo_funasp-6.0.0.post13-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl (5.0 MB view details)

Uploaded PyPymanylinux: glibc 2.34+ x86-64

clingo_funasp-6.0.0.post13-cp314-cp314-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.14Windows x86-64

clingo_funasp-6.0.0.post13-cp314-cp314-manylinux_2_34_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

clingo_funasp-6.0.0.post13-cp314-cp314-manylinux_2_34_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ppc64le

clingo_funasp-6.0.0.post13-cp314-cp314-manylinux_2_34_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

clingo_funasp-6.0.0.post13-cp314-cp314-macosx_14_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

clingo_funasp-6.0.0.post13-cp314-cp314-macosx_14_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

clingo_funasp-6.0.0.post13-cp313-cp313-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.13Windows x86-64

clingo_funasp-6.0.0.post13-cp313-cp313-manylinux_2_34_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

clingo_funasp-6.0.0.post13-cp313-cp313-manylinux_2_34_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ppc64le

clingo_funasp-6.0.0.post13-cp313-cp313-manylinux_2_34_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

clingo_funasp-6.0.0.post13-cp313-cp313-macosx_14_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

clingo_funasp-6.0.0.post13-cp313-cp313-macosx_14_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

clingo_funasp-6.0.0.post13-cp312-cp312-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows x86-64

clingo_funasp-6.0.0.post13-cp312-cp312-manylinux_2_34_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

clingo_funasp-6.0.0.post13-cp312-cp312-manylinux_2_34_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ppc64le

clingo_funasp-6.0.0.post13-cp312-cp312-manylinux_2_34_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

clingo_funasp-6.0.0.post13-cp312-cp312-macosx_14_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

clingo_funasp-6.0.0.post13-cp312-cp312-macosx_14_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

File details

Details for the file clingo_funasp-6.0.0.post13.tar.gz.

File metadata

  • Download URL: clingo_funasp-6.0.0.post13.tar.gz
  • Upload date:
  • Size: 11.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for clingo_funasp-6.0.0.post13.tar.gz
Algorithm Hash digest
SHA256 122dc16a0b0fe74b877ef9fc3fbcd5be3d71e4a1ff5a708440a6846efaad9d13
MD5 70bf3f003e4f7ebcdeca2cef71311bdf
BLAKE2b-256 5c184e595e81a8839ee279f7b96a60bb708286f8527eed0e1c0e73574e9487b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13.tar.gz:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 791ed3b4e794d5d662ccac19d1e308a5bb532aaaa6a00b952d028ea850d9bdb3
MD5 14494dff57669c5f749cd3ef1fbe8340
BLAKE2b-256 9b3327dfcc50c075296cb3dcab7d34951e98f67ae24d1bbe4f9c2b804828f20d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e6899344dc1ce46e9d0b00d8f2a3e364696a055d1e25296759743d6610bbddc5
MD5 2b4926fcb7098a89690e490f863fc1e6
BLAKE2b-256 df688810d9f80c89b91484e76571a5f83aead4ef523e506a7a9f9a20c0da3708

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp314-cp314-win_amd64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d14b4d623ce12e576935ccb355db7feae3b07f19430b7ca33fe96adff6e2515a
MD5 d76ed1a49a4e2977f34c99ee74e4dd45
BLAKE2b-256 4a274abb0d2d740e96e3cbbbab4cf1ef722a05bbe3b3a9c00705d764a4107f61

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp314-cp314-manylinux_2_34_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp314-cp314-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp314-cp314-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 f3ccda3fa186dfd2a4605db817d6655339196d850bc7fbf769d3bbee9caecaf4
MD5 b343ffb2728b743b7912458db3e03cb1
BLAKE2b-256 8a7ce8018023fa64233901bd53481bde9d3fa350f0b89276a2c40f40e3f81bd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp314-cp314-manylinux_2_34_ppc64le.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp314-cp314-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 aa1ef1eb7fb427fa20744e9498b69abf4708076839452a159119f4d0480a5c80
MD5 a31f5e41a839b3d0a16ce9db0f5c3834
BLAKE2b-256 143216a6245cdc94f7db851c1541bd25ef7d9b48a1e61e1ac377179afe88174e

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp314-cp314-manylinux_2_34_aarch64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp314-cp314-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 d2ad7b273006edc7581a48cda9e4ffc90abebff731e568f8f9b248d632158052
MD5 3438190b7f656ffe43a98590d155c45b
BLAKE2b-256 8b03608f6c3a35dd3fed49985245eae3c79fe9f7b906e8c7826f714306c884a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp314-cp314-macosx_14_0_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 bde9690dd1ce21fe3c665fa2f047ce5ecfddcf42b7713d852501e85d446a7069
MD5 fcb58ae8990607f75775d8af50b1b6fa
BLAKE2b-256 cce28abeafc3f00abdfd31fd8dfd9d016ed1c78477c52caf9ecd3ad1ffc18cae

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 914e6021f8752b44b664911dc60f15ab3440fce660bf1d418d84b8a85a191a8c
MD5 eb74f8cae33ae05c8b8c92542baaf298
BLAKE2b-256 831710cb7b863bdc9d730310c34ee4bfc7a8b95d641f843e570a3aaf87b8303b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp313-cp313-win_amd64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5b40158cce00707730f0c387e9c8addfbb8587a941aa02db0f215096ae571a42
MD5 26f6f606d74f94d85db6dddb0e78cf72
BLAKE2b-256 f8e375548b58d62dd75b31662cd42374441df4c68314e4f675476c432d15d37a

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp313-cp313-manylinux_2_34_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp313-cp313-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp313-cp313-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 5d2a01bfe7e4353c30820a451221c5d86c064d7baee2ca523514e735bc006775
MD5 6252852af3234c1437b71ebdd2396f0e
BLAKE2b-256 228402954fa5a5ee32a58e9a16b5b7901888928806ae82b92d06698b221bf5bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp313-cp313-manylinux_2_34_ppc64le.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 f636435cf8783cfe232eabba5e9c63f91288166037d3247f816919e6edc1ad9b
MD5 126aed89d32e94a765be004092dbdc56
BLAKE2b-256 0a183487c24460c7e070adfdc6246f68b6f5855e18e48c09cb47c53585f60d87

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp313-cp313-manylinux_2_34_aarch64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 f8b9bf7446f00b28cabc7ca82f3991a16a29de0b5a978c7553352c0e080c6e13
MD5 f2e9271cd280386b2acc4a73b2caeda1
BLAKE2b-256 22f15d28c4151350998b3a2c2c9dbf05afafb4ea3d10a4d9aeb0994cc195a987

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp313-cp313-macosx_14_0_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 db06e93104a43a3af7550e6f2697fc479cfdb2d1b8b4ddba098ea65c5fccc4ca
MD5 3e429e87adb7c9c8161b4152368869fc
BLAKE2b-256 44f278472e90a2c3c69cc1671c7515e61ceaf83fc6223551a09e35fd183c0100

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef30be23b3c90862b772611cf0787c67d4fd95aa6601fe48329c360f6eee0684
MD5 b4d9b26dead38716a75bdae34ee357d4
BLAKE2b-256 5a83dbc78df745a372be2922a3c0f8c99f18585a27c2b17a9fe55d1c645eb78e

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp312-cp312-win_amd64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 048acd533719f01f0a134c20eb18d3e2538ad2fd0f05b37f6acb3f4628b40560
MD5 e5c17f7f1aaa05ebcb559ab45b59c1cf
BLAKE2b-256 81fc05efb382a37ad412f66ffb988ccd8cf5bf211d7f3bac2f7dc6fa3c413e03

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp312-cp312-manylinux_2_34_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp312-cp312-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp312-cp312-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 ed7aa21b24839f675ff9c1f49f5d31291bb1867ce281c74da71af01454535145
MD5 200fde531ee9dbd24684996c54bfed08
BLAKE2b-256 e844e1f4476ef73ef260b77247adf5feafe840b1fcafb7781441d832562ba77a

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp312-cp312-manylinux_2_34_ppc64le.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 63f9a1ad227dcf4d0142a7d3977764903ed72bc050a6f2c9ec4d5adfa15be6d8
MD5 9e7ef2c1894b73013707091977b94799
BLAKE2b-256 d4e633bdd94f95e6a0c229b8a64a90af4cc3e25a0750aadb7fdb215e5ef92f75

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp312-cp312-manylinux_2_34_aarch64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 ae81d25caee4da30ca50cffdb591c5b105fd1627b450e12156a760dee70cb37b
MD5 0591d06b9e3219e3c887c626d6c6b81d
BLAKE2b-256 dc1a07485a1f64b7b355ac2cce6fec038a733f4510d0c28a7e0067604a2ba96f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp312-cp312-macosx_14_0_x86_64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clingo_funasp-6.0.0.post13-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for clingo_funasp-6.0.0.post13-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c84c2b5a3d9216cb5f4639980fdbfcd7490ef86675392218f4f3bba840002555
MD5 b51a6ab075b92bcb170e5a95adb71f47
BLAKE2b-256 3214b931c538ae3d85e91c8790b79d8286833e22f5f4ba64e82cce762b47502f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clingo_funasp-6.0.0.post13-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: cibw.yml on jorgefandinno/clingo-funasp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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