python silk voice library
Project description
pilk-nogil
fork from foyoux/pilk,在编解码过程中释放了GIL,适合多线程处理
python silk codec binding 支持微信语音编解码
pilk: python + silk
关联项目: weixin-wxposed-silk-voice
安装
pip install pilk-nogil
介绍与说明
SILK 是一种语音编码格式,由 Skype 公司研发,网上可找到的最新版本是 2012 发布的。
Tencent 系语音支持来自 silk-v3-decoder
SILK 编码格式 和 Tencent 系语音的关系
此处 Tencent 系语音,仅以微信语音为例
- 标准 SILK 文件以
b'#!SILK_V3'开始,以b'\xFF\xFF'结束,中间为语音数据 - 微信语音文件在标准 SILK 文件的开头插入了
b'\x02',去除了结尾的b'\xFF\xFF',中间不变
已下统称为语音文件
语音数据
语音数据分为很多个独立 frame,每个 frame 开头两字节存储剩余 frame 数据的大小,每个 frame 默认存储 20ms 的音频数据
据此可写出获取 语音文件 持续时间(duration) 的函数(此函数 pilk 中已包含)
从 v0.4.0 起,
get_duration()支持传入str | bytes | bytearray | BinaryIO
def get_duration(silk_path: Union[str, bytes, bytearray, BinaryIO], frame_ms: int = 20) -> int:
"""获取 silk 文件持续时间,单位:ms"""
if isinstance(silk_path, (bytes, bytearray)):
silk_data = silk_path
elif isinstance(silk_path, str):
with open(silk_path, "rb") as f:
silk_data = f.read()
elif hasattr(silk_path, "read"):
silk_data = silk_path.read()
else:
raise TypeError("silk_path must be str, bytes, bytearray, or file-like object")
pos = 0
if len(silk_data) > 0 and silk_data[0:1] == b"\x02":
pos = 10 # len("\x02#!SILK_V3")
else:
pos = 9 # len("#!SILK_V3")
i = 0
while pos + 2 <= len(silk_data):
size = silk_data[pos] + silk_data[pos + 1] * 16
pos += 2 + size
if pos > len(silk_data):
break
i += 1
return i * frame_ms
根据 SILK 格式规范,frame_ms 可为 20, 40, 60, 80, 100
快速入门
详情请在 IDE 中查看 API 文档注释
在使用 pilk 之前,你还需清楚 音频文件 mp3, aac, m4a, flac, wav, ... 与 语音文件 之间的转换是借助 PCM raw
data 完成的
具体转换关系:音频文件 ⇔ PCM ⇔ 语音文件
-
音(视)频文件 ➜ PCM
借助 ffmpeg,你当然需要先有 ffmpeg
ffmpeg -y -i <音(视)频输入文件> -vn -ar <采样率> -ac 1 -f s16le <PCM输出文件>
-y: 可加可不加,表示 <PCM输出文件> 已存在时不询问,直接覆盖-i: 没啥好说的,固定的,后接 <音(视)频输入文件>-vn: 表示不处理视频数据,建议添加,虽然不加也不会处理视频数据(视频数据不存在转PCM的说法),但可能会打印警告-ar: 设置采样率,可选的值是 [8000, 12000, 16000, 24000, 32000, 44100, 48000], 这里你可以直接理解为声音质量-ac: 设置声道数,在这里必须为 1,这是由 SILK 决定的-f: 表示强制转换为指定的格式,一般来说必须为 s16le, 表示16-bit short integer Little-Endian data- example1:
ffmpeg -y -i mv.mp4 -vn -ar 44100 -ac 1 -f s16le mv.pcm - example2:
ffmpeg -y -i music.mp3 -ar 44100 -ac 1 -f s16le music.pcm
-
PCM ➜ 音频文件
ffmpeg -y -f s16le -i <PCM输入文件> -ar <采样率> -ac <声道数> <音频输出文件>
-f: 这里必须为s16le, 同样也是由 SILK 决定的-ar: 同上-ac: 含义同上,值随意<音频输出文件>: 扩展名要准确,没有指定格式时,ffmpeg 会根据给定的输出文件扩展名来判断需要输出的格式- example3:
ffmpeg -y -f s16le -i test.pcm test.mp3
ffmpeg 也可以使用 python ffmpeg binding 替换,推荐 PyAV 大家自行研究,这里不再啰嗦。
讲完了 音频文件 ⇔ PCM,接下来就是用 pilk 进行 PCM ⇔ 语音文件 互转
silk 编码
import pilk_nogil
# pcm_rate 参数必须和 使用 ffmpeg 转 音频 到 PCM 文件时,使用的 `-ar` 参数一致
duration = pilk_nogil.encode("test.pcm", "test.silk", pcm_rate=44100, tencent=True)
print("语音时间为:", duration)
silk 解码
import pilk_nogil
# pcm_rate 参数必须和 使用 ffmpeg 转 音频 到 PCM 文件时,使用的 `-ar` 参数一致
duration = pilk_nogil.decode("test.silk", "test.pcm")
print("语音时间为:", duration)
内存编解码(v0.4.0+)
从 v0.4.0 起,所有编解码 API 支持直接传入内存数据,无需文件路径:
import pilk_nogil
# 读取 silk 文件到内存
with open("test.silk", "rb") as f:
silk_data = f.read()
# 内存中解码为 pcm bytes
pcm_data = pilk_nogil.decode(silk_data, None, pcm_rate=24000)
# 内存中编码 pcm 为 silk bytes
with open("test.pcm", "rb") as f:
pcm_data = f.read()
silk_data = pilk_nogil.encode(pcm_data, None, pcm_rate=24000, tencent=True)
# silk 转 wav bytes
wav_data = pilk_nogil.silk_to_wav(silk_data, None, rate=24000)
# 获取内存中 silk 数据的时长
duration = pilk_nogil.get_duration(silk_data)
支持的参数类型:
- 文件路径:
str - 内存数据:
bytes | bytearray - 文件对象:
BinaryIO(如io.BytesIO)
使用 Python 转任意媒体文件到 SILK
import os, pilk_nogil
from pydub import AudioSegment
def convert_to_silk(media_path: str) -> str:
"""将输入的媒体文件转出为 silk, 并返回silk路径"""
media = AudioSegment.from_file(media_path)
pcm_path = os.path.basename(media_path)
pcm_path = os.path.splitext(pcm_path)[0]
silk_path = pcm_path + '.silk'
pcm_path += '.pcm'
media.export(pcm_path, 's16le', parameters=['-ar', str(media.frame_rate), '-ac', '1']).close()
pilk_nogil.encode(pcm_path, silk_path, pcm_rate=media.frame_rate, tencent=True)
return silk_path
使用 pyav 推荐
import os
import av
import pilk_nogil
def to_pcm(in_path: str) -> tuple[str, int]:
"""任意媒体文件转 pcm"""
out_path = os.path.splitext(in_path)[0] + '.pcm'
with av.open(in_path) as in_container:
in_stream = in_container.streams.audio[0]
sample_rate = in_stream.codec_context.sample_rate
with av.open(out_path, 'w', 's16le') as out_container:
out_stream = out_container.add_stream(
'pcm_s16le',
rate=sample_rate,
layout='mono'
)
try:
for frame in in_container.decode(in_stream):
frame.pts = None
for packet in out_stream.encode(frame):
out_container.mux(packet)
except:
pass
return out_path, sample_rate
def convert_to_silk(media_path: str) -> str:
"""任意媒体文件转 silk, 返回silk路径"""
pcm_path, sample_rate = to_pcm(media_path)
silk_path = os.path.splitext(pcm_path)[0] + '.silk'
pilk_nogil.encode(pcm_path, silk_path, pcm_rate=sample_rate, tencent=True)
os.remove(pcm_path)
return silk_path
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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 pilk_nogil-0.4.2.tar.gz.
File metadata
- Download URL: pilk_nogil-0.4.2.tar.gz
- Upload date:
- Size: 227.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
214eaa1cebdfdbf4878451db797e2a818796eba782d18f438ce72adc647e09e1
|
|
| MD5 |
a8cbc8eb7f27d67a0da3d94fb75dc5b2
|
|
| BLAKE2b-256 |
cb22a2253a8aa86266cc58ec2909f2a9b7a42eb6cc4d347440a032161f8646f9
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2.tar.gz:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2.tar.gz -
Subject digest:
214eaa1cebdfdbf4878451db797e2a818796eba782d18f438ce72adc647e09e1 - Sigstore transparency entry: 1908878990
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-pp311-pypy311_pp73-win_amd64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-pp311-pypy311_pp73-win_amd64.whl
- Upload date:
- Size: 129.6 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cc3b5336e52178864263ce4a91e6ad5ae3262da567961d81e77fe17e4faa744
|
|
| MD5 |
99cfe46c5af25099be280c61d99ea3ab
|
|
| BLAKE2b-256 |
dc1fd6d923abf73f81b8be59530e2f9892988e49fb7efba69d953f5f3ef03448
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-pp311-pypy311_pp73-win_amd64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-pp311-pypy311_pp73-win_amd64.whl -
Subject digest:
3cc3b5336e52178864263ce4a91e6ad5ae3262da567961d81e77fe17e4faa744 - Sigstore transparency entry: 1908883971
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 185.3 kB
- Tags: PyPy, 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
131fa9aab97c6e39382d6dd1880ccae7ffd6092355d417a594434074dd5b27cf
|
|
| MD5 |
da23ffc355066869a0ea82faa91171bb
|
|
| BLAKE2b-256 |
cabe9c45ad23c2ef324d15c21a365fe8fe8d5c44a053a7ac3c94edcd1929ba3e
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
131fa9aab97c6e39382d6dd1880ccae7ffd6092355d417a594434074dd5b27cf - Sigstore transparency entry: 1908880235
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 188.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec4057e575909f1601d7e73d1d7ae1809465aa8f469c7b080dd916cd6e657d68
|
|
| MD5 |
bbc3d3a2bad407c7aac8a98491ed6ab9
|
|
| BLAKE2b-256 |
85d2b25b261eceec0e3363434b301909027aaa1927fd5accca9a9a3bcfab29fd
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
ec4057e575909f1601d7e73d1d7ae1809465aa8f469c7b080dd916cd6e657d68 - Sigstore transparency entry: 1908882507
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 159.0 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
463f124c7b7782ba59f83735894ff75e82d299bcee657ac911cb7c981f7f65be
|
|
| MD5 |
d5f98cf6f5a8a5e6afe7bd972bba04b0
|
|
| BLAKE2b-256 |
61f15f85c717514438315189df7b64544c9250d5966377c878a4b55e458614fb
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl -
Subject digest:
463f124c7b7782ba59f83735894ff75e82d299bcee657ac911cb7c981f7f65be - Sigstore transparency entry: 1908886445
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-win_amd64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-win_amd64.whl
- Upload date:
- Size: 129.9 kB
- Tags: Windows x86-64, graalpy312
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0017c2c88281da2a447cec03cbb1dccbf5b9aafcc85d2c41385bfb8fb6c08d2f
|
|
| MD5 |
d398800c88fa160d7dd18378d4faab18
|
|
| BLAKE2b-256 |
e34e79094c5ebfd9afa899e6ca86af78fe9ae45700b97d99cdc48a7151489cef
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-win_amd64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-win_amd64.whl -
Subject digest:
0017c2c88281da2a447cec03cbb1dccbf5b9aafcc85d2c41385bfb8fb6c08d2f - Sigstore transparency entry: 1908884066
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 187.5 kB
- Tags: graalpy312, 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
065ddd913a9cfb5db055f634a906f521cf2185736e77964c724a42da1d0e9e71
|
|
| MD5 |
a3009c61cd1ee74d375d90355d85a0e1
|
|
| BLAKE2b-256 |
3395f91e3e47c8930066a45958e86636b1528d15154d1092fa489b1ed7036e5b
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
065ddd913a9cfb5db055f634a906f521cf2185736e77964c724a42da1d0e9e71 - Sigstore transparency entry: 1908882861
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 190.3 kB
- Tags: graalpy312, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
290a663ab02791719bb979e958b92d4665f3a858617de7b32b6f35bfb955a056
|
|
| MD5 |
a31698db20dd36f3f1808c4276c5078c
|
|
| BLAKE2b-256 |
dae98cbc179474dd0db24dfa89b7f859dd9eb9d0c3aa46f441a9de61969097db
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
290a663ab02791719bb979e958b92d4665f3a858617de7b32b6f35bfb955a056 - Sigstore transparency entry: 1908885548
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
- Upload date:
- Size: 159.2 kB
- Tags: graalpy312, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
211a6f50b0a40fc85877d647d17ef4da375354f2187cc1509c730c70aa36e232
|
|
| MD5 |
bd2090f7f9118e3196f696b223de52f5
|
|
| BLAKE2b-256 |
6a1858b8e18ac93ad968c2a8c576a25ba37f14708c5d79a5b5e1f0308762fefb
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl -
Subject digest:
211a6f50b0a40fc85877d647d17ef4da375354f2187cc1509c730c70aa36e232 - Sigstore transparency entry: 1908885410
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 127.3 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
232a78d179af7c6a72f21b9336a82d640658a8306f560ae3700887a0e0d0cb97
|
|
| MD5 |
0f5fbfd7e19f4a628dcead3a842428ea
|
|
| BLAKE2b-256 |
71e6c130fb20e9baed800035a45ec17209528314c2ada0f183546d2910192a22
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314t-win_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314t-win_arm64.whl -
Subject digest:
232a78d179af7c6a72f21b9336a82d640658a8306f560ae3700887a0e0d0cb97 - Sigstore transparency entry: 1908881369
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 132.2 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36f1470a1c25f3ed4b3eb8804d634915cbb3015632d3c29b130a72396664c576
|
|
| MD5 |
ff201f72bcadf3abd78591895ea49cb3
|
|
| BLAKE2b-256 |
75a2f854fda6070e4484ddf3130f8f5b842fad0ec3a7073bb31f3cdd9c8c0391
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314t-win_amd64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314t-win_amd64.whl -
Subject digest:
36f1470a1c25f3ed4b3eb8804d634915cbb3015632d3c29b130a72396664c576 - Sigstore transparency entry: 1908886343
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314t-win32.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314t-win32.whl
- Upload date:
- Size: 117.0 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ef1e9034b87f765db6a00d9e25e1b6a163eef09a21f83c6b90bd1069decad97
|
|
| MD5 |
23f15f53af25b325a28971d7a4700cca
|
|
| BLAKE2b-256 |
6980f8700639972bf0b65fb2f0a251275583c7eb179c6ecc20cae7d3954061ea
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314t-win32.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314t-win32.whl -
Subject digest:
8ef1e9034b87f765db6a00d9e25e1b6a163eef09a21f83c6b90bd1069decad97 - Sigstore transparency entry: 1908881802
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 508.2 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
529ff18590b9743e0cf87cf42600101dc649f6d8b3b62b19bc982423916fd1b8
|
|
| MD5 |
f0433e0011ed433ffe09243193579044
|
|
| BLAKE2b-256 |
de15dfb71ec116ae90a80994deb14c0319fd97858d338333417e96ac3bcedda8
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
529ff18590b9743e0cf87cf42600101dc649f6d8b3b62b19bc982423916fd1b8 - Sigstore transparency entry: 1908886242
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 491.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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5797109ff8ecf341a923b4d5253fe71806fbd529e8d2ce88932b738ba4bfd1c0
|
|
| MD5 |
3d0ba853998b8a10497a3d37d9d9ab18
|
|
| BLAKE2b-256 |
fd8e862d36880bb8d752d71d435f2a980837b75f38e68ee5b0770e213fb17724
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
5797109ff8ecf341a923b4d5253fe71806fbd529e8d2ce88932b738ba4bfd1c0 - Sigstore transparency entry: 1908884951
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 512.3 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95e0ddee095dd8a779fcb809a4e46c2d1755a7881ca5183e41bc4a334a56e90c
|
|
| MD5 |
1c60a85027bd487aceacddd4f77e2062
|
|
| BLAKE2b-256 |
1592e6d1e76d3e47ff369da136c154b55f87c1aa0c6a4c1feb0e532eedd5dc6d
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
95e0ddee095dd8a779fcb809a4e46c2d1755a7881ca5183e41bc4a334a56e90c - Sigstore transparency entry: 1908886089
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 496.1 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1050b285945dfff96761e181fdafa04f0bdd41d7121c178a0ea28d7296e5accf
|
|
| MD5 |
1b689b90839a9d49db9661604c5e167a
|
|
| BLAKE2b-256 |
7b093d5c8972e3e79a4dd53ba93bd59c5db1d9ec5b31f4b6467ea9b6bc6b727b
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
1050b285945dfff96761e181fdafa04f0bdd41d7121c178a0ea28d7296e5accf - Sigstore transparency entry: 1908883300
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 164.2 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
296576c11cd7c187179eecb3cb1fbd4aae36034af6832a3f9210054a274f55f9
|
|
| MD5 |
0b72910c4d0941ff780caa895a692528
|
|
| BLAKE2b-256 |
c63d95e645c3c037215676dd51e41c22e79f7dcb2ab989bf50cd3538d11e4383
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
296576c11cd7c187179eecb3cb1fbd4aae36034af6832a3f9210054a274f55f9 - Sigstore transparency entry: 1908885222
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 127.0 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ff1bea5342cb3b6c511c01911f9eea46ce6ee8941a0c0224bd78b5689af4e35
|
|
| MD5 |
02f0468cd171024323774d2efa45de62
|
|
| BLAKE2b-256 |
627a434a85db4bc3c4a7210e48bf315fb131e86068bf2c3758f725daf156903e
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314-win_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314-win_arm64.whl -
Subject digest:
7ff1bea5342cb3b6c511c01911f9eea46ce6ee8941a0c0224bd78b5689af4e35 - Sigstore transparency entry: 1908881156
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 132.0 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3407e58f332969fdf6d3e8bffba3c5ff53220844905db544f4b5fbce6bcf6872
|
|
| MD5 |
6056455e8a310c972d0dedb8ebcb8bf0
|
|
| BLAKE2b-256 |
f171d474008e8526e040262707d2e6261822f75634a65ab5e60fe4e02cab6103
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314-win_amd64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314-win_amd64.whl -
Subject digest:
3407e58f332969fdf6d3e8bffba3c5ff53220844905db544f4b5fbce6bcf6872 - Sigstore transparency entry: 1908879096
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314-win32.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314-win32.whl
- Upload date:
- Size: 116.6 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d2d5724e7c656c2d359d772ee4f01e7607a3ec120756e3b2de4e107d283f7e7
|
|
| MD5 |
68999cbb950143e1239bd9dbefa83fba
|
|
| BLAKE2b-256 |
a890a90c39a693b45e6094f09af8a763bbad3415c2a8d9ae842beb817c745ddc
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314-win32.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314-win32.whl -
Subject digest:
1d2d5724e7c656c2d359d772ee4f01e7607a3ec120756e3b2de4e107d283f7e7 - Sigstore transparency entry: 1908881278
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 502.3 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f2e7da9eed57af56cd1ffe58ee376a777417c9c68ef5c67ef93bddc04b9841a
|
|
| MD5 |
9dc08b943b5415a7b073b97d3d978309
|
|
| BLAKE2b-256 |
2fc777834071517e8a1c6f5cc1fe508849d44adb9b943ddc3f2827de952c049a
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
2f2e7da9eed57af56cd1ffe58ee376a777417c9c68ef5c67ef93bddc04b9841a - Sigstore transparency entry: 1908885148
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 485.4 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5be4dd03661f270ac27f743e711ccba895a85a1f254e7d9ea8868e80b4137ef1
|
|
| MD5 |
33451db140e5f8f526529ce7129d3d50
|
|
| BLAKE2b-256 |
7577be0da0a3a9bf2d995b6e3bfdbf40db5c5487df0cd0a8f2084ff2f62d37f9
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
5be4dd03661f270ac27f743e711ccba895a85a1f254e7d9ea8868e80b4137ef1 - Sigstore transparency entry: 1908881713
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 506.1 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c474cfe6a79dd13abb8d71f1eb2f3c71bd5bd35f7eca7fede41a6106ff006ff
|
|
| MD5 |
fe8f7c899b0350585a60f7292be099f6
|
|
| BLAKE2b-256 |
a9a6f66e45c1225519b8b07ad7b5d3bf50c7d1cb593581dff7609df4eb585a30
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
6c474cfe6a79dd13abb8d71f1eb2f3c71bd5bd35f7eca7fede41a6106ff006ff - Sigstore transparency entry: 1908884298
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 489.2 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c660eb8c14aded097016c55565053893e8ef4048d4147d36897cc70a4d1e9cc7
|
|
| MD5 |
89a4439cb7800ec09e457b7971610b51
|
|
| BLAKE2b-256 |
ab24dd298a7b6a7d86ad3b611ee4337c02a3a97f00f752cb3e0d0bd3918b36c0
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
c660eb8c14aded097016c55565053893e8ef4048d4147d36897cc70a4d1e9cc7 - Sigstore transparency entry: 1908883438
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 163.8 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
627acd2828e63bf7db5e05d029fb09b9c3f33b4fc7308a9a0521e3f388b2a646
|
|
| MD5 |
2508e6bc2c8bc5e7f8c19c147b724b49
|
|
| BLAKE2b-256 |
00dc0836a47cee7160626d948260484fc5565c050c30a0d2a4e3effc47d96148
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
627acd2828e63bf7db5e05d029fb09b9c3f33b4fc7308a9a0521e3f388b2a646 - Sigstore transparency entry: 1908880123
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 123.4 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e5e68eb5d18c377ba1cd62342e9fd998b05d0e1feeb1e7dd772fa35a6b1680d
|
|
| MD5 |
084f18b235091c22ae4eac68d5f25094
|
|
| BLAKE2b-256 |
ce6f939c74bad9b127fccd5db9519e106930b0c5261f67239faa0e91b00880c4
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp313-cp313-win_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp313-cp313-win_arm64.whl -
Subject digest:
7e5e68eb5d18c377ba1cd62342e9fd998b05d0e1feeb1e7dd772fa35a6b1680d - Sigstore transparency entry: 1908881608
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 129.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31a414bcac05f4ffa1fd5b1811e881093b95f131f547c0b5b912909b3c6e523a
|
|
| MD5 |
5c5996dff1cd9ad13e83dd85fd4c2965
|
|
| BLAKE2b-256 |
b5021e3508573e45d3dda9acf5271b4dfc4d9373c041808b70f72934b0a17f84
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp313-cp313-win_amd64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp313-cp313-win_amd64.whl -
Subject digest:
31a414bcac05f4ffa1fd5b1811e881093b95f131f547c0b5b912909b3c6e523a - Sigstore transparency entry: 1908883669
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp313-cp313-win32.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp313-cp313-win32.whl
- Upload date:
- Size: 114.4 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c5abd02a5f551149804d99393167f3da709d7f84eae02d8aa05e3e10540dc87
|
|
| MD5 |
4684ecc9d54bf6319c17427ae80a501b
|
|
| BLAKE2b-256 |
8827057fe0bedb4faee5f3f3b570e747d10afe0d4af40eec8c911a1c8440a3c1
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp313-cp313-win32.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp313-cp313-win32.whl -
Subject digest:
4c5abd02a5f551149804d99393167f3da709d7f84eae02d8aa05e3e10540dc87 - Sigstore transparency entry: 1908882052
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 502.2 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8088b3618145d4383e6e44c4832c7a572755f46d62a307dd8c165a90f863a52
|
|
| MD5 |
6665d0a7e00909be456b1676210d618a
|
|
| BLAKE2b-256 |
6d5c4cd6825be981d31ac16e2a1f5d50145f82a415b6c721f454a5c4b8b31461
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
a8088b3618145d4383e6e44c4832c7a572755f46d62a307dd8c165a90f863a52 - Sigstore transparency entry: 1908880348
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 485.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
464d3594c1a1911f75dce8ffd3793d05e14ffc4d01b8ebae66ccfd1f55795f8b
|
|
| MD5 |
045f3b037012b69ccedd748a96ccc7e4
|
|
| BLAKE2b-256 |
96f38c3960658813b436713e28da46533e7ec152793e7bd71607092dc8302b0e
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
464d3594c1a1911f75dce8ffd3793d05e14ffc4d01b8ebae66ccfd1f55795f8b - Sigstore transparency entry: 1908879203
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 506.0 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f7ad3561610d532188ec964ab096f57ba2fcb116edd7ad99367938c64a635c9
|
|
| MD5 |
0c98b27ad745639319d70928d6226ce3
|
|
| BLAKE2b-256 |
c604e26f72873f6b880c4430613e1da5da47090c2968f685a265e191600c6adc
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
6f7ad3561610d532188ec964ab096f57ba2fcb116edd7ad99367938c64a635c9 - Sigstore transparency entry: 1908886163
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 489.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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f5fbe4aeec113c52386cad9b73e2e6a6395ebe539784226f8efdc9a50b961a7
|
|
| MD5 |
d5a6e4bd2c280ce830f5ff876d9aa46b
|
|
| BLAKE2b-256 |
bb35fe727457ee4fa74b75ff3ff0c823a9490eb5a966ed015fe22a828b66045c
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
6f5fbe4aeec113c52386cad9b73e2e6a6395ebe539784226f8efdc9a50b961a7 - Sigstore transparency entry: 1908881898
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 163.7 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7901c89987843418ae90d14b219bd8c292db59c7ba75cab59e0c9fe3ad0c1d7
|
|
| MD5 |
8501c74db055e620320cdb097f5b1f6d
|
|
| BLAKE2b-256 |
2d71e4d23f39a02730baf423becbb5b67e66b6d9089c0884b5d7b83bbdb679a4
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
e7901c89987843418ae90d14b219bd8c292db59c7ba75cab59e0c9fe3ad0c1d7 - Sigstore transparency entry: 1908882758
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 123.4 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d689dbcef404e7d60aa8520d96a31545e12732641ca405252db3edd28eb939b
|
|
| MD5 |
6529d3457be00301bfa282315b758318
|
|
| BLAKE2b-256 |
a7b60354d7680cdf7caa6ce2e2708994a85f23814d40214f1831db408532595f
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp312-cp312-win_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp312-cp312-win_arm64.whl -
Subject digest:
7d689dbcef404e7d60aa8520d96a31545e12732641ca405252db3edd28eb939b - Sigstore transparency entry: 1908879666
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 129.6 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f46579ac87ff07bd89174bb14b81babca3e4d7f5b0aceadffa3cea3b431f575
|
|
| MD5 |
affb398509feb92d828279abbfce2272
|
|
| BLAKE2b-256 |
0224bb51aac2b4c52e61d6a27c49486be20a9003798453fe5d5df8da177b49ab
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp312-cp312-win_amd64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp312-cp312-win_amd64.whl -
Subject digest:
4f46579ac87ff07bd89174bb14b81babca3e4d7f5b0aceadffa3cea3b431f575 - Sigstore transparency entry: 1908884685
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp312-cp312-win32.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp312-cp312-win32.whl
- Upload date:
- Size: 114.4 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83c0cd9d8aadfdd9e337e756ca6d2c3ed28b0ea999119292a08b1a15dc2b2a08
|
|
| MD5 |
304298d5eec3cb9178a8c0cebafa7c5d
|
|
| BLAKE2b-256 |
2f4780f34bf65f11bc9cd4514c605e862eafc066489b06ba28d8bbe61eeac7ee
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp312-cp312-win32.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp312-cp312-win32.whl -
Subject digest:
83c0cd9d8aadfdd9e337e756ca6d2c3ed28b0ea999119292a08b1a15dc2b2a08 - Sigstore transparency entry: 1908880542
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 502.0 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb329b71323905231d306e514aad37560d90eceb80bb2a23bdfff8af74d78f8c
|
|
| MD5 |
73300bb83b30be48372e0c746b63ab28
|
|
| BLAKE2b-256 |
6c1e653f3c0ef2a3edec3447778fd1669186d5f734067465b3809373d74314db
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
cb329b71323905231d306e514aad37560d90eceb80bb2a23bdfff8af74d78f8c - Sigstore transparency entry: 1908884593
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 484.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ad20e4ecfa4ec627b758fd0fe5cdd98fff38f4293ee09f8b60c64be94090c63
|
|
| MD5 |
07799c94b5720384437eae19fa4e345c
|
|
| BLAKE2b-256 |
a33f341250f687f4fba872844ea60f4edb886326fc7cb08f3377dc87af6d8a69
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
3ad20e4ecfa4ec627b758fd0fe5cdd98fff38f4293ee09f8b60c64be94090c63 - Sigstore transparency entry: 1908884174
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 505.7 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f97c6c679867155929f0691570c759e73a0e8d9231249565d30f71b0b9ec863
|
|
| MD5 |
b1dff8994b201d883ec612a6ca212166
|
|
| BLAKE2b-256 |
4e99422c4a7db72c4de8afd44e753cbed00d21cec822f81cc9bb46163cb2f8e3
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
6f97c6c679867155929f0691570c759e73a0e8d9231249565d30f71b0b9ec863 - Sigstore transparency entry: 1908882437
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 488.6 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21563af18adb98ef04ddf1d4c9d3e2fe4ffa90cecedd77ee3b6e45e663f38150
|
|
| MD5 |
3e1e573f6382dd2092a9ec3ec9d94579
|
|
| BLAKE2b-256 |
26d71c72929872cd534643e3a51bf5cb80603c6be336da5f90548030837eb2ce
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
21563af18adb98ef04ddf1d4c9d3e2fe4ffa90cecedd77ee3b6e45e663f38150 - Sigstore transparency entry: 1908879882
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 163.7 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
545bdd837ca84a4e7e73f2d837b7880270889b7e9a8f6e4726e3df7d52c1c498
|
|
| MD5 |
a32a5bc76736c7b1b80c1ca1ae203d90
|
|
| BLAKE2b-256 |
0d8df03f8c1ee30013f026b02515bc5894c1632871bca974c72efff236fe4c01
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
545bdd837ca84a4e7e73f2d837b7880270889b7e9a8f6e4726e3df7d52c1c498 - Sigstore transparency entry: 1908885927
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 123.4 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
337ee02fee9a54575003c6831ed3f93a70492d3369a70241fa879446a6df3c49
|
|
| MD5 |
3c8e8217b9036dec0cf606e536fcc876
|
|
| BLAKE2b-256 |
a6a40e451302a0bd6c076d0075233d71dc6e2ffae0d3882a4bc2da5b642c3326
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp311-cp311-win_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp311-cp311-win_arm64.whl -
Subject digest:
337ee02fee9a54575003c6831ed3f93a70492d3369a70241fa879446a6df3c49 - Sigstore transparency entry: 1908885031
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 129.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ded6e8ba15f97e7286194ef6149b7a543f186f3376687f61e84f9b849a947de6
|
|
| MD5 |
0a6b59b6cbc6f11df08118f5c9024bc1
|
|
| BLAKE2b-256 |
1bc69294210595ab1089e672e8e4da0336efe669888a19fd9b343e7cbf8b0dd0
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp311-cp311-win_amd64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp311-cp311-win_amd64.whl -
Subject digest:
ded6e8ba15f97e7286194ef6149b7a543f186f3376687f61e84f9b849a947de6 - Sigstore transparency entry: 1908885674
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp311-cp311-win32.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp311-cp311-win32.whl
- Upload date:
- Size: 114.3 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da2dd14a52455fd4694943d77c6fe4b1fd5ebec9af62be9dacfac09eecbe9f8b
|
|
| MD5 |
9c28c2a102cdb2b61684a7a46981fa04
|
|
| BLAKE2b-256 |
8088eb87e09887f41e7f837e58648f8a73b76473932ac43f9f9eb0a5584e8d0b
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp311-cp311-win32.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp311-cp311-win32.whl -
Subject digest:
da2dd14a52455fd4694943d77c6fe4b1fd5ebec9af62be9dacfac09eecbe9f8b - Sigstore transparency entry: 1908879540
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 501.4 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f5f59b868499c007e67e8bee75f8c6625ddb77ca23647b1fcfa39329a59c3a5
|
|
| MD5 |
59802c3c3d25f52ee58de387f67b6bfa
|
|
| BLAKE2b-256 |
672e4c65624d8c8ff9ac8d6b193fc35208efa0164547263c0b60147181a283b5
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
6f5f59b868499c007e67e8bee75f8c6625ddb77ca23647b1fcfa39329a59c3a5 - Sigstore transparency entry: 1908884879
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 484.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9b2db223cd168e33daf7725d784671f614a1bdf9e6c42a74e464253d34eb590
|
|
| MD5 |
832bd48e988061d17fb44db8cd72d9b1
|
|
| BLAKE2b-256 |
e9e562fa4ffcf721aef141678fa3df9343805ed208bf1e76421dd97e7b6f467e
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
d9b2db223cd168e33daf7725d784671f614a1bdf9e6c42a74e464253d34eb590 - Sigstore transparency entry: 1908879393
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 504.7 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e74d0c44c085814b6803e5eb0ee7af075a72405f74d0b39ec9a00e1274cc87b2
|
|
| MD5 |
f65f68218d3e0e3e75b23a31908037aa
|
|
| BLAKE2b-256 |
557e0dcbe3add012243633f0fb7aa263103fd6866415547afad5bdd67edac9e6
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
e74d0c44c085814b6803e5eb0ee7af075a72405f74d0b39ec9a00e1274cc87b2 - Sigstore transparency entry: 1908885289
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 487.8 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4643ae6d2332eaf64696e3306eded2caf9953851b6202c280f248c5f4029f887
|
|
| MD5 |
7bff44ff359f329932bd29703ed02f76
|
|
| BLAKE2b-256 |
c1b62dd9f8d3223932f6beb87de3a32599415594b5be1b52d6c7e2c3e725d866
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
4643ae6d2332eaf64696e3306eded2caf9953851b6202c280f248c5f4029f887 - Sigstore transparency entry: 1908883550
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 163.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae3a3f94ecc1d1f79d454fbb4f227ffa93e0fc8e2ae81c41a4cf2e1241c6b4e9
|
|
| MD5 |
fe5f5466f4d2a2fd260bef12443de011
|
|
| BLAKE2b-256 |
1ab7dba4f6e4f3f438ed1ec692ba0e2be435cc890a12e0d7c5bc1907e719f9e5
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
ae3a3f94ecc1d1f79d454fbb4f227ffa93e0fc8e2ae81c41a4cf2e1241c6b4e9 - Sigstore transparency entry: 1908885864
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 123.4 kB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f772104d1fbdac044c72fd070fb1dd128bf2f3b38eaf6ce9e38238daf801947c
|
|
| MD5 |
b63311952d0871d4b1ec0276121095fa
|
|
| BLAKE2b-256 |
b9f60cb5752ea6a5f0a0b92d9165634000f8b07fcc7389fd4daa01a47507fd3e
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp310-cp310-win_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp310-cp310-win_arm64.whl -
Subject digest:
f772104d1fbdac044c72fd070fb1dd128bf2f3b38eaf6ce9e38238daf801947c - Sigstore transparency entry: 1908882270
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 129.5 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5238dcd85104391cbe0e98d370ecf091c89503c97a433a20e24a2381c72639f6
|
|
| MD5 |
9210fac5fb82724ae4218d6dcd7f309d
|
|
| BLAKE2b-256 |
07d63f08543461651c65a7e5bf5892bf61f5f32ecea78d2a68a4dd81538743d1
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp310-cp310-win_amd64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp310-cp310-win_amd64.whl -
Subject digest:
5238dcd85104391cbe0e98d370ecf091c89503c97a433a20e24a2381c72639f6 - Sigstore transparency entry: 1908886012
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp310-cp310-win32.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp310-cp310-win32.whl
- Upload date:
- Size: 114.3 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71f1faf3d605f2c3b4e207e4fba73e7649d22ae29a3883dfd63c82ace82ecfb9
|
|
| MD5 |
dd203c3cea1541101d4bc1b311e2a7aa
|
|
| BLAKE2b-256 |
ffc95ad0004e72c91ecfd48fc105e58bf26660654d3d762782cc9ac11b96e17a
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp310-cp310-win32.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp310-cp310-win32.whl -
Subject digest:
71f1faf3d605f2c3b4e207e4fba73e7649d22ae29a3883dfd63c82ace82ecfb9 - Sigstore transparency entry: 1908882625
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 497.0 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e966cbb4fb5c6358e6adc14b7bf71c5b1b7a2760f4aaf96a6ae9b47149a03a08
|
|
| MD5 |
d30e4429109050d77a83629ef767ce25
|
|
| BLAKE2b-256 |
a5db351deed51575b273e52306dbb56bdbbe6a4c2105102031e1fb6a9b500405
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
e966cbb4fb5c6358e6adc14b7bf71c5b1b7a2760f4aaf96a6ae9b47149a03a08 - Sigstore transparency entry: 1908880635
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 480.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b31a684739ffb4f89cdb1bca903500d07434448eeac608925213ffca6c1b5e4
|
|
| MD5 |
d9841857455cdba6e653523c832ac024
|
|
| BLAKE2b-256 |
9dd10aadea7b861669131207c325bb7208c21e7f4ef243c5fa1653747dacda87
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
6b31a684739ffb4f89cdb1bca903500d07434448eeac608925213ffca6c1b5e4 - Sigstore transparency entry: 1908880030
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 500.5 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b90a7593d3dd099ab73333fed0c3ca4fc6d5e875ba58f3a0dcb44d7fb9a0980c
|
|
| MD5 |
0a188890340e59891367916b4491808b
|
|
| BLAKE2b-256 |
1b7576ceeb5048a75407784387b7ed603a4e919b1b175b058b29d31ad22e1ad4
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
b90a7593d3dd099ab73333fed0c3ca4fc6d5e875ba58f3a0dcb44d7fb9a0980c - Sigstore transparency entry: 1908881467
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 484.1 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
212560e062a7d4d19e5729a688ac81788d9543e1838f0abc9845f1acd94cae66
|
|
| MD5 |
c278444391f1b3c61d4b49b2f513d9fd
|
|
| BLAKE2b-256 |
a9f328eb3d9f065a5b60e8b4e043c1e0c944ca10250b3e8ec6a770936ddb2696
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
212560e062a7d4d19e5729a688ac81788d9543e1838f0abc9845f1acd94cae66 - Sigstore transparency entry: 1908882143
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 163.7 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad6a8e8c9f416f4a14e8cbf060d988dd18970757dc3d153204165ffd938f5619
|
|
| MD5 |
d3413e20e51e6ee695b2d666669541bb
|
|
| BLAKE2b-256 |
5e5e1f7b6a8ecf83f63e58a3fdeed041ff2d7ddfb1baf54b803ea6963b08f081
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
ad6a8e8c9f416f4a14e8cbf060d988dd18970757dc3d153204165ffd938f5619 - Sigstore transparency entry: 1908879738
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp39-cp39-win_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 123.4 kB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4751751e0d5d132d34158ef6bd7da692525a093f37cac1ebc6fc0a147453d0da
|
|
| MD5 |
3b2db38d7191461849f648fa5308c0d4
|
|
| BLAKE2b-256 |
52303a18ad96cfbbce34f6419775cfb70cc1a5c3aa3b3be76ca02cd4c7fad0b7
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp39-cp39-win_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp39-cp39-win_arm64.whl -
Subject digest:
4751751e0d5d132d34158ef6bd7da692525a093f37cac1ebc6fc0a147453d0da - Sigstore transparency entry: 1908880773
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 129.5 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3069447511970b08e44a3aef15bca36bd1cc49894b2bd2cd319f1aea3a4c6bf3
|
|
| MD5 |
a842f3621c42fe24c74e0941e88c87f7
|
|
| BLAKE2b-256 |
9602a71a378db162660a59c66f42c2e437396d18038fe37b322b919d9a64203c
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp39-cp39-win_amd64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp39-cp39-win_amd64.whl -
Subject digest:
3069447511970b08e44a3aef15bca36bd1cc49894b2bd2cd319f1aea3a4c6bf3 - Sigstore transparency entry: 1908884788
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp39-cp39-win32.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp39-cp39-win32.whl
- Upload date:
- Size: 114.4 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1d17310e47107e321e2ad62e072cda443a6f0f7eca7259bff97d073171994a9
|
|
| MD5 |
2c9353c057f6d6a971bb8c3c31dc7010
|
|
| BLAKE2b-256 |
391dab57c28fbbbd33a2d0b137a6c72ceefdfc484ad48903b1fab2cf731583da
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp39-cp39-win32.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp39-cp39-win32.whl -
Subject digest:
d1d17310e47107e321e2ad62e072cda443a6f0f7eca7259bff97d073171994a9 - Sigstore transparency entry: 1908885792
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 496.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f0180efb1b1921ef537827b61a51a5f1354f4e20e4dd0150dd6420766b47a62
|
|
| MD5 |
0d5484e173866e0f3f3b98865d38d2e2
|
|
| BLAKE2b-256 |
92b491f2d14e189b2415c20ef8df02764234b5d50a16bdd752178c09f2458405
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
2f0180efb1b1921ef537827b61a51a5f1354f4e20e4dd0150dd6420766b47a62 - Sigstore transparency entry: 1908882974
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 479.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49cb0f75e23e170e4864b8f85efe627e16109ef3d17857697501cecc39f1cb2f
|
|
| MD5 |
baf166f5390f1f354c4a83915a7d7eed
|
|
| BLAKE2b-256 |
b333155319a845350ccc44e898d0c71e51cbaaa30d6aee23dfefc824dfbfe707
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
49cb0f75e23e170e4864b8f85efe627e16109ef3d17857697501cecc39f1cb2f - Sigstore transparency entry: 1908883129
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 499.8 kB
- Tags: CPython 3.9, 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.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24cd91f5801cff48dcc270a6ab0c776542ce9d61db6b065e1ad7bce907275b24
|
|
| MD5 |
3c7d03a423b55ae8d70047597c5736da
|
|
| BLAKE2b-256 |
80799ab99fb8bfcb656117aea864f4a10a43530253cb25b113b1603777ed1f70
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
24cd91f5801cff48dcc270a6ab0c776542ce9d61db6b065e1ad7bce907275b24 - Sigstore transparency entry: 1908880973
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 483.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
917a22f33c71b80fb40c90d30fdcc9d416c9e555809003c946cd9aab792d9c01
|
|
| MD5 |
b80af6e37082072296e8a5f7fc99aa74
|
|
| BLAKE2b-256 |
2968e202f04f64679f00c43c627c84a033c60d0e2cc358d3d448a4f50eefc606
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
917a22f33c71b80fb40c90d30fdcc9d416c9e555809003c946cd9aab792d9c01 - Sigstore transparency entry: 1908884427
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pilk_nogil-0.4.2-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: pilk_nogil-0.4.2-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 163.7 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd245f31e8edf55773d09916d0d64434716c673de416af4d750b7711107a77c0
|
|
| MD5 |
3d2296a7af39d2608f5630582467acc6
|
|
| BLAKE2b-256 |
ab4ccd7026cc92118d94e801e4eb99ba722ba1bb7c31dbdf595b9fd44b3950e0
|
Provenance
The following attestation bundles were made for pilk_nogil-0.4.2-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on MelodyYuuka/pilk-nogil
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pilk_nogil-0.4.2-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
fd245f31e8edf55773d09916d0d64434716c673de416af4d750b7711107a77c0 - Sigstore transparency entry: 1908883796
- Sigstore integration time:
-
Permalink:
MelodyYuuka/pilk-nogil@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Branch / Tag:
- Owner: https://github.com/MelodyYuuka
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7b0e8c2ce110d1cc1f6d72768dc46a73844379e6 -
Trigger Event:
release
-
Statement type: