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.10.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.10.1-cp314-cp314-win_amd64.whl (6.9 MB view details)

Uploaded CPython 3.14Windows x86-64

simcoon-1.10.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.5 MB view details)

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

simcoon-1.10.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.6 MB view details)

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

simcoon-1.10.1-cp314-cp314-macosx_14_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

simcoon-1.10.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.5 MB view details)

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

simcoon-1.10.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.6 MB view details)

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

simcoon-1.10.1-cp313-cp313-macosx_14_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

simcoon-1.10.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.5 MB view details)

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

simcoon-1.10.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.6 MB view details)

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

simcoon-1.10.1-cp312-cp312-macosx_14_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

simcoon-1.10.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.5 MB view details)

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

simcoon-1.10.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.6 MB view details)

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

simcoon-1.10.1-cp311-cp311-macosx_14_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

simcoon-1.10.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.5 MB view details)

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

simcoon-1.10.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.6 MB view details)

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

simcoon-1.10.1-cp310-cp310-macosx_14_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

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

File metadata

  • Download URL: simcoon-1.10.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.10.1.tar.gz
Algorithm Hash digest
SHA256 26cf3167f347ee7e5741db429adf9b517309a71c7aecc063b02368dc24374f41
MD5 b1ca7b0f67796d7d466fd603a2102c04
BLAKE2b-256 487e2b0244d2d71a2a98ee3e8452375f1c9b24841e4c951f41b6f748dc68192b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.10.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.10.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5322f032aa6df9e5cb76ad9bdc55788c5a874b8eb5399207676df128aeeb6688
MD5 bf864a1f9b008146cdb9e9a566030f35
BLAKE2b-256 b982611e72bac8b504f821e3c773c88a39fc6c28f4bf649bf5a924cdbb7f3e22

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34205f95c3f517cbf885a3ef0e230f8d5fe18a9820bc7dd34bb9d3d527eb792d
MD5 f82248f4f43c1445dc76c3528adf3494
BLAKE2b-256 f04426b17f916f8ea5255efdf4698dda1b99d53ac989d66473052ccb15521909

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14130d52a947137a8da2f82e1f98ef5addf35ae550b1e1b8958a00bdd8330871
MD5 29af44f9e302d72383e632360c4b66ad
BLAKE2b-256 0b3f5e4541cc9cb63c5f764ff570c2b041dc943dbc2920ca575ccbacf574fcfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 460c8598b47c3b4fa60e282a1cc503ec811adfcb2aa911fc5fcd315327762000
MD5 e2168a7ad1b6836c24d95370d01b9303
BLAKE2b-256 dd1999e7e5f3cf2a6a1ad127c6cf7acbc0767a86fba32945beea0c9fef5cd1c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.1-cp314-cp314-macosx_14_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.10.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.10.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.10.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fc57ab4d2291635d3ee87834eef36c221fa1f03f2ec7fcc67914a1300e876b9d
MD5 4a76d6b12411e782dd6cde8e8c98a022
BLAKE2b-256 e21ea02e394c8c3840cd58d39d1a00dfe2234a89e60e6115c526bbcd465d56cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9da047b4ba26204b71ae0fb9cce18cae4c4d936f5e686a35cc11a36e3f072b4
MD5 c9c44d985c9bf85ba5dbb2da3f2418e0
BLAKE2b-256 8acf5d3ae0bd918fbe918d2c3b050c14999ae8a1614443070548014c56a59efc

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ae06d6bd637ac09e4885f7ae019785cb9e764274a7636bbe6c063294d008dc2
MD5 b18421760e906c4efb6c45ccb6f16424
BLAKE2b-256 a65a80a35a9e486181f88903dfc634bf307daf89e8d51cedd5908edc6d7dd532

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0225b789f8a5d7de3b9883703a0161725d3d70799af57fc7173a9c80ee35734c
MD5 a27610e16d0e11a99a19f60426577d61
BLAKE2b-256 161a93f400a6c15d5772cdaddd01a0a0520eaa5c9d31013cb2b38ce3cd746c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.1-cp313-cp313-macosx_14_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.10.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.10.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.10.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dfdbb162ef60b18d794796429688b95893d7f23c0eaadb167560befaf8f7fd54
MD5 6e33d57e483395d797c3cb5bc4fc26ad
BLAKE2b-256 6c5cca8f1f9aa28ccf95ffa08eb89c8e4de6ee633d69a5415938c5f3a919b84c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 517fb40b9f8f4442515bd032579462e9e36125540ad37581a436db5f97f2d006
MD5 10f5a89b0e48b183a0aa9b69cff30fee
BLAKE2b-256 8a7437b35ff6448653cc5788ddced976a13863563d03c6af971ca432491ce4ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53beb512b6988895a95b20763de4eb10585de8c420887ff910f3eb662ef1afd0
MD5 742b7937a3697b21d51bbee457be8a3e
BLAKE2b-256 df1ccc226f5de7dd8a6f92e9b3f78efd4d6e1e2c7605ac20df141b758a58efb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f0f4e1c686c75c3653ef41f463e4245d0aa96ab3ca10bbc72ae2dcec9b6a0739
MD5 8510c31b07613210776301fa32976bc6
BLAKE2b-256 ead841e4a714af6527f3c0bd4eacc155a50f420457906a83afb0ecbe21ccaca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.1-cp312-cp312-macosx_14_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.10.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.10.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.10.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 de406ec644ff97809130c82e9458ca1a22a0680504eb5344a6e0e84618e1c0b0
MD5 7b962d01e64b9eabd79b58070c25793c
BLAKE2b-256 f8b7354480c35ade586abc5c3d76df003f1e993b0782fc6004303c00970be758

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0388c3a0a10302f183613c0f7e304ff4a66764bf1a6853562f4f47b4904d5a25
MD5 d8de345de938afc67a2a3e319edb258e
BLAKE2b-256 eebb1f49e33b444934708cba4810337f39b44f0fb6431396c46a15187718cd05

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4cc2c726c9623b763166548e41b0c1fb503b5ffe9e9a589e8004a19c2cdf106c
MD5 e457ee7fb2b42e078c676ab27ec68204
BLAKE2b-256 31b97dbf03ae034c4550779b55ec7bb2c2c9fa00851f085c2653919f31a092c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 163919af90d32d4211deadae5bd8d1cf3a643f6383decded6f5f958e8658ad14
MD5 653f9909ae3d59af7fe4412b55203686
BLAKE2b-256 538fe65dedcb33117024d1b18f594a3113084d508f3b8c0751667185af4c9f62

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.1-cp311-cp311-macosx_14_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.10.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.10.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.10.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a27635ca1dae9917f771ee495ff10f60a780d2b2ada16af6e91988fb6a23173c
MD5 dc3db7b06565455ea0fc14bbf603641f
BLAKE2b-256 f922d18ea255fa578fed1cea6533b827e0c99033a305b89b2d09d9f0940377f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16262c0955528ce5e365acea952ad848e49344ca08f2e922cc9a7785e30d047a
MD5 a930f6d838badcd859ff5e6802836c2c
BLAKE2b-256 4d43c830a5a8db6bc32d564e5cfbebd4660593c216664711d00b4c0e8f185857

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2bbd638fb97a592dad561d44ef9a3653cc4eb1878803c3a5f69c20e221de12dd
MD5 f65ada60118c5e17ccfe13613bd7af35
BLAKE2b-256 fb31a11dba4eefc215256aa0412b330029b840da31d3dede8bce546ee197e95f

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.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.10.1-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3af551c500a59a4b785677c222497a1270e42fb6fc69fcac77878a022e4ceec2
MD5 c11addfb920538219d425ab8da6e4d44
BLAKE2b-256 5c65e4d5c8255736fe486a230aa1ae7670fa4df27e193ad48f64fa764b292285

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.1-cp310-cp310-macosx_14_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