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

Uploaded CPython 3.14Windows x86-64

simcoon-1.10.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.7 MB view details)

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

simcoon-1.10.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.7 MB view details)

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

simcoon-1.10.0-cp314-cp314-macosx_15_0_arm64.whl (15.5 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

simcoon-1.10.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.7 MB view details)

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

simcoon-1.10.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.7 MB view details)

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

simcoon-1.10.0-cp313-cp313-macosx_15_0_arm64.whl (15.5 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

simcoon-1.10.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.7 MB view details)

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

simcoon-1.10.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.7 MB view details)

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

simcoon-1.10.0-cp312-cp312-macosx_15_0_arm64.whl (15.5 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

simcoon-1.10.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.7 MB view details)

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

simcoon-1.10.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.7 MB view details)

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

simcoon-1.10.0-cp311-cp311-macosx_15_0_arm64.whl (15.5 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

simcoon-1.10.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (22.7 MB view details)

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

simcoon-1.10.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (13.7 MB view details)

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

simcoon-1.10.0-cp310-cp310-macosx_15_0_arm64.whl (15.5 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: simcoon-1.10.0.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.0.tar.gz
Algorithm Hash digest
SHA256 369eb9bb4594ac9d62d65f24b8d2d3efd84eef37c60c17745d58b47ef3e463c6
MD5 34ef9a6c279f804c9a4bef26c4e6a4a9
BLAKE2b-256 bfea99a2f97b448679410417095f4e4424f6409153298dd442cae25af69cca37

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: simcoon-1.10.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 54c3777a31a76aabcb76d32b145058c183b580c8738c1b93213e2c8a11381792
MD5 7f096d0e1188d6fedf443e15ed47f40d
BLAKE2b-256 829465cb27051e135ce28cfdf969bae8b6ae3c61e598b578819b25eb83b4a372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.10.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9287852c48df711dd4d10cce30429e4962eb48dbed02cf2eea74426497a0e983
MD5 dd552e2dbca927829c446055e8dae7a1
BLAKE2b-256 0055fd9eebd1293be1869cd6ef3811688a750644e6f1ae84fcc347f4042b3590

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.10.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5d2674931fd6d2852c01c3252eea83e3bb5fdc33c8a6d63b1acf10406d3f9e6
MD5 f529bcfbcb71b34127a76aaad25e1564
BLAKE2b-256 69be94109cd2d10f0ebe3eb19b66c445311f054943808c6e9d181e8bcad90193

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.0-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.0-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 684b7a9038df678bb6dddc955a040d92f491ac555a42b4942154605b62c00b90
MD5 33fbb6fba0ea757b6b1fb8e766e0bbc5
BLAKE2b-256 99f3f1517d04e69bd19f6ada281508cac4b71d48858f5c987ee46eb88433d212

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.0-cp314-cp314-macosx_15_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.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.10.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a5fd3fac82a61abf366f4221c7b406681fad97f5b5e47a5680c15a2bd99186c9
MD5 b5f4207c6f3219fe9eb092a194b5ad5d
BLAKE2b-256 70c77e3b773de589ad07766c49e08f57d8e2e565981b94b451eae34065ea2f64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.10.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0857b56e3b4bde0a0365b32b3328679a524bf44c3155c6b3ceabebbd2e5ce3d6
MD5 bc9895f43f316c8e34a95b17eeee2ead
BLAKE2b-256 f2db4ca096f7cbafe95f97f7faedd3bc71127ab40ab5f8e166a12219086e9c06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.10.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1deea346472048010434cd731f24766d4c5ac1954c3d746b5f0a3d1ff7585e0d
MD5 af6b85668476745e35b059eb945d41a4
BLAKE2b-256 e194682dde25b0ad3c6507b01d3d4e32643f4bbc2e2633cefd09a9cc42ddf09c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.0-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.0-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0f36a3b6c05f6763cfbb7c943725758daac14d565da5ba9382c8a5f8a3f3f542
MD5 a71f59afff5be98e22dd0b031607c77a
BLAKE2b-256 edefa9186cdc702a21ddf75ab955a8e0ba1580857cb584a163b917c2ea7f05b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.0-cp313-cp313-macosx_15_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.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.10.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8833c1a93d044a0e5e110bef8e728fa8734075ecd685cafb00d06ab21cd826f4
MD5 3db1a1404632b520cc3f0efd780d8c49
BLAKE2b-256 74800a4264784c5bf71b55f470df5a8020ba6869376de65d1bbca72f4234cd47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.10.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6689d1bc9c2a9d0ae88dc804576fa939ee7375f748f7b77849dcc064bbc189e1
MD5 c168629e1c793f7b81f51b5c3bbb3eab
BLAKE2b-256 d75910efedc4c856c95d17a34cc02900e8990408349682058381e5dc4c2e19a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.10.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b252f5fe1ad8bc645fb9d4e19d6b0ffee504165f689cbc703c20e7c4c236d36
MD5 1a724d056b5a7d283d015db29b8fced6
BLAKE2b-256 0c9201888a606823ff1456b4a47fcdd3a02eef3331148c5cd18d0567da73b5f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.0-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.0-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 fa3091a832efbb22590d526a98f17964b7c5048460fccd1baaffe4e593d811cb
MD5 b2c050a1dc9d1674ac142c87ac56fa30
BLAKE2b-256 2309106f260009f00d02bf9cbd5a22d9832ebc16471247cd2bb634ad16692809

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.0-cp312-cp312-macosx_15_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.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.10.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e892f432b3db51faeb7bca923ad8d9598f63d1be6d1e21a1f1695387936934b7
MD5 72827317c51565565becdea99e3f043b
BLAKE2b-256 9bdd55b6b218854c841cb4a1c3721383b45b39ff3325cb26f18331675c3ab601

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.10.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31cde2ec39f4b66541c6c97d318e8f20bfd825cc1ec44415405c6670c84e5c20
MD5 e0eb830737a7655f0e607ca8906e0087
BLAKE2b-256 727580bef698f5ac2748085659b22a845302f24f70e6cd8234b0309086635a0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.10.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7415220f2bf38f8999edba5d0e2cb1cb7e8c7c4c4b0c4206cdd8c481431fd4a
MD5 30ea35a2a4e24a34eb50c4ae5af903a9
BLAKE2b-256 294eb143906f4606e42f86584c7e311cfb830f7ffcab7d6b4f875314d6d7ad4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.0-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.0-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 929482e54b11e3de6413af319d3a5521dcb4a8aebba901d32da3441c61ef288c
MD5 74f646a2dfb5d2afed0348c714723c6d
BLAKE2b-256 83ade720134426844c92fa3bb437c19b5bb453b5e1d2dea5df47aff37bfe1945

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.0-cp311-cp311-macosx_15_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.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: simcoon-1.10.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4968aef19f1120ad67b43de4d68215c4bc38b2f9e5cd456cadd6644db8ad57f7
MD5 3fe7e36072229d6feda5288a31b2ca51
BLAKE2b-256 65d1007e6b9437c315f091d0141fa2b4617150e8dbaf8e64d6477ab65dfac412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.10.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 379994a227c6ae217dc92161b112283a6e754a01734b6854836542d645b8ac13
MD5 9dbed75fbfd9ff2de4888eb17a93f99b
BLAKE2b-256 9e982d1f9301fa224659e6d45f8e4ada8387fc4418d34e4ec09f63edf9ce5b95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for simcoon-1.10.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8c69d2097bcc2d66f24c61dad9593f4315d502e78bb130b407f731664a92215
MD5 6601945d95b8a592e4c8d156e18e60d6
BLAKE2b-256 67bd3f672b8127bf6a8ad7825435f4dd513fc1a371e5c82c888f4d258bd2e246

See more details on using hashes here.

Provenance

The following attestation bundles were made for simcoon-1.10.0-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.0-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for simcoon-1.10.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f2b56ddc44285ee94995316f84d73b5fe1c7f947a1b2f842347f50ecfdf09a10
MD5 b5fbc496b5be17f9448c3f948a2bf7fd
BLAKE2b-256 5707a351039826d4d813ca8dd114cc58a8b9c9cd8f959aa74b7af40b4adec103

See more details on using hashes here.

Provenance

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