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.2.tar.gz (2.1 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.2-cp314-cp314-win_amd64.whl (6.9 MB view details)

Uploaded CPython 3.14Windows x86-64

simcoon-1.11.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

simcoon-1.11.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

simcoon-1.11.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

simcoon-1.11.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

simcoon-1.11.2-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.2-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.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for simcoon-1.11.2.tar.gz
Algorithm Hash digest
SHA256 28adc71f2f9c62eb05a2fd7901bd89042804da950af94f2ff23b18bafd328e07
MD5 900acc5b1eb3559d84538ddb027965ff
BLAKE2b-256 90dd69abc8c94739517d2b6b5252d7120997782f29437b754e3286feca99d13f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simcoon-1.11.2-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.12

File hashes

Hashes for simcoon-1.11.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a06cbdb9aaa7c774a54b041060eaa0fa1a88a5a263d22067808c8c70250c8835
MD5 d6cf91f64dcd33fb215bfda66e7a2187
BLAKE2b-256 9c91365bb27deeca1240131fd0b3070206838fe8ff7f77e3faec326bfbf63a5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.11.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ee3620a16f8d7b591a352d4c96093afe8d138005932ec545d4841c73b029332
MD5 c616cddbdf21d6c240f8add9a26da8fa
BLAKE2b-256 de2923cb6f65a23f6782803c3b9cb6c25ba61a51252d69cf3dcd5ca55dcdd1d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.11.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c45b884780f2d4eacbe10a824e6cebf2a89586cc15f98c85148d8e32bc81870
MD5 ac5b6055a6403c3d5c3d242af5c4d84c
BLAKE2b-256 f6cc0f6256894946cd3d769d11181f3583615561875fb0df28d6beca97e18349

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 807e6191026d5c9a9d58c800add2b95cf40e8ce892ca6900d31fc975aefd6c32
MD5 5ebcc01f781a45f0cec65da526ad35eb
BLAKE2b-256 18b19c5920cee79149298b197c8f84fb8e9423f79dcc185474d04cfe2e1ba963

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.11.2-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.12

File hashes

Hashes for simcoon-1.11.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 394502b09c84ddd1c187318d7e338418d04ed0b65f648467a21fe7cd3c051972
MD5 ca7840cb91cfd50aeb799d71f1db0a82
BLAKE2b-256 8afc7feb0b2000ad82fa53185a2656a8b37a21451bebd8ddab5783eea81c28bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.11.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b83c48a7e0a9ab8c6e815e62abc1862a6df5e0edf6af9a88276e3a83ac65b52
MD5 f22a933d815fa1745b23e1b67f65258e
BLAKE2b-256 b74fff6e33b43721cad48bd2fa585349d36b84caddd984310297c7205d5c7d38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.11.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 947dd8c38eb3e24cc361db7a92ccdd844042dd578dbf8c766eea6f682f118af4
MD5 8a3905e4ce26ef8d47ae83c8da9a89b4
BLAKE2b-256 21a3eb3c2a12aa9fe0c7d2fbdb0b8f4acd94eac67321b461acee44459ff5d2ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d0204878e7afef723eab0a58520bf9032044d85d69c866300c4c3887485a9e0
MD5 d99dd316ed4d0c9f2da718c4748f82ef
BLAKE2b-256 debcd9b2cf2d99f71012a7ea3573365177b1e22f85a6fa9427b2a4fb97e0b20e

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.11.2-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.12

File hashes

Hashes for simcoon-1.11.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2d522efb162cd97cdaa34e83b1c3de619b816d1cbf56f369fbbe884062404f3a
MD5 411b71e1b438fc9d14adeab6e518312f
BLAKE2b-256 034c1f01c3ab4b7fca39279b0c22394203dfebef196ad4e94610d56cbb2d7a70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.11.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c190569042982d90048dbb7cc0f40d26463c9669c87a03c8e693bede903d004f
MD5 69ccd72bf040a207fbc2c0b6ed1c35bb
BLAKE2b-256 ea67773847a7cf7818b03bb7a398f89e0e2f21cee9505ecaab2f8fdaf4cb5dca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.11.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f94f833f896ba9163348becddba77eba9278d55dd581502691b8af0757dfc5c
MD5 4ec2928895f99c19a103bbdf0abf9342
BLAKE2b-256 385510cd53f44e410f21ab762112c4d66f0df05f793af520641ec353f29af13b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d03c3a152fd9f66263456efa549d3563a97192425310b35feec5540af7bf6b82
MD5 a716ab15883e23ac7b62458a8214bcd4
BLAKE2b-256 9261c8a0aa60e64db76dd4c1e43f431a2ec9e54255f7e617a7103486e081391b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.11.2-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.12

File hashes

Hashes for simcoon-1.11.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40a72cb5e452690d23a9c918b9470065bcf47a4d96ca7fc869fef0957e52fa93
MD5 876c41a4f0ac39822d7f831dbcb45d03
BLAKE2b-256 36ff29acf475805a122cd67bc80f438d068deaa289f292c73b833b84c2784b8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.11.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f00c24a669936d40f1624de5ecd3ca96fb5e3dffee5eec0bc4aa39d31f0bd8bb
MD5 08a083fabbdf9e7a7351b308ff49baf1
BLAKE2b-256 971c8395b7df0f3208c6321ff4a57ea7d328edf94af785cb498c632e40c3f285

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.11.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87eccaf7c9d13cdfa98eaf2f48957924139a86c99ed610bfd286c3df61eb21f5
MD5 6fc65562b924cda752482b5efcf6a8b1
BLAKE2b-256 7a98434574f3aed339e7bde4bf2291f519e5ef4eaf8dfd74f049146e151080d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83cf9bdcc3d304e9120c17ba1d8635bb0e22226e00a4844b93f0f41a34ab4266
MD5 3fefb7f2399b047675b1fe099f3feb3b
BLAKE2b-256 c5b73459bc9c44d1bacf8d160688ab51dd8c4a273efcee89ab68360c392e8fd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.11.2-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.12

File hashes

Hashes for simcoon-1.11.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 49be221a5490a9e6a135c379541a95605f20086c8a1789e008d7ef0cfaa6b3c7
MD5 77ac985ddaaf9f74f7018469a90f1ed7
BLAKE2b-256 37303adc09d8e48b718fa98257ea22a627db574b54505166532ae23b0afdd799

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.11.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ccc8a2fe7979bf45db21306296736a5ad8077886d1dc706aedc05b0d7d72c742
MD5 084609c7d9ab2111f6270cb25e05c5dc
BLAKE2b-256 d3b02eb1fff9896ac597d485f5c24db30e2fbef5609f5a4e29e9dcc12e509d64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.11.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b9add74284b0f4c6b4f21a7a0316129c0793892daf8ab05d23e768827e0822f9
MD5 af139a851ee755baf3895949c0d1eeb1
BLAKE2b-256 aaf1f4f86235786d68f92858444f104592651325e91bc8b3d36f0b7a886ba8ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.11.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.11.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b293c79e8c4fde2c6020a2b3f40d5e0091c341cf7de16a495e64fad7e532382
MD5 4f61e536bdba8889ec60647b675a8696
BLAKE2b-256 5cc0fdbcb66cc1166aaf91e0d862c12c9efd9bf222a76cb10472ac20133437ae

See more details on using hashes here.

Provenance

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