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.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

triangulumancer-0.1.1-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.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

triangulumancer-0.1.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

triangulumancer-0.1.1-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.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

triangulumancer-0.1.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

triangulumancer-0.1.1-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.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

triangulumancer-0.1.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

triangulumancer-0.1.1-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.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

triangulumancer-0.1.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

triangulumancer-0.1.1-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.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

triangulumancer-0.1.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 639cee75c71166f3f5d27c2653f3b4453fb0faa5bd647956ce6b1f64d2dc40ee
MD5 12cabbb8196d4e1094d83bd49b1864bd
BLAKE2b-256 d4afaf11383eb0dbe79bedf01af8d8fca5ed089231207429344e6101e9ebe5c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 820af3249035f920035b9199ab86185bfd2385028d7a565f024d46f1247ee1c1
MD5 f95cfa32f5fdb979442b91847da1c8ef
BLAKE2b-256 f0a48cccadfd2aea5057b3c3dd6eefb5a04b05eb4f8c9cc010bff681cbb2cdbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d7560acb22ef27481a047909b0cfb697be53e6f6fdea0146e665dada81ab06c
MD5 ff1b4f5470f6e11d73b52298b7d62d08
BLAKE2b-256 73550f2974215729be13e9a12f23ea68eb8d8c4f9573e57c17a2849272770a2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c6995116f5fc70c3d815ef6e92931958372e0a2e76f2762d1ae2299d603f383
MD5 28d8d18931f9fdf6b60ab0b8a038a682
BLAKE2b-256 76f1d6117cd943fa5679782ad13112f1afe13fb5e7a2ab13092a8982975d1d3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-cp313-cp313-manylinux_2_27_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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e7cd64b08caa283b80ee76127fb840d07d4d5390345d8feb6ab3f0012946552
MD5 223f98ca2168a1e73a65dbffa048de38
BLAKE2b-256 24ce36aee296ca70a12d02208822f3716ba7fc545afa109441c71039337255ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdf0df096dae6fc99164a2d70b1714b36dbbddeaa2b803129cc2006b5f536fe0
MD5 8697db7e9c70d2e1f075850a38826fe7
BLAKE2b-256 fc00b3d2f42231e11d5fd0c4bac9b3c678b963c6be37be1dceb0cd4896f70cff

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7de16e788cb2f94c7f2ff13908f4df8a1101c3e56467836384a96143235ade9
MD5 1dba06b5238a8833ea7563a4f792d7f4
BLAKE2b-256 e826d6184b65555bccdcad97e2e1519c8916b4227ce3788577d6de8bf362f908

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 218bc3d022a631ce5a8a2bf79db0343dda79ae5e756203b2b9612834cecb8f17
MD5 79580c64cc7179413ce75f858674f07b
BLAKE2b-256 2a39d37cc0d675e115bd780c562218424dc3613ba70aedf34986dad03797d0e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cdad2fbe12d872ccf50e3af22faa2f9e3d213f882bda76bdb0c7fde855dd99ff
MD5 fd3231b79ce873ba8fb90303c7bec52d
BLAKE2b-256 cc65ea2609248f0ef55d7866f174eea2069fc51cd4d0ae1c547d3b8582c32e78

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-cp312-cp312-manylinux_2_27_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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddf21d423a460189ccff2e97c7c71de132df0f1e1c70f102b6404fdb01bde611
MD5 9f448008c2890d9a692e0ac5479942d8
BLAKE2b-256 40df649fdb8aae44c85814d98723b5520f637ba206fad66cbd887a0d60828586

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 713092d741b9bdc531db6dd58ca79511ddb55c3613c72fc31573e7ee80eca2e6
MD5 cb676d3cb6d099ceb3d383bc46a5cda5
BLAKE2b-256 3792ae517a7c89df7f3484be0fa474eccac3aff2d5ec249ba9b5d05466ba69cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0990c2e461e691ce2cf76d5412baecc9f7c0dbbbcb4905f4d2a673deacea2881
MD5 adc7279203a5ecec20874e36b57b1d69
BLAKE2b-256 315eedcdc7986b319ac300ecf7946a763888312510adb21a6dbfb06112267623

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 887219a28a74f52e4681680a261a817c68e8975d3a5cea9b09e7c4cad8321d3d
MD5 6a42c047b03b56752d2c89e786038187
BLAKE2b-256 8f5a3924cd24173bd4d590233229af08b313a5417368419a4f6c1773c2ebe7ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d76bcbf095d8847d0ffa9932d81e2f35055fa9784a5b344cf5c49f8d70515303
MD5 cc08924b21e15b44439eeddbfcc50f05
BLAKE2b-256 fcff7b2dcd4fa29f815b70527677b82e6cdec44123a69b85623a3fdd9dc9cde0

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-cp311-cp311-manylinux_2_27_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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ffb63bb6c0bd21a3ddb6042b2ac8bd0486fc181f26c114b2c1a3fed3b131ab1
MD5 4b9dbc8f6a83df105928dd2bb7eabbd7
BLAKE2b-256 131bb3195b2109dab862039b79b1f042726ea618ab074edb240228ab28e9c57c

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db0c612d7f5c57b6c7df8003a249862bc86dcff408112161b8d5d3e4f7b37ef0
MD5 123e9bdacbb7686bc79f6d83470e21e1
BLAKE2b-256 4d431d6d84e11b38d361835b21b79a3d28b7829b7019eee03503438ec1f807d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56b7b58aa03ea6716ff49d33e38bd7dbc845d0d12410fafa4db232178ad2e11d
MD5 2aea34833cabcd561fb571ae80419149
BLAKE2b-256 b812b4afb9e9332ed9748175a76e6525b1d47d0462cf12dd9594e6ad39b7036b

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f0dc7abf2829378742aa7d515d82ab02953a36268211c27824fe41462f159be
MD5 d739fb96a4fe940f76de4df45ed8b01d
BLAKE2b-256 98c1e41b651d4671161bb43e7d05f2e882b44f2d00d67018ead8669b1400e473

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac527ba5b4c3e314e491a714d7381254e9b495c085055a2c7a0d0ab96e9b4103
MD5 31d23a95ad722f2b0da4747bc2a38b67
BLAKE2b-256 fa1762d702a9cc12eefd15efec628a448476803964993501960d167cf59ecc18

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-cp310-cp310-manylinux_2_27_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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d0786e4422b6127c128e1b8f712ecad60f420a30b212cd67657a6373bdf996d
MD5 a54674a0fb8a77af86958c919d9a2e5d
BLAKE2b-256 1d95c0c4868fbd42619642e9ba5a16535fb4609b369fb1709d430c8084417cb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8da7086285132976f46d280e96fa94fea04a9622ea31b8072fb4992ae4e0c2e9
MD5 c2f7e5731159c7ab18f1ef8a59b2ab51
BLAKE2b-256 e78ebeb7349752e2ddea4a1fd6511d45835df2181f4cf13fc5f9e7e279fb18f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69df1120737a0a91c43cccb96d315df7490ce1808e8b4165e7c2b3b1cb46148b
MD5 89309158175f3f814dd2e8dbfa2857a8
BLAKE2b-256 15a61bca4a2e4bedfc9224155f3c5702110f80ea21d63b89f6f08353be1bc8d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 996f671c496e434bb98c05dabe8dff452fb1f8b5950efb20d4fb1bfdd788911c
MD5 d69893890e03c08c22dd0c39f120125f
BLAKE2b-256 d70c1234be62340687bdd992f6f52cde42c1863ba75dfd2b2e6d19d7dc01ca0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9ae10d9e47eeaaeea504fc25a4872c15ee5af4d9f7d7cabe9df59495cc3d965
MD5 aee110a19056d5d04f1132440e3241be
BLAKE2b-256 75a7128823516f2da1723a30d4ec9e335d5325f09b60dc113870fcc4105dc4f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-cp39-cp39-manylinux_2_27_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.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for triangulumancer-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00baafe66fb900a4d1b2e999954f98122e77a6d2cc9c284c19d16185d7a81371
MD5 32c3d041a1f5273ea9db76d313f7ddd9
BLAKE2b-256 fd0eb0a61843e1be8c81dd876c5b6732e5bc00bf11069a4af91f1cf360e9b998

See more details on using hashes here.

Provenance

The following attestation bundles were made for triangulumancer-0.1.1-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