tetgen python wrapper for points, PLCs and tetmesh inputs
Project description
tetgenpy
tetgenpy is a python wrapper for Hang Si's TetGen - A Quality Tetrahedral Mesh Generator and a 3D Delaunay Triangulator.
It helps to prepare various types of inputs - points, piecewise linear complexes (PLCs), and tetmesh - for tetrahedron mesh generation based on simple python types, such as list and numpy.ndarray.
Install
pip install tetgenpy
For current development version,
pip install git+https://github.com/tataratat/tetgenpy.git@main
Quick Start
Following is an example for tetrahedralization of a unit cube defined as PLCs.
Alternatively, you could also use tetgenpy.PLC class to prepare TetgenIO.
import tetgenpy
import numpy as np
# tetrahedralize unit cube
# define points
points=[
[0.0, 0.0, 0.0],
[1.0, 0.0, 0.0],
[0.0, 1.0, 0.0],
[1.0, 1.0, 0.0],
[0.0, 0.0, 1.0],
[1.0, 0.0, 1.0],
[0.0, 1.0, 1.0],
[1.0, 1.0, 1.0],
]
# define facets - it can be list of polygons.
# here, they are hexa faces
facets = [
[1, 0, 2, 3],
[0, 1, 5, 4],
[2, 0, 4, 6],
[1, 3, 7, 5],
[3, 2, 6, 7],
[4, 5, 7, 6],
]
# prepare TetgenIO - input for tetgen
tetgen_in = tetgenpy.TetgenIO()
# set points, facets, and facet_markers.
# facet_markers can be useful for setting boundary conditions
tetgen_in.setup_plc(
points=points,
facets=facets,
facet_markers=[[i] for i in range(1, len(facets) + 1)],
)
# tetgen's tetraheralize function with switches
tetgen_out = tetgenpy.tetrahedralize("qa.05", tetgen_in)
# unpack output
print(tetgen_out.points())
print(tetgen_out.tetrahedra())
print(tetgen_out.trifaces())
print(tetgen_out.trifacemarkers())
This package also provides access to tetgen's binary executable. Try:
$ tetgen -h
Working with vedo
vedo natively supports tetgenpy.TetgenIO types starting with version >=2023.5.1.
It is A python module for scientific analysis and visualization of эd objects that can be used to enhance further workflows.
You can find an example (same as above) here or simply try:
pip install vedo
vedo -r tetgen1
Contributing
Write an issue or create a pull request! A simple guideline can be found at CONTRIBUTING.md
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tetgenpy-0.1.0.tar.gz.
File metadata
- Download URL: tetgenpy-0.1.0.tar.gz
- Upload date:
- Size: 1.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
215171caa17ccaeaf7a1c93f4541c8abef7c0efbefbe0ab484caf59fc2b3b8c7
|
|
| MD5 |
096bbf2c502eeb71b9f48888bb8c8323
|
|
| BLAKE2b-256 |
ca42fcbe7cb15b0fe103d93b967f6c16a05baa381c2aa692377b94e0af1d6013
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0.tar.gz:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0.tar.gz -
Subject digest:
215171caa17ccaeaf7a1c93f4541c8abef7c0efbefbe0ab484caf59fc2b3b8c7 - Sigstore transparency entry: 162369067
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 849.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bbba3c31d4f950be2dc14643f79173664030a44c2682ab76fa4a5d4588743aa
|
|
| MD5 |
13499ce728a7aa4aae24c92078493579
|
|
| BLAKE2b-256 |
9506309af3ece4cdb70dc5ac032a7d29d83c59bb8f889ff2250f0c9448087859
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
3bbba3c31d4f950be2dc14643f79173664030a44c2682ab76fa4a5d4588743aa - Sigstore transparency entry: 162369092
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 871.1 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f3581263775d0e9de301a73b02cc1c3480aa03a52acc52c8a750de0a94f0794
|
|
| MD5 |
d305bdc3b1eb92056c9d4de5b433f569
|
|
| BLAKE2b-256 |
4a4e055abee9f8852ff76afe91d1d6175b34f428a884edc8e65f237ed04bd64d
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl -
Subject digest:
0f3581263775d0e9de301a73b02cc1c3480aa03a52acc52c8a750de0a94f0794 - Sigstore transparency entry: 162369105
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 871.2 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95d65bb10513e348b4032398960f8e61125e16ff88308bb96d37d240f3972a64
|
|
| MD5 |
aa9488c307949189f0c2ae5cb94604d2
|
|
| BLAKE2b-256 |
165d76776e2917b924b3023e807cacee4d0ad1dd1ed2386fdd9ad979b790d551
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl -
Subject digest:
95d65bb10513e348b4032398960f8e61125e16ff88308bb96d37d240f3972a64 - Sigstore transparency entry: 162369110
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 864.3 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b435c8b513a648f69c18906871c2fc0855789a423381d6c863a995f39c3f1bbe
|
|
| MD5 |
d635444c367c6eaa6cb0ccd35001d73e
|
|
| BLAKE2b-256 |
d6809996847ee97ecd6a2d88ffcea6e76cdb47e2e933ccffd579ea128a2fd5aa
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp313-cp313-win_amd64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
b435c8b513a648f69c18906871c2fc0855789a423381d6c863a995f39c3f1bbe - Sigstore transparency entry: 162369099
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp313-cp313-win32.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp313-cp313-win32.whl
- Upload date:
- Size: 737.4 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87055ce90293c6e27a1fb1284694742ad4edc47a47adfa1109c6c8f81dd142df
|
|
| MD5 |
4d13e14c104af044be26f0fff7e9aca7
|
|
| BLAKE2b-256 |
810fd6cee25a95644c23ef4978eeb2f37fa2258f6818933f6f2c4443304d6cfa
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp313-cp313-win32.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp313-cp313-win32.whl -
Subject digest:
87055ce90293c6e27a1fb1284694742ad4edc47a47adfa1109c6c8f81dd142df - Sigstore transparency entry: 162369087
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
920735c0e605d67b9fcb86e460fb8934995c67ebdd79da4fa5f748a4530a7839
|
|
| MD5 |
6dc2ae75139a9c69ca94edeb4eb540fd
|
|
| BLAKE2b-256 |
d3cf34cb695c4011789b71bbaff4aa39e189a5e467197d074104b474106f88c1
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
920735c0e605d67b9fcb86e460fb8934995c67ebdd79da4fa5f748a4530a7839 - Sigstore transparency entry: 162369094
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 848.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba0e9f74bfa6fcb189f94c6157d25bbeff8944dbf0df4d60e2a7b6575f989992
|
|
| MD5 |
7040308fa9a2c69452a5366f6f2db106
|
|
| BLAKE2b-256 |
7262df52109533ac6232d378c95ee07f6f94fec8b5714522efc8a4ad6825f573
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
ba0e9f74bfa6fcb189f94c6157d25bbeff8944dbf0df4d60e2a7b6575f989992 - Sigstore transparency entry: 162369116
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 818.6 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e0b9faee1f0d2591fd8351819fe02d92aef14cff17e50a1fa66d605c582a0c8
|
|
| MD5 |
3023032a07926214a9c0f0d82f501577
|
|
| BLAKE2b-256 |
a91fc9e1e1611ce54bea40dd0d315be7abe728515d2f0031905b12b6b53b2b7a
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
0e0b9faee1f0d2591fd8351819fe02d92aef14cff17e50a1fa66d605c582a0c8 - Sigstore transparency entry: 162369086
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 872.8 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef78a94653bef1b835380c5da46a3834c5283a72e28bb7cc2a405ecb664d7e9a
|
|
| MD5 |
714081c2e020ebfcd035c47dfe45b9b3
|
|
| BLAKE2b-256 |
8172eefb13057207d6964fd7dd445b7e4f127700d1594447e8ae87a8c6b20c43
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
ef78a94653bef1b835380c5da46a3834c5283a72e28bb7cc2a405ecb664d7e9a - Sigstore transparency entry: 162369114
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 864.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cca203c1fbb40b37e9ada0f9b91ae14a651acfae3c753afda71662407b23fdf9
|
|
| MD5 |
27cb8335c3e0c74a3f213a9f916c34a8
|
|
| BLAKE2b-256 |
3f218164e705342c1ea81a4b4de5a5d7c669d4e534a9529543394e249809bf7b
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp312-cp312-win_amd64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
cca203c1fbb40b37e9ada0f9b91ae14a651acfae3c753afda71662407b23fdf9 - Sigstore transparency entry: 162369097
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp312-cp312-win32.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp312-cp312-win32.whl
- Upload date:
- Size: 737.3 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06197db49eb4062de36c528c5e725fdccf5b6f04a2d37026d48aed38e184ab3b
|
|
| MD5 |
11942af6f26e418e34ac47efcd8490bd
|
|
| BLAKE2b-256 |
6615d8c2571e41fad2fd38e872c0d0101c1f0d42a424285858f6840c9ac7648a
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp312-cp312-win32.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp312-cp312-win32.whl -
Subject digest:
06197db49eb4062de36c528c5e725fdccf5b6f04a2d37026d48aed38e184ab3b - Sigstore transparency entry: 162369106
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8859804069138c650ace3d9c5484582c0ef577d305ebabb42acda05cb9a9b7bc
|
|
| MD5 |
61e17f58dd4c5542728d20072040603c
|
|
| BLAKE2b-256 |
8d6862a8315811eb544843599bee225bc70c94f5a1b5a7e0ee6cf28cd32eccb1
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
8859804069138c650ace3d9c5484582c0ef577d305ebabb42acda05cb9a9b7bc - Sigstore transparency entry: 162369112
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 848.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b332d4ab664a945221a0a3a6b75bd5f718298493c747353417b70580b9387d77
|
|
| MD5 |
e8eff50f1146f349855208ddbedbee91
|
|
| BLAKE2b-256 |
5f68a4a4e2e31ede51cc425019929f534d6c5c663c234153ebdbcfe194fe4ea3
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
b332d4ab664a945221a0a3a6b75bd5f718298493c747353417b70580b9387d77 - Sigstore transparency entry: 162369120
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 818.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24275ba133402917783dd0e7a8609e685dbff5937cc2412186c47f0f507e747b
|
|
| MD5 |
d08508939954fe55f61c9ab75ffff9f4
|
|
| BLAKE2b-256 |
28d030f89c3703fc41d5c4a56a298c5b667b40a8d55ffce508a732c4edf63b80
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
24275ba133402917783dd0e7a8609e685dbff5937cc2412186c47f0f507e747b - Sigstore transparency entry: 162369074
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 872.8 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
251cedd76f621056675c30633d93494f182e3404115b35b5c385c80ee0366c41
|
|
| MD5 |
4c371729eaf2a81c6488b0ce063048ea
|
|
| BLAKE2b-256 |
5747b4e9666572345e14bd202aff9fc233314ce1417fa6e0204ab55c8f189a3c
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
251cedd76f621056675c30633d93494f182e3404115b35b5c385c80ee0366c41 - Sigstore transparency entry: 162369075
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 864.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42a5f030b2e1ba59572469e375a26fc041f631375c72b7f73b0aa3347487d211
|
|
| MD5 |
9a31d6d0c83bb2652767e0e7aca049bd
|
|
| BLAKE2b-256 |
e1243ab795c3c9068096a81b9c89d382e8821db4c1aad00823e7105e9980e324
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp311-cp311-win_amd64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
42a5f030b2e1ba59572469e375a26fc041f631375c72b7f73b0aa3347487d211 - Sigstore transparency entry: 162369089
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp311-cp311-win32.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp311-cp311-win32.whl
- Upload date:
- Size: 737.0 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b5a0bfe3b654c6b35a44db9a2e774e248ffd966771d7107293a18cf3810ee90
|
|
| MD5 |
0fe18e89be8f0f9b9154a8377b45d411
|
|
| BLAKE2b-256 |
3b6179d60a9061f8ff275ebec083ac56d2bb5c1e56ccfd12d0adeca04ec72a42
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp311-cp311-win32.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp311-cp311-win32.whl -
Subject digest:
0b5a0bfe3b654c6b35a44db9a2e774e248ffd966771d7107293a18cf3810ee90 - Sigstore transparency entry: 162369118
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b25f50c42223b5783a94d26ef3ef6b2bb60de7d119ffcc7fb388c286281cefa6
|
|
| MD5 |
28528f99caa1a75e3a48cf5d9e453716
|
|
| BLAKE2b-256 |
3213d5bff9f379b329cc36b43d7de030497c282203803403a045664e65da8655
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
b25f50c42223b5783a94d26ef3ef6b2bb60de7d119ffcc7fb388c286281cefa6 - Sigstore transparency entry: 162369095
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 850.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91edb7362956ed6122cf172df29c8fd864e98b1fb9df39649c615ae558beaeb1
|
|
| MD5 |
35821816017ad79ca84e35ab15931014
|
|
| BLAKE2b-256 |
cce4a9c336ca4d62af0bb2b0d35c97b5e8eb632a39eb1a37752173257f6007b7
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
91edb7362956ed6122cf172df29c8fd864e98b1fb9df39649c615ae558beaeb1 - Sigstore transparency entry: 162369093
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 818.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87b22d2488fa104fba20f8c4b2f5552a0921006f8af3f8755792b90120d2575d
|
|
| MD5 |
8892bf5ae122911702339ccb86a06386
|
|
| BLAKE2b-256 |
69eab0be3f4dcf59110ef32c7fadacb73fc8d174d0b32fd2081daab53e99f31c
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
87b22d2488fa104fba20f8c4b2f5552a0921006f8af3f8755792b90120d2575d - Sigstore transparency entry: 162369077
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 872.1 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba00b3703839d24b8596c5134e6682204a32244809f0deb961056cc27e4ec756
|
|
| MD5 |
5612ee2219ca81fc123c18ef114da71c
|
|
| BLAKE2b-256 |
7472a37c6da43c05479a6d7f7477d63176a87091b6ba81d2a6d43328210229d6
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
ba00b3703839d24b8596c5134e6682204a32244809f0deb961056cc27e4ec756 - Sigstore transparency entry: 162369108
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 863.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
616598920c66520aa14e6e50dc3d1ee9a30ba7562e445a9fa414e1218ee50a13
|
|
| MD5 |
d0c41d4ef58f060c756198513a6d9f9d
|
|
| BLAKE2b-256 |
353936db1dfd3356f1f8906e780e82882dd70692003fbb71df23d38e23a3981a
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp310-cp310-win_amd64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp310-cp310-win_amd64.whl -
Subject digest:
616598920c66520aa14e6e50dc3d1ee9a30ba7562e445a9fa414e1218ee50a13 - Sigstore transparency entry: 162369088
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp310-cp310-win32.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp310-cp310-win32.whl
- Upload date:
- Size: 735.7 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abcb04b2dc1ba7c7aee601ada4ed2bc41f24117a0c5c9ae8d20047a90c357dd9
|
|
| MD5 |
ea9de837cba8ae285a8f68c578cd093b
|
|
| BLAKE2b-256 |
1f6c58b09daa98da054700743338e8dcba136205f9cedd029c0cf69dffb3c770
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp310-cp310-win32.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp310-cp310-win32.whl -
Subject digest:
abcb04b2dc1ba7c7aee601ada4ed2bc41f24117a0c5c9ae8d20047a90c357dd9 - Sigstore transparency entry: 162369096
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23a13e4ccd23a1bbea29ab466ed0d23e5615a2c3cab137bd714f525d84bb2243
|
|
| MD5 |
14e6d18e68342e3b843208e4c750c5d6
|
|
| BLAKE2b-256 |
6c93c453b33fb0b000457c552da0d62601d3eddc5b9d9097482a5cea6bdff139
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
23a13e4ccd23a1bbea29ab466ed0d23e5615a2c3cab137bd714f525d84bb2243 - Sigstore transparency entry: 162369100
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 849.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
270a0f7bc28b61ec2ac9c841d07fb7f627fb65929d09b8a78e3dbe9ec4ac26ab
|
|
| MD5 |
1f89e837458b23c2e7079eaa93163524
|
|
| BLAKE2b-256 |
8dff979e406d4ec28de34c3948258220c6960050cb54fa9252b5a243b162ad2a
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
270a0f7bc28b61ec2ac9c841d07fb7f627fb65929d09b8a78e3dbe9ec4ac26ab - Sigstore transparency entry: 162369079
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 817.7 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc837a047bebd62fbaab95c7e46756459595abb30a1afbdf1fda216a43185022
|
|
| MD5 |
b18e95d95c54b77f2fc0f38ba8e2e07c
|
|
| BLAKE2b-256 |
c4f14a84fd03a43ba8310024dcb1806570ad121b96ba9d3fcc2f36eaf6108517
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
bc837a047bebd62fbaab95c7e46756459595abb30a1afbdf1fda216a43185022 - Sigstore transparency entry: 162369072
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 870.4 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64f20975a3d89b103f11304627e6d44f7b818f304c6e7d2483fabd16d4ab4cb4
|
|
| MD5 |
9d2636f3b126dd463c3b33ea2abda67f
|
|
| BLAKE2b-256 |
7c6fc8f24b1d60943541ee199557e8deefc4603a06137a2ce29287f4951fe830
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
64f20975a3d89b103f11304627e6d44f7b818f304c6e7d2483fabd16d4ab4cb4 - Sigstore transparency entry: 162369070
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 863.3 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40f2536dfb40dfc7bdf3b5eaa6a3f49c11ebcec2a8b851666a1038a6ae7ac1d9
|
|
| MD5 |
580d16081446d8cc593ecd5be5d1619f
|
|
| BLAKE2b-256 |
56d563c2f5d0859e02997cfe7f1de0363d28c2cb9c523f4d4363787e76b96529
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp39-cp39-win_amd64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp39-cp39-win_amd64.whl -
Subject digest:
40f2536dfb40dfc7bdf3b5eaa6a3f49c11ebcec2a8b851666a1038a6ae7ac1d9 - Sigstore transparency entry: 162369111
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp39-cp39-win32.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp39-cp39-win32.whl
- Upload date:
- Size: 735.9 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
372298dc9d492e077e1500c531d7de53f6f086a3bc9198e945d22992c9002d0d
|
|
| MD5 |
bdfe5f64b91136f3f8d87c5bb7dc7238
|
|
| BLAKE2b-256 |
b8ba261516d475c6f7297dd3f0966deea3b722f1cef834e449297b23be89c127
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp39-cp39-win32.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp39-cp39-win32.whl -
Subject digest:
372298dc9d492e077e1500c531d7de53f6f086a3bc9198e945d22992c9002d0d - Sigstore transparency entry: 162369113
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2975a8a036e68e32c1b9d089518307a82a7e88657511092739a6da708a2fa6b
|
|
| MD5 |
c4354c382dede723d234fe03cb0b07cf
|
|
| BLAKE2b-256 |
66d96fca997a9cd62f85d4d3c283ba45e034f5aa242391ce44d162c1332f6464
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
d2975a8a036e68e32c1b9d089518307a82a7e88657511092739a6da708a2fa6b - Sigstore transparency entry: 162369085
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 849.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee9a9c3a82c59a7c9f43633886dc5be38bbeda284b7507d2ff683bd828bb4b3a
|
|
| MD5 |
40fad876af5167828f7db0fa38b8889a
|
|
| BLAKE2b-256 |
a26cf6b80d1055b93aa2a1a59d0a98da17d1233d3192995340199c46cbe4bf36
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
ee9a9c3a82c59a7c9f43633886dc5be38bbeda284b7507d2ff683bd828bb4b3a - Sigstore transparency entry: 162369083
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 817.8 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e65104a5aa5f76914c1e73d9fae6ce40515a3ebe8a12d0f31d45cca3cdda062
|
|
| MD5 |
8ffcdd4034f7662edef77ab7df205680
|
|
| BLAKE2b-256 |
d4d14283317d8157909d5037cd661a2cb445c7110f00458b5b11d1d3bc4d9e60
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
1e65104a5aa5f76914c1e73d9fae6ce40515a3ebe8a12d0f31d45cca3cdda062 - Sigstore transparency entry: 162369081
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tetgenpy-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: tetgenpy-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 870.5 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44a88a766d3875470c8ddf0ad2aa9752920b176e419774a1e40b112cc007797f
|
|
| MD5 |
4638b738e5756ed19f12f6c37f927d11
|
|
| BLAKE2b-256 |
60b266af31b91ab3e6bf3c2d483b07e747fa7d5a4bdd334e540a845939d4edd6
|
Provenance
The following attestation bundles were made for tetgenpy-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl:
Publisher:
main.yml on tataratat/tetgenpy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tetgenpy-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
44a88a766d3875470c8ddf0ad2aa9752920b176e419774a1e40b112cc007797f - Sigstore transparency entry: 162369090
- Sigstore integration time:
-
Permalink:
tataratat/tetgenpy@a523389993525f03485f56ce7e39bddc2846b885 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tataratat
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@a523389993525f03485f56ce7e39bddc2846b885 -
Trigger Event:
push
-
Statement type: