Base tokenizer for phy project extracted from python 3.14 builtin tokenize module
Project description
Consistent Tokenizer Across Python Versions
This project is part of phy.
Overview
This package provides a replacement for Python builtin tokenize module and behaves consistently across active python versions.
The differences of builtin tokenize module among versions includes:
-
Since Python 3.12, new fstring related token types
FSTRING_START,FSTRING_MIDDLE&FSTRING_ENDwere introduced for PEP 701, along with notable performance enhancements. -
Python 3.14 brings new token types
TSTRING_START,TSTRING_MIDDLE&TSTRING_ENDfor new syntax Template String. -
Python's built-in
tokenmodule assigns an integer value to each token type. However, these numeric values are not guaranteed to be stable across Python versions:
| token type | python 3.10 | python 3.11 | python 3.12 | python 3.13 | python 3.14 |
|---|---|---|---|---|---|
| ENDMARKER | 0 | 0 | 0 | 0 | 0 |
| NAME | 1 | 1 | 1 | 1 | 1 |
| NUMBER | 2 | 2 | 2 | 2 | 2 |
| STRING | 3 | 3 | 3 | 3 | 3 |
| NEWLINE | 4 | 4 | 4 | 4 | 4 |
| INDENT | 5 | 5 | 5 | 5 | 5 |
| DEDENT | 6 | 6 | 6 | 6 | 6 |
| LPAR | 7 | 7 | 7 | 7 | 7 |
| RPAR | 8 | 8 | 8 | 8 | 8 |
| LSQB | 9 | 9 | 9 | 9 | 9 |
| RSQB | 10 | 10 | 10 | 10 | 10 |
| COLON | 11 | 11 | 11 | 11 | 11 |
| COMMA | 12 | 12 | 12 | 12 | 12 |
| SEMI | 13 | 13 | 13 | 13 | 13 |
| PLUS | 14 | 14 | 14 | 14 | 14 |
| MINUS | 15 | 15 | 15 | 15 | 15 |
| STAR | 16 | 16 | 16 | 16 | 16 |
| SLASH | 17 | 17 | 17 | 17 | 17 |
| VBAR | 18 | 18 | 18 | 18 | 18 |
| AMPER | 19 | 19 | 19 | 19 | 19 |
| LESS | 20 | 20 | 20 | 20 | 20 |
| GREATER | 21 | 21 | 21 | 21 | 21 |
| EQUAL | 22 | 22 | 22 | 22 | 22 |
| DOT | 23 | 23 | 23 | 23 | 23 |
| PERCENT | 24 | 24 | 24 | 24 | 24 |
| LBRACE | 25 | 25 | 25 | 25 | 25 |
| RBRACE | 26 | 26 | 26 | 26 | 26 |
| EQEQUAL | 27 | 27 | 27 | 27 | 27 |
| NOTEQUAL | 28 | 28 | 28 | 28 | 28 |
| LESSEQUAL | 29 | 29 | 29 | 29 | 29 |
| GREATEREQUAL | 30 | 30 | 30 | 30 | 30 |
| TILDE | 31 | 31 | 31 | 31 | 31 |
| CIRCUMFLEX | 32 | 32 | 32 | 32 | 32 |
| LEFTSHIFT | 33 | 33 | 33 | 33 | 33 |
| RIGHTSHIFT | 34 | 34 | 34 | 34 | 34 |
| DOUBLESTAR | 35 | 35 | 35 | 35 | 35 |
| PLUSEQUAL | 36 | 36 | 36 | 36 | 36 |
| MINEQUAL | 37 | 37 | 37 | 37 | 37 |
| STAREQUAL | 38 | 38 | 38 | 38 | 38 |
| SLASHEQUAL | 39 | 39 | 39 | 39 | 39 |
| PERCENTEQUAL | 40 | 40 | 40 | 40 | 40 |
| AMPEREQUAL | 41 | 41 | 41 | 41 | 41 |
| VBAREQUAL | 42 | 42 | 42 | 42 | 42 |
| CIRCUMFLEXEQUAL | 43 | 43 | 43 | 43 | 43 |
| LEFTSHIFTEQUAL | 44 | 44 | 44 | 44 | 44 |
| RIGHTSHIFTEQUAL | 45 | 45 | 45 | 45 | 45 |
| DOUBLESTAREQUAL | 46 | 46 | 46 | 46 | 46 |
| DOUBLESLASH | 47 | 47 | 47 | 47 | 47 |
| DOUBLESLASHEQUAL | 48 | 48 | 48 | 48 | 48 |
| AT | 49 | 49 | 49 | 49 | 49 |
| ATEQUAL | 50 | 50 | 50 | 50 | 50 |
| RARROW | 51 | 51 | 51 | 51 | 51 |
| ELLIPSIS | 52 | 52 | 52 | 52 | 52 |
| COLONEQUAL | 53 | 53 | 53 | 53 | 53 |
| EXCLAMATION | 54 | 54 | 54 | ||
| OP | 54 | 54 | 55 | 55 | 55 |
| AWAIT | 55 | 55 | 56 | ||
| ASYNC | 56 | 56 | 57 | ||
| TYPE_IGNORE | 57 | 57 | 58 | 56 | 56 |
| TYPE_COMMENT | 58 | 58 | 59 | 57 | 57 |
| SOFT_KEYWORD | 59 | 59 | 60 | 58 | 58 |
| FSTRING_START | 61 | 59 | 59 | ||
| FSTRING_MIDDLE | 62 | 60 | 60 | ||
| FSTRING_END | 63 | 61 | 61 | ||
| TSTRING_START | 62 | ||||
| TSTRING_MIDDLE | 63 | ||||
| TSTRING_END | 64 | ||||
| COMMENT | 61 | 61 | 64 | 62 | 65 |
| NL | 62 | 62 | 65 | 63 | 66 |
| ERRORTOKEN | 60 | 60 | 66 | 64 | 67 |
| N_TOKENS | 64 | 64 | 68 | 66 | 69 |
| NT_OFFSET | 256 | 256 | 256 | 256 | 256 |
This may lead to necessary extra works about token codes alignment if your project relies on consistent numeric token codes across environments.
What this Project Does
This repository extracts the c code related to lexer & tokenize from CPython 3.14 source code (the latest Python version), and build a standalone python package with the same Python API as built-in tokenize module.
Use this package to tokenize python codes will produce the same results, regardless of which version of python interpreter is used.
This package has ZERO dependencies.
Installation
pip install phy-std-base-toknzer
If theres is issue in installing on Windows, refer to build-on-windows to built it by ones own.
How to use
Use this library absolutely the same as builtin tokenize module:
from io import BytesIO, StringIO
import phy_std_base_toknzer
code = '''print(f"hello world to {greeter}!")\ntemplate=t"input a {name}"\n'''
code_readline = BytesIO(code.encode('utf-8')).readline
code_str_readline = StringIO(code).readline
for _token in phy_std_base_toknzer.tokenize(code_readline):
print(_token)
# or
for _token in phy_std_base_toknzer.generate_tokens(code_str_readline):
print(_token)
The generated token is 5-elements namedTuple inherited from tokenize.TokenInfo, with __repr__
method overwritten since this method is dependent on token module of current python version.
The generated token type int value (the first element) should be interpreted with 3.14 token type
tables, as provided by std_base_toknzer.tok_def submodule.
Build
This library use scikit-build-core and
uv to build; cmake is a dependency of scikit-build-core.
uv build
build on Windows
If you use visual c++ as compiler to build this package, to avoid error "The C compiler identification is unknown", it is better to use Command Prompt for VS app to execute the build command.
If error "The C compiler identification is unknown. CMAKE_C_COMPILER could be found" encountered but you have Visual C++ installed, try to install the component Desktop development with C++.
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 phy_std_base_toknzer-0.1.17.tar.gz.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17.tar.gz
- Upload date:
- Size: 38.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f196b2a52271cb03b7b1cb8d00231386505d6469268c49fbb362c6466ad8d881
|
|
| MD5 |
4193cb4321b4237e0529e2a8171e7b52
|
|
| BLAKE2b-256 |
59559e0578bc8da6d11488e2ff9690a6258d15c90a6c5852fff12d7308c8b0f5
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17.tar.gz:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17.tar.gz -
Subject digest:
f196b2a52271cb03b7b1cb8d00231386505d6469268c49fbb362c6466ad8d881 - Sigstore transparency entry: 736742801
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 64.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a68ed380b550bac9e2fecee245262fbb8ada80d18ce990ff353436c2280fb5c
|
|
| MD5 |
1451f238c1a67889971341414b78ab91
|
|
| BLAKE2b-256 |
debc3fd64fbd73797c32ef62897e403b3e155114b25525c8aefe1ccc1a32b318
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
3a68ed380b550bac9e2fecee245262fbb8ada80d18ce990ff353436c2280fb5c - Sigstore transparency entry: 736742859
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 65.2 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60a8435ba77892f120664f81298e07ffe317722634f1f17cc37cb2d61c833b90
|
|
| MD5 |
3d5d41b55dbe3a5db1b832b47cb182c2
|
|
| BLAKE2b-256 |
5da184a763047e977e14e0178780a69bc44e65eeebf528088d3667094110d803
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
60a8435ba77892f120664f81298e07ffe317722634f1f17cc37cb2d61c833b90 - Sigstore transparency entry: 736742915
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 64.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d03991e6600e21d2df43586da5a1a180d90e2b24ffb42ef5275f5b52a09db62e
|
|
| MD5 |
2c11ca28bb8fff6773c11b693e8e1348
|
|
| BLAKE2b-256 |
fef902a44a947ce895b91fcaf745caa8108b06f636cf30a28cd4c2cf43aa1396
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d03991e6600e21d2df43586da5a1a180d90e2b24ffb42ef5275f5b52a09db62e - Sigstore transparency entry: 736742967
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 65.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1738b5ff2edbd2dfc6d026ed42c1df83aff4780f0430747517b8a704883cb0b8
|
|
| MD5 |
32c0182fb9bc5aa3d694855bcca23579
|
|
| BLAKE2b-256 |
88fa981e7f92ec36d2e75bea30b9655eeecc34685a940e991dd0a93026164a99
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
1738b5ff2edbd2dfc6d026ed42c1df83aff4780f0430747517b8a704883cb0b8 - Sigstore transparency entry: 736742904
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 60.9 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fba48d43c432451979ec9088a0c31fba41cac8fd785c09e0b39829c4b8c482f
|
|
| MD5 |
e12769a5a42a7f6a0a6b563c5bc4ac23
|
|
| BLAKE2b-256 |
f63c31d7702114ab153db7a1de96cf7f411ca0334acb088c906a76d3d3112937
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp314-cp314-win_amd64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp314-cp314-win_amd64.whl -
Subject digest:
8fba48d43c432451979ec9088a0c31fba41cac8fd785c09e0b39829c4b8c482f - Sigstore transparency entry: 736742975
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 64.4 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b6dc7d862e18d8070d0fc56f4541887197a447670a219e5bd396c54db41178f
|
|
| MD5 |
08d688492b5fa9d156468458cf519a37
|
|
| BLAKE2b-256 |
c8d8582c5418de6dfca6025bbb78ca86a1eccca16f84a9dd2b201722a0bc5ec0
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
4b6dc7d862e18d8070d0fc56f4541887197a447670a219e5bd396c54db41178f - Sigstore transparency entry: 736742950
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 64.7 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dcc0e1f97fb8c5506ce66223ad5b8d0e1205183c13396c7cad0cc023338031c
|
|
| MD5 |
425dbc541989ca9ff76f34cfc2e978ad
|
|
| BLAKE2b-256 |
d96529e2722860375f52e19f0da8c75e064edeafbff9833fab175ac513f52798
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
8dcc0e1f97fb8c5506ce66223ad5b8d0e1205183c13396c7cad0cc023338031c - Sigstore transparency entry: 736742908
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 64.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45dbfed71eaf3aec5878bf8aacc3b866cad50a0ddfc74ce25d812edd5841d71f
|
|
| MD5 |
d0a80f4a97878fa44608ae8e41344470
|
|
| BLAKE2b-256 |
561b2964ae28b5e9c8c3f713d58b11c1190b9348277f0633f484d656812ebea8
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
45dbfed71eaf3aec5878bf8aacc3b866cad50a0ddfc74ce25d812edd5841d71f - Sigstore transparency entry: 736742874
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 65.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe117856d83a306ac046ca07647ac8e01c164b6e3303af61452477f7bcc700bd
|
|
| MD5 |
7e32f3ca547ec28d0a240f24f6ee9bdf
|
|
| BLAKE2b-256 |
71f38f32e764593c31ef1ec51fbd982fcb62744fce0409ab4b0c920ea2a379ae
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
fe117856d83a306ac046ca07647ac8e01c164b6e3303af61452477f7bcc700bd - Sigstore transparency entry: 736742969
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp314-cp314-macosx_15_0_arm64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp314-cp314-macosx_15_0_arm64.whl
- Upload date:
- Size: 63.2 kB
- Tags: CPython 3.14, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c00d8056462d519219dfe62b612be6b42e603c3800b051133e300c519a5a79d6
|
|
| MD5 |
b4b3805a801c02260232828902f3f8c5
|
|
| BLAKE2b-256 |
15b53485ead1e9091a259ff54bd0a132209b3bbfae7aa27236c117eac2536a98
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp314-cp314-macosx_15_0_arm64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp314-cp314-macosx_15_0_arm64.whl -
Subject digest:
c00d8056462d519219dfe62b612be6b42e603c3800b051133e300c519a5a79d6 - Sigstore transparency entry: 736742842
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 60.3 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e86428a3d3fdcc6c8082747f6d8f5ce6d8aa245d0f75a68b88b1554d661daba
|
|
| MD5 |
bf1d7cce65436fdc45921380c3195f41
|
|
| BLAKE2b-256 |
591ff6974efe27434205574db1932fac1f3276e052a8122989af6e22dbd6d8a6
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp313-cp313-win_amd64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp313-cp313-win_amd64.whl -
Subject digest:
5e86428a3d3fdcc6c8082747f6d8f5ce6d8aa245d0f75a68b88b1554d661daba - Sigstore transparency entry: 736742893
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 64.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2280bc6d2eb1e26da816a8485ce21817074460bc43795db2e7683681e04ce2f
|
|
| MD5 |
967c37ac6a48e947ef1e4da252685f75
|
|
| BLAKE2b-256 |
8fea5486effabc028599fd42ce8ba8fb907971bbde1f22fc5f67e7bd9c6c2670
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
e2280bc6d2eb1e26da816a8485ce21817074460bc43795db2e7683681e04ce2f - Sigstore transparency entry: 736742828
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 64.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c58d3479431c16158aa0283e74ef0c74bee324c7ebe68d26f888c6514f0ff0e
|
|
| MD5 |
4d6ca7b9e589d23fec52e223c48e72a1
|
|
| BLAKE2b-256 |
4ea8eb17ce42303f0fa7a79abba67a7d3bad3a723e068e2ce6328bad95dd10ba
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
4c58d3479431c16158aa0283e74ef0c74bee324c7ebe68d26f888c6514f0ff0e - Sigstore transparency entry: 736742816
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 64.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fca663fa0f720139b244e107bc7b351893f3aa061b679dbfa089a7b9601d3d0
|
|
| MD5 |
fdfd2700f13b4dafbe4cd9129e768491
|
|
| BLAKE2b-256 |
3366a5e92903b90db050d247273a1b4c6ae9be4d0f73ed4c04d86fb643084dac
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
6fca663fa0f720139b244e107bc7b351893f3aa061b679dbfa089a7b9601d3d0 - Sigstore transparency entry: 736742866
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 65.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f66e76e7d6daf7325dcf7ff64caa39294735fcdf9603198391375eb8ef694e87
|
|
| MD5 |
d7af1a30e712e153b516049b1ff87f87
|
|
| BLAKE2b-256 |
c56fa4bdaca999f9f854173b132173ad51f53bd6324e871d04cc435069dc77ae
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
f66e76e7d6daf7325dcf7ff64caa39294735fcdf9603198391375eb8ef694e87 - Sigstore transparency entry: 736742923
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp313-cp313-macosx_15_0_arm64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp313-cp313-macosx_15_0_arm64.whl
- Upload date:
- Size: 63.2 kB
- Tags: CPython 3.13, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd8fd695b9cef31ebf050ca03c2fd87bd831f79118c95f35d2c88bec9ae3b90d
|
|
| MD5 |
01966ebaaf3375f450bed125d190d823
|
|
| BLAKE2b-256 |
0dffdff0f3e3eb81536ab7875c068396c5a0bf9b8f309395e1de62b8eaafd992
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp313-cp313-macosx_15_0_arm64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp313-cp313-macosx_15_0_arm64.whl -
Subject digest:
bd8fd695b9cef31ebf050ca03c2fd87bd831f79118c95f35d2c88bec9ae3b90d - Sigstore transparency entry: 736742849
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 60.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03556dac58d6fe5bffb0adbb312767091c3610af1b15d9fd91a8371242a637cc
|
|
| MD5 |
878be2b875a3942ecfe3c3735c905eac
|
|
| BLAKE2b-256 |
617b9792e73c012046b89d3e7b70cd3c9dfdde7801169f8ab5ad5d128ba06ea9
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp312-cp312-win_amd64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp312-cp312-win_amd64.whl -
Subject digest:
03556dac58d6fe5bffb0adbb312767091c3610af1b15d9fd91a8371242a637cc - Sigstore transparency entry: 736742961
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 64.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2048ec9c9361381b86d1d7c14d230a739a648516011dedf8c6f1477b6144286d
|
|
| MD5 |
ae154d5be7861d877a6ad4375e04984a
|
|
| BLAKE2b-256 |
abf048648dcee853cfe1e1132cd2c8f2bff047e44a4fd96d26d9a21acba64e0c
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
2048ec9c9361381b86d1d7c14d230a739a648516011dedf8c6f1477b6144286d - Sigstore transparency entry: 736742956
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 64.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e978216fead950238d020cb12be7b5df622afb091f14a4bcee85d8a81c26244
|
|
| MD5 |
77500c2c04089294506dfeb732a12ca2
|
|
| BLAKE2b-256 |
5679ddb58fd2d0771554b5d62929ad6fc57bb3c5a5c12714d7549f0e76ab17d9
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
7e978216fead950238d020cb12be7b5df622afb091f14a4bcee85d8a81c26244 - Sigstore transparency entry: 736742847
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 64.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da12465191fb0e4dde2f0c72274d9af8513967e309c2f93ad4f36a1876ba915b
|
|
| MD5 |
efab864c107e4b458031fe9c3a49727b
|
|
| BLAKE2b-256 |
6e46128e101c03c6b8ac46bdb5064b674c4ddd59c24ee0d8eed9e990326a6e23
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
da12465191fb0e4dde2f0c72274d9af8513967e309c2f93ad4f36a1876ba915b - Sigstore transparency entry: 736742885
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 65.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01145edbdec0af988b3214f182fda70560c638a6c314a75466c59e7950d84376
|
|
| MD5 |
28ad4d6823307a45c7edfdfb0943ae4d
|
|
| BLAKE2b-256 |
8e179c8bfcd5f3bd97a7cd8b11565ccb62ed37c590129464a14d599efb751814
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
01145edbdec0af988b3214f182fda70560c638a6c314a75466c59e7950d84376 - Sigstore transparency entry: 736742930
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp312-cp312-macosx_15_0_arm64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp312-cp312-macosx_15_0_arm64.whl
- Upload date:
- Size: 63.2 kB
- Tags: CPython 3.12, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a23c347b95893fcd8b60e966c3a7eb14a4e70ba4daef335374ec225b16f7929
|
|
| MD5 |
c026c0f62dd470ee246fcc96908df043
|
|
| BLAKE2b-256 |
e86c44991ceb8724b5b67dcbad86fc9cc53a07c339b3e34db1033e77995e8311
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp312-cp312-macosx_15_0_arm64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp312-cp312-macosx_15_0_arm64.whl -
Subject digest:
8a23c347b95893fcd8b60e966c3a7eb14a4e70ba4daef335374ec225b16f7929 - Sigstore transparency entry: 736742907
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 60.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe4917ea13e0c00e5d071e1c73c072bd255de0bb5bf4f5c4c3e1d8af3c63249b
|
|
| MD5 |
f561fefeeef32b0c69e59d083b6ee611
|
|
| BLAKE2b-256 |
713d8695a8611e60f61c720a2110b3bd5696b6498cd6aa655854075831280c88
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp311-cp311-win_amd64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp311-cp311-win_amd64.whl -
Subject digest:
fe4917ea13e0c00e5d071e1c73c072bd255de0bb5bf4f5c4c3e1d8af3c63249b - Sigstore transparency entry: 736742898
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 64.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c8428e7f8d0fc8c6131439fa3c83b3dcaa18196a184e91c75fe6037845c3a44
|
|
| MD5 |
420c0d8b911b4e2218b21a7d43ca3e4b
|
|
| BLAKE2b-256 |
8ec63c97803ba3540bbcc7a1c9ecae82ebf0d6f1f6e9d8f0b24467cc6e26e5fb
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
2c8428e7f8d0fc8c6131439fa3c83b3dcaa18196a184e91c75fe6037845c3a44 - Sigstore transparency entry: 736742937
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 64.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5ffc12eec98a7c119f3ddf2c6343de9e4ca15154c5168064ba2078e0b5e0ca3
|
|
| MD5 |
9e5583b1b62d78a068e2de09c0b8a2ef
|
|
| BLAKE2b-256 |
577c7b407e4ba45bbb37c3a0b78d2ecb9b1f25d51bfd91899e489823ad5fa170
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
e5ffc12eec98a7c119f3ddf2c6343de9e4ca15154c5168064ba2078e0b5e0ca3 - Sigstore transparency entry: 736742837
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 64.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6396c95aafa178ef2ad42f3de767761be7c8c50f41ed227f1431267d80e00fd
|
|
| MD5 |
c03901fa115304a03e3fe2fe69af4a69
|
|
| BLAKE2b-256 |
18a9114107c3206813cf7444016e5eb9a5a105b819371d8779903ccf764a4b20
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
a6396c95aafa178ef2ad42f3de767761be7c8c50f41ed227f1431267d80e00fd - Sigstore transparency entry: 736742819
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 64.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
063e273d9560b54ad2a4e88949dd5dca3fd8a3df7d3889f0a622035aff72ab14
|
|
| MD5 |
a88327fb8c4e7c96a7695d07ea77356c
|
|
| BLAKE2b-256 |
ba974c7c26ce7a45891e7cdc380e27dd2b613ef4e09c744c7558f87e536deb6e
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
063e273d9560b54ad2a4e88949dd5dca3fd8a3df7d3889f0a622035aff72ab14 - Sigstore transparency entry: 736742809
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp311-cp311-macosx_15_0_arm64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp311-cp311-macosx_15_0_arm64.whl
- Upload date:
- Size: 63.2 kB
- Tags: CPython 3.11, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34bc6e5206b916e65fd71fe9aba6307e39ddf8a5a248b4cfa79ee1cb17b6b80a
|
|
| MD5 |
939c23e975febe79f9792362c0eced46
|
|
| BLAKE2b-256 |
66ee43ba88a5ce0da5903b4336d9398ee651fbf1fdd24db3574cb7b4bb258932
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp311-cp311-macosx_15_0_arm64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp311-cp311-macosx_15_0_arm64.whl -
Subject digest:
34bc6e5206b916e65fd71fe9aba6307e39ddf8a5a248b4cfa79ee1cb17b6b80a - Sigstore transparency entry: 736742804
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 60.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49182f9322634642dca1be6fd0c223e90ae729b0690cc3d78efced755577181f
|
|
| MD5 |
ef36708aa7569f3f1ee5fa053849c4bc
|
|
| BLAKE2b-256 |
e58924b7961f27d6c516f6320cf19b83695f9c4373604fa479ebf8629440e839
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp310-cp310-win_amd64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp310-cp310-win_amd64.whl -
Subject digest:
49182f9322634642dca1be6fd0c223e90ae729b0690cc3d78efced755577181f - Sigstore transparency entry: 736742856
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 64.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
362ccb574ad07406bff5362c434b40102ad5912e8e4d170978c6d5a0fe69e170
|
|
| MD5 |
28b2a895cb2f43a6a57f9adfd3576d07
|
|
| BLAKE2b-256 |
b49a6e9a968ec4e4f97727997f6439d249fe8c19e622949e5b7c3e2f2ddfd4a1
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
362ccb574ad07406bff5362c434b40102ad5912e8e4d170978c6d5a0fe69e170 - Sigstore transparency entry: 736742978
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 64.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc188ec6e0607a38c880e6a81d0ed165e655cc7c3a4e706bc3aa77610caa59e1
|
|
| MD5 |
be81c70fbff02f9e779c735018a2c0fc
|
|
| BLAKE2b-256 |
64ae1e67534c4ae322216d9d2702e3a3295524e22a8bbeef5d8fc8dee2e44fb9
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
bc188ec6e0607a38c880e6a81d0ed165e655cc7c3a4e706bc3aa77610caa59e1 - Sigstore transparency entry: 736742830
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 64.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62c5531e5ff945399dce4128352c830e58beea2245ebcd3e744db64f237493f3
|
|
| MD5 |
0909fcff13502de30b05eb85c13c6ce8
|
|
| BLAKE2b-256 |
239e9b42215a37ace5e30eb17863573c77c298eb3cedc8705ba98187f8da4cd6
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
62c5531e5ff945399dce4128352c830e58beea2245ebcd3e744db64f237493f3 - Sigstore transparency entry: 736742947
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 64.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d31cf0fc51797588f7e49f19603d1af837dc2e494a6700455385558803fbeee6
|
|
| MD5 |
cda9725826e69637e5fedb998a1691f7
|
|
| BLAKE2b-256 |
907f3f57d8ab8087ad76d024cef0bae1b60b566d12f20641e0f1d7f4960d1d38
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
d31cf0fc51797588f7e49f19603d1af837dc2e494a6700455385558803fbeee6 - Sigstore transparency entry: 736742940
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type:
File details
Details for the file phy_std_base_toknzer-0.1.17-cp310-cp310-macosx_15_0_arm64.whl.
File metadata
- Download URL: phy_std_base_toknzer-0.1.17-cp310-cp310-macosx_15_0_arm64.whl
- Upload date:
- Size: 63.2 kB
- Tags: CPython 3.10, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2797a30901a7b507c273631ccddf882b4c3dc3f886fee782b7905bfa342e6b75
|
|
| MD5 |
4e21091e1c18c8a022ab396ce3e64e0e
|
|
| BLAKE2b-256 |
6fdf52b664aa7aa379a0f60a069edfab18003de349b5ac09ee3a2a4ac29a0c33
|
Provenance
The following attestation bundles were made for phy_std_base_toknzer-0.1.17-cp310-cp310-macosx_15_0_arm64.whl:
Publisher:
cibuildwheel-pypi.yml on phy-precompiler/std-base-toknzer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
phy_std_base_toknzer-0.1.17-cp310-cp310-macosx_15_0_arm64.whl -
Subject digest:
2797a30901a7b507c273631ccddf882b4c3dc3f886fee782b7905bfa342e6b75 - Sigstore transparency entry: 736742879
- Sigstore integration time:
-
Permalink:
phy-precompiler/std-base-toknzer@41d8d56ab1b2abc404903367584e40f519e19f7b -
Branch / Tag:
refs/tags/v0.1.17 - Owner: https://github.com/phy-precompiler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel-pypi.yml@41d8d56ab1b2abc404903367584e40f519e19f7b -
Trigger Event:
release
-
Statement type: