Skip to main content

Simulation in Mechanics and Materials: Interactive Tools - A library for the simulation of multiphysics systems and heterogeneous materials

Project description

Simcoon

Simcoon Logo

About

Simcoon is a free, open-source library for the simulation of multiphysics systems. Its primarily objective was the developement of constitutive models for the simulation of heterogeneous materials, but now goes beyond with tools to facilitate their full-field simulation. Together with microgen for the CAD and meshing of heterogeneous materials and fedoo our Finite Element solver, we offer a comprehensive simulation set for the in-depth analysis of heterogeneous materials.

Simcoon is developed with the aim to be a high-quality scientific library to facilitate the analysis of the complex, non-linear behavior of systems. It integrates tools to simulate the response of composite material response and thus integrates several algorithms for the analysis of heterogeneous materials.

Simcoon integrates

  • a easy way to handle geometrical non-linearities : Use of Lagrangian measures, Eulerian measures and cumulative strains considering several spins : Jaumann, Green-Naghdi, Xi-Meyers-Bruhns logarithmic. With this last measure, cumulative strain correspond to a logarithmic strain measure and is the standard measure utilized for our constitutive laws.

Simcoon is a C++ library with emphasis on speed and ease-of-use, that offers a python interface to facilitate its use. Its principle focus is to provide tools to facilitate the implementation of up-to-date constitutive model for materials in Finite Element Analysis Packages. This is done by providing a C++ API to generate user material subroutine based on a library of functions. Also, Simconnn provides tools to analyse the behavior of material, considering loading at the material point level. Such tools include a thermomechanical solver, a software to predict effective properties of composites, and a built-in identification software (using a combined genetic-gradient based algorithm)

Simcoon is mainly developed by faculty and researchers from University of Bordeaux and the I2M Laboratory (Institut de d'Ingénierie et de Mécanique). Fruitful contribution came from the LEM3 laboratory in Metz, France, TU Bergakademie Freiberg in Germany and the TIMC-IMAG laboratory in Grenoble, France. It is released under the GNU General Public License: GPL, version 3.

GitHub license

Simcoon make use and therefore include the FTensor library (http://www.wlandry.net/Projects/FTensor) for convenience. FTensor is a library that handle complex tensor computations. FTensor is released under the GNU General Public License: GPL, version 2. You can get it there (but is is already included in simcoon): (https://bitbucket.org/wlandry/ftensor)

Documentation

Provider Status
Documentation Docs

Building doc : requires doxygen, sphinx, breathe

conda install -c conda-forge doxygen -y && pip install sphinx sphinx-rtd-theme breathe
cd doxdocs && make html

open _build/index.html

Installation

Option 1: Install from Conda (Recommended)

The simplest way to install simcoon is directly with conda:

conda install -c conda-forge -c set3mah simcoon

In case of conflicts, create a new conda environment:

conda create --name simcoon_env
conda activate simcoon_env
conda install -c conda-forge -c set3mah simcoon

Option 2: Install from PyPI

pip install simcoon

Prebuilt wheels are available for:

  • Linux (x86_64, aarch64)
  • macOS (arm64, requires macOS 14.0+)
  • Windows (x64)

If no compatible wheel is available (e.g., older macOS versions), pip will attempt to build from source. In this case, install Armadillo (>= 12.6) first — it is the only system dependency not bundled in the wheels.

Using conda (requires --no-build-isolation so CMake can find conda packages):

conda install -c conda-forge armadillo
pip install scikit-build-core pybind11 numpy  # build dependencies
pip install simcoon --no-binary simcoon --no-build-isolation

Using Homebrew (macOS):

brew install armadillo
pip install simcoon --no-binary simcoon

Using apt (Debian/Ubuntu):

sudo apt-get install libarmadillo-dev
pip install simcoon --no-binary simcoon

BLAS and LAPACK are found automatically (Accelerate on macOS, system libraries on Linux).

Option 3: Build from Source

Prerequisites

Create and activate a conda environment:

conda create --name simcoon_build
conda activate simcoon_build

Install required dependencies:

# Compilers and build tools
conda install -c conda-forge cxx-compiler fortran-compiler cmake ninja

# Libraries
conda install -c conda-forge armadillo pybind11 numpy gtest carma

# Python testing
pip install pytest

For x86 architectures, you may also need MKL:

conda install -c conda-forge mkl

Build Instructions (without conda)

  1. Clone or download the repository:
git clone https://github.com/3MAH/simcoon.git
cd simcoon
  1. Install required dependencies using your system's package manager.
  • On Debian/Ubuntu:
sudo apt-get install libarmadillo-dev libgtest-dev ninja-build
  • On macOS with Homebrew:
brew install armadillo googletest
  • On Windows with vcpkg:
vcpkg install armadillo gtest
  1. Configure and build the project:

For Python users (recommended):

pip install .

For C++ development:

# Configure and build
cmake -S . -B build -G Ninja -D CMAKE_BUILD_TYPE=Release
cmake --build build

# Run C++ tests
ctest --test-dir build --output-on-failure

Development Workflow

For active development with both C++ and Python:

# Install build dependencies first
uv pip install scikit-build-core pybind11 numpy

# Editable install (uv applies --no-build-isolation automatically via pyproject.toml)
uv pip install -e .[dev]

# After modifying C++ files, rebuild directly
cmake --build build/cp*

# Python changes take effect immediately (no rebuild needed)

The editable install creates a build directory at build/{wheel_tag} (e.g., build/cp312-cp312-linux_x86_64). The [tool.uv] config in pyproject.toml disables build isolation for simcoon, ensuring the CMake cache references your actual Python environment, enabling direct cmake --build commands for incremental rebuilds.

Auto-rebuild on import: Importing simcoon will automatically trigger a cmake rebuild if C++ files have changed:

python -c "import simcoon"  # Rebuilds if needed
uv run python -c "import simcoon"  # Also works

Note: If you add new C++ source files, re-run uv pip install -e .[dev] to reconfigure.

Build Options

  • SIMCOON_BUILD_TESTS (default: ON) - Build C++ tests (CMake only)

Notes for macOS

For numpy versions earlier than 1.26.4 using the Accelerate framework:

pip install cython
pip install --no-binary :all: numpy

Authors

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

simcoon-1.11.1.tar.gz (4.6 MB view details)

Uploaded Source

Built Distributions

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

simcoon-1.11.1-cp314-cp314-win_amd64.whl (6.9 MB view details)

Uploaded CPython 3.14Windows x86-64

simcoon-1.11.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.4 MB view details)

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

simcoon-1.11.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.5 MB view details)

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

