Skip to main content

Construct triangulations of point configurations.

Project description

Triangulumancer

Build and test

This project provides tools to construct $n$-dimensional triangulations of point configurations. It uses CGAL's dD Triangulations package to construct Delaunay and regular triangulations with given heights/weights, and it uses TOPCOM to find pulling/pushing triangulations, to find the list of available bistellar flips, and to find the complete list of triangulations of a point configuration.

The functionality and documentation of this project are currently fairly limited. If there is enough interest, I will continue to expand on both functionality and documentation. Please open an issue to ask for more functionality, or even better, make a pull request!

Installation

Triangulumancer can be installed in most cases simply by running

pip install triangulumancer

If you want to tweak compilation parameters or anything else, you can clone the repository and build the wheel yourself.

git clone --recurse-submodules https://github.com/ariostas/triangulumancer.git
cd triangulumancer
pip install .
# You might need to set your LD_LIBRARY_PATH to include extern/topcom/external/lib.

Usage

Here is a basic example that shows the available functionality.

>>> from triangulumancer import PointConfiguration
>>>
>>> p = PointConfiguration(
...     [[0, 0], [1, 0], [1, 1], [0, 1], [-1, 1], [-1, 0], [-1, -1], [0, -1], [1, -1]]
... )
>>> p
A 2-dimensional point configuration with 9 points
>>> t_delaunay = p.delaunay_triangulation()
>>> t_delaunay
A triangulation with 8 simplices of a point configuration with 9 points
>>> t_heights = p.triangulate_with_heights([1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> t_heights
A triangulation with 8 simplices of a point configuration with 9 points
>>> t_weights = p.triangulate_with_weights([1, 2, 3, 4, 5, 6, 7, 8, 9])
A triangulation with 5 simplices of a point configuration with 9 points
>>> t_placing = p.placing_triangulation()
A triangulation with 8 simplices of a point configuration with 9 points
>>> t_placing_neighbors = t_placing.neighbors()
>>> len(t_placing_neighbors)
6
>>> list_t_connected = p.all_connected_triangulations()
>>> len(list_t_connected)
>>> 387
>>> list_t_connected_fine = p.all_connected_triangulations(only_fine=True)
>>> len(list_t_connected_fine)
64
>>> list_t_all = p.all_triangulations()
>>> len(list_t_all)
387
>>> list_t_all_fine = p.all_triangulations(only_fine=True)
>>> len(list_t_all_fine)
64

License

All original triangulumancer code is distributed under the GNU General Public License version 3. The libraries it depends on, which can be found in the extern directory, are redistributed under their corresponding licenses.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

triangulumancer-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

triangulumancer-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

triangulumancer-0.1.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

triangulumancer-0.1.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

triangulumancer-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

triangulumancer-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

triangulumancer-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

triangulumancer-0.1.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

triangulumancer-0.1.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

triangulumancer-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

triangulumancer-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

triangulumancer-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

triangulumancer-0.1.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

triangulumancer-0.1.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

triangulumancer-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

triangulumancer-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

triangulumancer-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

triangulumancer-0.1.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

triangulumancer-0.1.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

triangulumancer-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

triangulumancer-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

triangulumancer-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

triangulumancer-0.1.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

triangulumancer-0.1.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

triangulumancer-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

triangulumancer-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

triangulumancer-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

triangulumancer-0.1.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

triangulumancer-0.1.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

triangulumancer-0.1.2-cp310-cp310-macosx_14_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

triangulumancer-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

triangulumancer-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

triangulumancer-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

triangulumancer-0.1.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

triangulumancer-0.1.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

triangulumancer-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file triangulumancer-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6aa033a100992b1ed9706bd18da1c44e97f1a09fe84fd0262b1f2165d577125
MD5 ebbe8b42e12c442fc56a5e3d3b1053a6
BLAKE2b-256 c5c0f19601ccdeaafa8746790ddc922c6b7508b2deab1c16f256589b9dd5318b

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4860d88ce8345bd6e982f9f804baad42bfd1cd69b21c7b9eb3737b26cc6c43ce
MD5 81bff245f29bc9938d93b93368b0e719
BLAKE2b-256 56b463e7c056889418c90ea60575bad4b2742bdf9a7f3f4da8bf082f93454a3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 627755e1f77ae679c2dffd04b66a680292973478b81916a1e47def48ad2efba0
MD5 8b387b6cf661885b72caff6ead02a3a1
BLAKE2b-256 9d7785ba5120d51fbdf2c916507900c756b6bc95788bbe9071958e53b7514e0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31568eecc3cb3c9b650852ca74c0dedd8f0e2153be4a9b40153a5bdc42c1b8e4
MD5 1a06a7282fd1ba2c53b238fad3d2666c
BLAKE2b-256 44182b03e0cb08d096bec3be3bffe7cc4b78cc6fd948ee468c93258f63f0e414

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5698aa72fc16da9219c8f1529c7dead95b5f5fcb9ea56322f98caee18d6e2b90
MD5 8b7d9b838d980d8481c27df0b8575048
BLAKE2b-256 3cda844259590b3c5612ec0ef9771c0f5e9e3a6a600c3577d6296e86a702ba91

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d00ff6c1c528679d1abbe02fb4764466eee7d50fcfd3c0b293fe88213830beb4
MD5 21e0b8ed27c8df44f3f6d054d6610709
BLAKE2b-256 44c19326d04f42a632efcecf273c284398956b43f6b915b58169da95720385c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2875ff81a2b4aad87827a501569829eb2287982ca0708576bfbdcd8206338ff6
MD5 8ffb08ff4f3ea8a129125151d5d23663
BLAKE2b-256 280d8bef1271ae06e8b565ab6ead7f66a6643b8058aace8869311402da05f5d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46f74d760b85e16ba7f3f86d30f9a0caba98fd73f2b5e0a7959b909b3e01d355
MD5 bfa9d7aa40eea7b2b3c9b0c3ea0a34a3
BLAKE2b-256 06efcd9e600367506cfeb87b6cc8c43cb7619ab6c328789519d490010ca76ada

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 916eb0c5ac21cc802d4fca4748f965984641359b29362ecb57b6589647706dc3
MD5 ca93c4a682e0912c85155727ca8efa90
BLAKE2b-256 c974dce60eb0768eb588184c024f3e76dbae68b8c78ec65aa7a6968b394a9f77

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d356259f26142c1dfdbc8cae08b85739246ceabced2df62f1f8265198b8fd07
MD5 5dc87c1944ec93d8fe039195ebf54ff8
BLAKE2b-256 74beebc55ea2c6554db2dfdd5a99636a886df953d85dfbcef835855fc4eb52b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03f78f5878a362036574159ef42ea1e473af8b294dc23af1b72c9bdf27a10ff7
MD5 3a9725b8fc5ad50ffaace26bf3021494
BLAKE2b-256 dbfef9c25aa5bf3095f5a05acf5552ab9ac9eeb9cc0bbad73a163b7c017c8c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cd7eb3e2b405b386345a861c77dff4e38122b164270a9d5db78b126d91efefe
MD5 812680aa9a8dd42b6af9b407528cc221
BLAKE2b-256 519d5e7faf60de26809ab76629c43ebf25ad116a08e6589c401788f63bbc8427

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90fa26c03364588fba1dfb6734c09623db1e2c2ebb4bd183b0d9fbe4942744c6
MD5 8e33f24601a284acf257f353cae23dc7
BLAKE2b-256 e993166e644f87efbb0a2bdd22f005cb7bcd1ca67c7b106d784b80678e0f745f

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4a2e7b96aacc75f97b95e0924ac997b4bc711cec31dbbca29ba0cf11eb2f01d
MD5 be6789d7332f2c5d6cdfb04069d6cd84
BLAKE2b-256 4037b8f9725e603b4043bf9677b69fccf20117f168cb469b14fba884fce69d3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9eaf731311e285983f885f8bd25e080436cf49d65055065cf177b93ce9d8b29a
MD5 738d6cae4c40db7e59048eae7bc4bbfd
BLAKE2b-256 b5cc61cfbc6ae2db79b330121f6e96a026fe27e8fb7f24b0a9a4171e1bf87f01

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e007a3428203befe836f50461764e8b1fa7f3939747db31775d132af6c98b35
MD5 9e9959a53b074a8799722f7af9b8b475
BLAKE2b-256 ac592e3dd3dfa45b57110fdf3385ad3d52235e046021b9d376d846253c0011db

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ced60fa268474b270f56124bf37f9f59df01313e5a1064a463b3bfcc0b3a8dd9
MD5 788cb341a6201f614b1ff36d08052e9e
BLAKE2b-256 a2cbbaa98a816b5fe6d9e485576e7b362a165c203942c7377a9b532692dbe433

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9860e2d0e14ee2364450b878830354d1f2cd1758909851417bc8e3f84d4ecea3
MD5 eb193bdcfd7804da090b812ffbf6c05f
BLAKE2b-256 df2df217c7a02915f977811b5e5983cd6be36c7692660deb592171fb5d5c8752

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7eb078263975dda623a0cc51561645408f4bc723a64821c594e7a89fa17d7d35
MD5 bdabe1ef04d8c4d7a9a321ccbb1dcc67
BLAKE2b-256 77f98db1f82fb1f08ede9c931754ef08472be9cd3a42d725e732f6fdcf8ca20f

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4b50c4471b6cd09038d05933f9c0b34e1907684fca16e5f2cd42bdfa936d51f
MD5 f962b0c298d51e22217623eb7aa84ece
BLAKE2b-256 1262a476ad2130ab22800ebbc04642a1c6e8df7e2a879ec5fcffc8e10ac307d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88795d0a601f8ddd12eb4fcbcfb1fbad9174fcefdb18689ef166307144355fae
MD5 745bbeb88c7f042e5230141bd370e5fd
BLAKE2b-256 6763ff725501cad3d59fbaacba4091cd9533863af0a4a9432ac704ae9269bb91

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bae4086ea7551cfcc36ce786008e0fb711161033816b5487d59dc54e83b71103
MD5 250a0136dcbce04d8d7d7cd5d6962dc7
BLAKE2b-256 64d20912a4d7ed6c6346479f449b5362a739502c89bf9e96aaee38a1020f3d2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cca7e6308cbdb31daebb3cb4a65b92b9e3dc5dcab2754d28a74aa694d4e464ee
MD5 da02a8d4bf653ba885075d653c8b85af
BLAKE2b-256 6f0b3c06b988625862180d608f4558d3f421e49a485655a1d31dc42fa6677a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8de8ac48ee8ffafcdfcfdb9eda78e3d9a6448e6ebc58bd5ead0d5569a51322f2
MD5 8695b1e225fe4edf34557ee8e8d6211e
BLAKE2b-256 85cc26d1208b4c6d28f12adbb8716322db53b091313533c9059434f5f82f4d30

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72b44e04e98bc4747f2bf79397c0a83bf6ca339e891ffb82ea796c65fa6c4155
MD5 c93987e2146bf2a297655de8efca7e4b
BLAKE2b-256 6678660699e3fbcb3201c6f85d3e8e235012fcf532c8e930421ba4df340575ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a30ed70fc8567f3a9b0a06874c76c5ed6a604a4a517a2fee44e9e891078edd3f
MD5 f055595844542dcf8fea35cdf3bf5803
BLAKE2b-256 41e03017e945869d562edf5e15059669ad0a7da80ba4437a4ac2bdb6e118dca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2fbc2455bedc572f206608d5502a6c70dde0e6a9f000dac38279732134fcd375
MD5 d6ade1cf357c387815002ba6a1ca254e
BLAKE2b-256 6a688a8d22b43fa362b0c08b4daca6a4cbffd63a5460119e62c5196ad77231e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 911474fe25a0b13cd1b3a2116438c9f5dbf24985c03ff2ebcaafa2a784f561da
MD5 e2bedd72004a71f45d4a1ef2287a0b83
BLAKE2b-256 2543b419f6bc76192b6aef3c7f6a90aedd37affa0de2c610f61f5812c66680d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7205ee738afd0c4c518aa5cef6321e77e0f1d616add3544463e7967c7e803c18
MD5 493dabaeb25ae3d36f9c8616badafdc0
BLAKE2b-256 859531d8031c2106e338690a5660435acccd92c59d9bc3c0721c57f2b48aec75

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7f1db3b88abd5a93163fbb79ea808924243196d6033c2fe228cba011d611fe12
MD5 021d28d217a98253e10d8b859905bf3d
BLAKE2b-256 293557894e6c61fd4c4592b45a2c48667464472204f9f5517adb2f19e9e75b42

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32d9f38be978b1c043062216b4405ea13667306647c3f9f0c42e81ee97f23f19
MD5 dd8d44e8ad695f0b10af2cb1d000469f
BLAKE2b-256 5e03c61547cd238f2f77ee42fe9e70f21127cdd9e0f2b7f6518c85c24c11ac9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 083ed6ff9946667c9ff37090a8272c2e1e0294d51ac90ca8f6f3b0f541a13d92
MD5 6e78db98eff804a99fa4e12e1e1d1a07
BLAKE2b-256 fd9f4ecbcbafe9f0844ec76b0b0b4e4097dd0f64aef12e14041a0722974019c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14e0989d68ed52bdfdda8883ef5f0dd21f18ebfb59446229938c767a5b6eda91
MD5 4a3fb837144dbced037dced62d781099
BLAKE2b-256 d8ff7b706184c3be527d6d322e3dc2c5a0662c939f60f3df329da394beafded2

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fb6d76e3fdeaa8f62605d22fd5835d441bf92f2ba71d6085c1fa6a131816fca
MD5 f4b1ed113de3e4a26f9e70806c67916b
BLAKE2b-256 009f1a6a84ac490dc45281964c12f9730484c6376a5698520d166aa2c51b0d1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e11046764a7a441a18b48a821f953bfcad488f81e2631f874ca2f3de9bbe123c
MD5 27d62c95fad57bf71eebf638aee6c5c7
BLAKE2b-256 5cd64ac8e81d0092eebf3d1cedacec0001330f1bdd0c4e37f9e0710165f2f9d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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

File details

Details for the file triangulumancer-0.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7afcf4e2555d55cadeb9d615f3eae0602fd17c7709bce94bbdf92820f927bc01
MD5 2fd57e6f871f85263c778f5895a848ef
BLAKE2b-256 60f800873e3a7e0f176c30d8bb0dda8459257c3b7ab756781bf8dd425222ef29

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: deploy.yml on ariostas/triangulumancer

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