simcoon-1.11.1-cp314-cp314-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

simcoon-1.11.1-cp313-cp313-win_amd64.whl (6.8 MB view details)

Uploaded CPython 3.13Windows x86-64

simcoon-1.11.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.4 MB view details)

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

simcoon-1.11.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.5 MB view details)

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

simcoon-1.11.1-cp313-cp313-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

simcoon-1.11.1-cp312-cp312-win_amd64.whl (6.8 MB view details)

Uploaded CPython 3.12Windows x86-64

simcoon-1.11.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.4 MB view details)

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

simcoon-1.11.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.5 MB view details)

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

simcoon-1.11.1-cp312-cp312-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

simcoon-1.11.1-cp311-cp311-win_amd64.whl (6.8 MB view details)

Uploaded CPython 3.11Windows x86-64

simcoon-1.11.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.4 MB view details)

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

simcoon-1.11.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.5 MB view details)

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

simcoon-1.11.1-cp311-cp311-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

simcoon-1.11.1-cp310-cp310-win_amd64.whl (6.8 MB view details)

Uploaded CPython 3.10Windows x86-64

simcoon-1.11.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.4 MB view details)

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

simcoon-1.11.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.5 MB view details)

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

simcoon-1.11.1-cp310-cp310-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file simcoon-1.11.1.tar.gz.

File metadata

  • Download URL: simcoon-1.11.1.tar.gz
  • Upload date:
  • Size: 4.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simcoon-1.11.1.tar.gz
Algorithm Hash digest
SHA256 7937aa006975e7b2e390939cecdfe7e8d940ae8adcc66e522a5622a1cc2c2389
MD5 f9f7ab92c6dc972fdabdb505d1dc48f6
BLAKE2b-256 df277ed99b8fa51a672bb4435cd020484e917e70491d2b34096ec5f287bb63d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1.tar.gz:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.11.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simcoon-1.11.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d5dc7a68ea2fa54db35ce9b2c6c9cb739e4d34e862ed2704ced2da1bd2562705
MD5 2b635d68d961d982085876c7bc5b15bf
BLAKE2b-256 0bd02f8cf34f07f344a99e4adce7dea84c2767f4c8ab45ce1f3be1ee520270e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6deb208f84641cc4e914937c6fa219fc9807e7bd2e028b3b6cd99223f3b39048
MD5 1b99d47483dc3fe4fab0c09e70cfbca4
BLAKE2b-256 313ba1089ca64cef365c2c30a7c75bdc58a44a62406626d8fbe2a2abbc9d8f56

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e3522d1915b4b8a8af19eb8c1013bf2ed5e31ae6ac1806486d28c6e643ac3dd
MD5 92c37bc0aae1e1a7f393656c54d98c52
BLAKE2b-256 ff6186ddee951912bfae88eb40d7cbfa40993216bfb344c4753101fb425611e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e567c56480a4b7b409360449f07d8b9222b423f6715854280f5a494c663e8685
MD5 2d4acb74640afabd68d17d0e60289be5
BLAKE2b-256 85adee5be87ea1c83f8c34153a45bcc154338237ca0c4c4cc2e6a65f1db2a1c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.11.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simcoon-1.11.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dfd689d7755315be9fa704a544ab53ed4cb71271380bdd3c225e78cec3917614
MD5 acf8326a9fc0493005de40e102e8c563
BLAKE2b-256 b2dfe3821479e53c6fb9dcf5349aeabd21cf7f6587d664a93a191421b784ea71

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b96b7501c428be130912a2b02c082406f163781fb0746d840f8348f31db148a
MD5 514a259f1c774288aab5e6bc9c6ae805
BLAKE2b-256 e5e3ffcb9dad36c8f1f44bc69d98eea490d5afe75abd884edc70cdbb9163b175

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46afcb1819730e4d0dead7f3d6f5bf63a03fee0b7853099377cdec5f83432593
MD5 c5192169875300472e880368fc049b6f
BLAKE2b-256 021e68e4ccdba69688527073980d0e2ec8ae7aed555304d873c91c90bcd87c22

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 241dec279a4d4aba371f5e7a05a54d534bc4d71d3273e533c10a8d6013111c55
MD5 8726d86d74b797941ed2d344972ffba1
BLAKE2b-256 6b1911e7c9f03b4da0b70ad4fd523e918536c73cfa7952f1776dfe126deaedf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.11.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simcoon-1.11.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 33c9e91583d985dfb5e2bcbae8038cfd84885d9f9b4b03951c59ef489855e62e
MD5 3d1a951d7bdb75e3fd6f903aeea6e815
BLAKE2b-256 3d17d2b7bf3957a4653cf6a292ad765ad093ab420e7b8c8f5bcd19e33f9b78bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5743d2493711a047ec02d06ee7cf59096beb6265a925c7e6c80e0017caf19118
MD5 bb47c5922a4d0fb7f3f37efeb05981f5
BLAKE2b-256 d2bda0517befb8cc9f13a00866fa7c8f938211c99a8932db47407bf2db3a8181

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21fe81ffcb2a751605555ef4309b617681c8c7f08826dfe7a06ae6d078982120
MD5 0f96bd36dac2264e937bd21c018d13d1
BLAKE2b-256 7ad1a9824e97012660af109fed2639bd6865521baee508fc28d6c4cc13e0f2b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22f255c2d2573c35c9d76f522a9176c5e9f1a7b2559404923bfb22e3deb8e90d
MD5 8b1e9d0f0d01a02b488d7a5773fce207
BLAKE2b-256 07ec4aa257ff56e454be8328f764dbe86c7f8e098722ec35685aade55f9ca7f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.11.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simcoon-1.11.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 07ec59f6c80f9e21e31f77e4b45b8c5b43f05286f5b4caba93209a1459b17cb0
MD5 80714e024451d848d8704fe6c9a9b41e
BLAKE2b-256 5b3e29bc947ea55b5e3376eea34cd60ee4f2212315b2eb33ffb1cc4c1b82dd45

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab6dfa7c7a1c9009b136c238fa1bab00f4a50ae2e8a12705319797dc8b2f2a73
MD5 45bfb0ac9ec51fb4f0d1627c05666b9f
BLAKE2b-256 d4a46ea88e2b69555370acf29b950779375622122b35a2ff9d2c2d0700ea0da0

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fdf267ab730bc2e98481af3c9d9deba9477268bf5849890f51394965ed3f2d9
MD5 3f7ff7baa6f20a7cd0423f45b20855f8
BLAKE2b-256 7e71fe8c55f9a2217a02a6925d18889d05ab2f3772a8239ab40f62da6fa673c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ea94cac351f4a3e65608c8f07da08c6cc271b3659348eccb72c3c7b05470d20
MD5 4d006fcc0fe00d017050ebb2f7cc7f36
BLAKE2b-256 259f4cd75f0921b6eac73faf6243c6916aa8553ce7885cb7b45e4fed0b91145b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.11.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simcoon-1.11.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0042153718b4fb5712b51e104f6c742159b30ffbe85e277a826eb0cfad160007
MD5 783db7f60a725d344029d81f871a6470
BLAKE2b-256 2ecb5aa5f804faebb20f8081f0032caee4132c1cb460425d2df745ffb0e358c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9c8ced1bb131849502d5b9891e848f7409ac9529d979c309d8263a5df6c685d
MD5 8753e0b1fdbdebc668615b0437dbbd83
BLAKE2b-256 36da315544e56d552f59f6542c51f11dd1e2b9f891e4ec343bd085970ee4f804

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dcd21ec9e59233f1096431b771ccf0678ff468992c8014585f5e95a97d8aea9c
MD5 495e13db895c4428d92ade5ac7a3234d
BLAKE2b-256 701ae34662b74e799a1fc65c89c08d43572cb3265d017ce0b698f7bdb41e7503

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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

File details

Details for the file simcoon-1.11.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49236b5c2058ad4023f620110381a8e745fd75fe902742c026838927f7f257b1
MD5 8b5cfdeff2ba7a546f0c09b992eb8002
BLAKE2b-256 3a9cd8a84271f3337f7e5557806b1ad79578c743124c380d64a66e531e80bfc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on 3MAH/simcoon

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