High-performance Python wheel metadata editor
Project description
editwheel
High-performance Python wheel metadata editor written in Rust.
Overview
editwheel provides fast editing of Python wheel metadata and ELF binaries by copying unchanged files as raw compressed bytes, only modifying the files that need to change.
This makes it ideal for scenarios where you need to quickly modify wheel metadata (e.g., version bumping), change platform tags, or patch RPATH in native extensions without the overhead of fully extracting and repacking large wheels.
Features
- Metadata editing: Modify package name, version, dependencies, and other metadata fields
- ELF patching: Set RPATH/RUNPATH on
.sofiles (similar topatchelf) - Platform tag modification: Change wheel platform tags (e.g.,
linux_x86_64→manylinux_2_28_x86_64) - Python and Rust bindings: Use programmatically in your release pipeline.
- CLI tool: Command-line interface for quick edits
- Full wheel validation: Verify file hashes against RECORD
- pip compatible: Output wheels are fully compatible with pip and other Python tooling
Installation
Install using uv:
uv tool install editwheel
Usage
Python
from editwheel import WheelEditor
# Open a wheel
editor = WheelEditor("package-1.0.0-py3-none-any.whl")
# Read metadata
print(f"Name: {editor.name}")
print(f"Version: {editor.version}")
# Modify metadata
editor.version = "1.0.1"
editor.summary = "Updated package summary"
editor.requires_dist = ["requests>=2.0", "numpy"]
# Save to new file
editor.save("package-1.0.1-py3-none-any.whl")
# Or overwrite in place
editor.save()
Available properties
| Property | Type | Description |
|---|---|---|
name |
str |
Package name |
version |
str |
Package version |
summary |
str |
Short description |
description |
str |
Long description |
author |
str |
Author name |
author_email |
str |
Author email |
license |
str |
License identifier |
requires_python |
str |
Python version requirement |
classifiers |
list[str] |
Trove classifiers |
requires_dist |
list[str] |
Dependencies |
project_urls |
list[str] |
Project URLs |
platform_tag |
str |
Platform tag from WHEEL file |
ELF patching (native wheels)
from editwheel import WheelEditor
editor = WheelEditor("torch-2.0.0-cp311-cp311-linux_x86_64.whl")
# Set RPATH on all .so files matching a glob pattern
count = editor.set_rpath("torch/lib/*.so", "$ORIGIN:$ORIGIN/../lib")
print(f"Modified {count} files")
# Get RPATH of a specific file
rpath = editor.get_rpath("torch/lib/libtorch.so")
# Change platform tag (e.g., for manylinux compliance)
editor.platform_tag = "manylinux_2_28_x86_64"
# Add a dependency
editor.add_requires_dist("nccl-lib>=1.0")
# Check if any ELF files were modified
if editor.has_modified_files():
print("ELF files were patched")
# Save the modified wheel
editor.save("torch-2.0.0-cp311-cp311-manylinux_2_28_x86_64.whl")
Generic metadata access
# Get any metadata field
value = editor.get_metadata("Author")
# Set any metadata field
editor.set_metadata("License", "MIT")
editor.set_metadata("Classifier", ["Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License"])
CLI
# Show wheel metadata
editwheel show mypackage-1.0.0-py3-none-any.whl
# Show as JSON
editwheel show mypackage.whl --json
# Show specific fields
editwheel show mypackage.whl -f name -f version
# Edit version
editwheel edit mypackage.whl --version 1.0.1
# Edit and save to new file
editwheel edit mypackage.whl --author "New Author" -o modified.whl
# Add dependencies
editwheel edit mypackage.whl --add-requires-dist "click>=8.0"
# Set RPATH on native extensions
editwheel edit torch.whl --set-rpath 'torch/lib/*.so' '$ORIGIN:$ORIGIN/../lib'
# Change platform tag
editwheel edit torch.whl --platform-tag manylinux_2_28_x86_64
# Combined operations
editwheel edit torch.whl \
--set-rpath 'torch/lib/*.so' '$ORIGIN' \
--platform-tag manylinux_2_28_x86_64 \
--add-requires-dist 'nccl-lib>=1.0' \
-o modified_torch.whl
Available edit options
| Option | Description |
|---|---|
--output, -o |
Output path (default: overwrite in-place) |
--name |
Set package name |
--version |
Set version |
--summary |
Set summary/description |
--author |
Set author name |
--author-email |
Set author email |
--license |
Set license |
--requires-python |
Set Python version requirement |
--add-classifier |
Add a classifier (repeatable) |
--set-classifiers |
Replace all classifiers (comma-separated) |
--add-requires-dist |
Add a dependency (repeatable) |
--set-requires-dist |
Replace all dependencies (comma-separated) |
--set-rpath PATTERN RPATH |
Set RPATH for ELF files matching pattern (repeatable) |
--platform-tag |
Set platform tag in WHEEL file |
Rust
use editwheel::WheelEditor;
fn main() -> Result<(), editwheel::WheelError> {
// Open a wheel
let mut editor = WheelEditor::open("package-1.0.0-py3-none-any.whl")?;
// Read metadata
println!("Name: {}", editor.name());
println!("Version: {}", editor.version());
// Modify metadata
editor.set_version("1.0.1");
editor.set_summary("Updated summary");
// Validate wheel integrity
let result = editor.validate()?;
assert!(result.is_valid());
// Save to new file
editor.save("package-1.0.1-py3-none-any.whl")?;
Ok(())
}
Development
Prerequisites
- Rust 1.70+
- Python 3.8+
- uv (recommended) or pip
Building
# Build Rust library
cargo build --release
# Build Python wheel
uv sync
Testing
# Run Rust tests
cargo test
# Run integration tests (downloads wheels from PyPI)
cargo test --release --test integration_test -- --nocapture
# Run Python tests
uv run pytest
Benchmarking
cargo run --release --example bench_edit
How it works
Traditional wheel editing requires:
- Extracting all files from the wheel (ZIP archive)
- Modifying metadata files
- Re-compressing all files back into a new wheel
For large wheels (e.g., PyTorch at ~1GB), this is slow and memory-intensive.
editwheel instead:
- Opens the wheel as a ZIP archive
- Copies unchanged files using raw compressed bytes (no decompression/recompression)
- Only regenerates files that need to change (
METADATA,WHEEL,RECORD, and any patched ELF files) - Updates file hashes in
RECORDfor modified files
This results in near-constant-time performance regardless of wheel size. For ELF patching operations, only the affected .so files are decompressed, modified, and recompressed.
License
MIT
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 editwheel-0.2.4.tar.gz.
File metadata
- Download URL: editwheel-0.2.4.tar.gz
- Upload date:
- Size: 64.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30ecd0d23c779b319cb9128b51e77c67b0b5538c9550c72ed6e9349addf0bda9
|
|
| MD5 |
7c691ac30eff3f25ce8f0759412b7d50
|
|
| BLAKE2b-256 |
6b5f65b4ec1911f24bb7942df2f65550ebb55b6de401fa6bcb61c692c643b34c
|
File details
Details for the file editwheel-0.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: editwheel-0.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
757a6ea9e46208d63fac02f9395e3da619deee8ec01158975702007fd410b08a
|
|
| MD5 |
eada533b2ec7fdd2ca839908312428be
|
|
| BLAKE2b-256 |
e099b8a5df4df81fcfd253d7a419fa274cf265f5b0d56ce0fe64d7c8fcdd03ca
|
File details
Details for the file editwheel-0.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: editwheel-0.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f71134eb0b79c424181e01b2228cf285d7d732e78f432536d2ae6479b454513a
|
|
| MD5 |
9162b6759aa7f5c4dc8e7f2e0c5b0f45
|
|
| BLAKE2b-256 |
30d1bf19bf51953fee47e32156e556f79b31fb29a4aaee16d97e018711e19dee
|
File details
Details for the file editwheel-0.2.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: editwheel-0.2.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39cfc61cf6726843a7e489bb6753693a4b9e97647a78cef4711159cf9927ccbe
|
|
| MD5 |
c9c388eaf348afce1835caba8f236ad9
|
|
| BLAKE2b-256 |
86645e76c74280e9705bc0dd1a9a320f9801d52beb57021557e4801d0dd04d3f
|
File details
Details for the file editwheel-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: editwheel-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d927911a2afac33d93f6a965530aae0deac24cb158847fe57c58bdc3b9bded0c
|
|
| MD5 |
a4553d435dbf4cb037f08e0494ad6da6
|
|
| BLAKE2b-256 |
cd939d77396c90cdf8a4f285dd442209009e8071ec45503e4ba70004265bbf77
|
File details
Details for the file editwheel-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: editwheel-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1be37663cdbd7ce6eb75b0d735e6b71edd0cb5830bbbe5e8087d031679c14966
|
|
| MD5 |
9cca7a36da3b212a3a02b7772d55da2a
|
|
| BLAKE2b-256 |
7394d3cb23a84df6cf25e291e57a2155113c9e3c9cd42764bc81b0ea9649ee29
|
File details
Details for the file editwheel-0.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e229aac9e7da80f5dc9046adb27757540b795055627418ebe6fee65232ac0e9
|
|
| MD5 |
bcebb7adc66f1da60933ac3a9d62239a
|
|
| BLAKE2b-256 |
be6c380d98c7cee995ad25ab9d652da1c30a2124cad9b8ec2ac6cdf07dc3c21e
|
File details
Details for the file editwheel-0.2.4-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 843.0 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b4cb69982cf9c79f35ead8c2f5a29509325b764b5daebad3af0955a99d75c0f
|
|
| MD5 |
521818d0c25f7e430bebb07b0fc6121d
|
|
| BLAKE2b-256 |
36a5772ca2a10341be2a53ceae1fc415102ede9873d4fe648c69b677031d518b
|
File details
Details for the file editwheel-0.2.4-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 891.8 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fcb9982b9fafa7fc4eeffa66ed01dac6369025eb49e6ecbf6c2c9c400bf012a
|
|
| MD5 |
479461281d20f13373828a15ce41fd42
|
|
| BLAKE2b-256 |
05fbb386b24a4c30e395fce4c817fff12f7c4e61927ae1d5f0fecf6d2d58ca48
|
File details
Details for the file editwheel-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2db3deebe8d795491540b209fc9ff29df92b0afb9f7a39838de5ab4c1921dc9
|
|
| MD5 |
ee4c0d962e3af5477411b2dcfa462407
|
|
| BLAKE2b-256 |
f13a0e78b62e4b6ba658ba5fd3789d08bc48b87e2b86f195d1e9ec088f2399a0
|
File details
Details for the file editwheel-0.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8965ffe673dd0968b226b5dc1010c7577d15acbd5e49cbf0af8a0ea635300a02
|
|
| MD5 |
58118f95acaa0e90449a426fb0854652
|
|
| BLAKE2b-256 |
b9bf0166cec55f3c48c124c1ca741ef4c3504f84dddd2b60ac40f555c6d3bf81
|
File details
Details for the file editwheel-0.2.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: editwheel-0.2.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0b8df6f786210d0c46d76f60f978896e758ff3bbb296a4d3de56e5709d0a9a4
|
|
| MD5 |
30eba7c6be42d94634a42220915934be
|
|
| BLAKE2b-256 |
42b8b1712081930871fdaa26bf786fe24d4bcef007c92381d6806c17af5f0238
|
File details
Details for the file editwheel-0.2.4-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 956.2 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d456b1f381ba558e0d709d70d02ea0bd1826d587a6209e51a3ce97e042b8599
|
|
| MD5 |
31889543d09be724bfe5d0bf96fa7770
|
|
| BLAKE2b-256 |
fff6c0d2166714e94df886303744416dbee68fda3f8e157b64867c823dfe1a47
|
File details
Details for the file editwheel-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
456b7efa2a275291a24ceb37d811085b52887fc84cbe6fa33f988dab04b4667f
|
|
| MD5 |
d3a3722804fc31c32184e535c4763027
|
|
| BLAKE2b-256 |
4d6a24adf867ca2bb2893d41c32eb14e0b20028942ba315df8473ab1eea73cfd
|
File details
Details for the file editwheel-0.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bf6930c84b6be2c3a96033bccccbbc8318efda040e555804e77cdf75df025f9
|
|
| MD5 |
0aa66261cf4b0fa2d0b0787aa36bdaad
|
|
| BLAKE2b-256 |
5b9d0a623a12f189fd84e75fdb31e0ee7f3b693ae46b03c542edf81d05665b61
|
File details
Details for the file editwheel-0.2.4-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 843.2 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7c0ccd1e97099c2428e4a7804b08d6ca2e776c8aae33332d29e9a178f37e3ca
|
|
| MD5 |
eba979cf03f013f7d5bfb40e173d46d4
|
|
| BLAKE2b-256 |
964d309106e53c0bd7afa7652c9977b5d26aad0ff96b4361cb50819ebfc5b8d6
|
File details
Details for the file editwheel-0.2.4-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 892.3 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
672a39601189a8fba802ec024f9cff5be77b1d3be5b37b5246516d6bd323a5ed
|
|
| MD5 |
8e03a762085d0090aecd66b18781af3f
|
|
| BLAKE2b-256 |
7ef9b62b1b65dfcc027d0769fe01b9f1a84115c7e8fdd3385ed230e9890e1591
|
File details
Details for the file editwheel-0.2.4-cp313-cp313-win32.whl.
File metadata
- Download URL: editwheel-0.2.4-cp313-cp313-win32.whl
- Upload date:
- Size: 843.3 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f24f8ee44a05cec9ae952add16b4ef892f3b84c1ba1a7b6c5b3dcddbe9ddb795
|
|
| MD5 |
2259d51478b8eca1d4cb8849b002f12c
|
|
| BLAKE2b-256 |
78424d8ca109728d478bd7b5c7b8b0c9cae74aa035e5004f20908ec55718139f
|
File details
Details for the file editwheel-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be63121a5e7b24c07ae550d2c8817e264e251e499f5ed4210143c6feb108ebe7
|
|
| MD5 |
ff60d33a30cd4a823419438885dcb2f6
|
|
| BLAKE2b-256 |
d9fd95a490a3355a2710596581e751498c22c29aa0ae817b4b4c60540d5e1bb2
|
File details
Details for the file editwheel-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46a429e862ecc1fc67351f4e554a82f079e9a51531f3b4528d2094e0ccdb6afe
|
|
| MD5 |
f883c02b88aa53452d0fa0f3b8f269c0
|
|
| BLAKE2b-256 |
83d3c4f7bbbdd6a6988bd213ed842e87a307e68667f62e539e197ada903dc22d
|
File details
Details for the file editwheel-0.2.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: editwheel-0.2.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af7b91db2c224af2e116e6c6482ccd20595d4ee4655664b7389df27e6ec45b04
|
|
| MD5 |
5834c08c9aa540a2c6eab2833fde4049
|
|
| BLAKE2b-256 |
7d2e2ebc8f04d78fe9cbfccd2595584477daf329b512c4323785b245a5aae836
|
File details
Details for the file editwheel-0.2.4-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 956.1 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
219a80e5ae0f1771315cb177f069dc22f5b3412c85fb16e658888219ff51a3d0
|
|
| MD5 |
be300193c12d7ae054a9266ad4f9a0ae
|
|
| BLAKE2b-256 |
132f7697bdab211c2f05b78a4042cac2477485f536d3f99c9d881948ac9c634c
|
File details
Details for the file editwheel-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4a880547702c17b1df9b5e3288546be9ff77ee273f6e2d9a69c07f1009cde82
|
|
| MD5 |
550874cf6d09c6e35dd0fb093a24c543
|
|
| BLAKE2b-256 |
74561323fa033af8fe4d6a9bf0dc400055ff51a41ea814f7b94790f4b40e54dd
|
File details
Details for the file editwheel-0.2.4-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 843.1 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a8085cbec585bbdf9a98b4dbad78090b0d3417f22791adcdc4989e3ac556fb3
|
|
| MD5 |
fb07dc50dddecd8cfac8a9b462338fab
|
|
| BLAKE2b-256 |
e38e058da4719f2aa6ca28ae87e417c0847956e78f5b93b104403c74e4412c70
|
File details
Details for the file editwheel-0.2.4-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 892.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cc3acfd9f8e0a7c4e7fd812247781370b051c58e6c131834b4450b29476cace
|
|
| MD5 |
37eaf6b8b9c1181a1991cff88dc6a3f3
|
|
| BLAKE2b-256 |
e888246c4e1c59e9ab1716359d76f73e8048ec3ed0d6ac9e8735ebd014819779
|
File details
Details for the file editwheel-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19a2bc3f6e351e654c04e7f4ae46ba688871f9f826ede3d0d2490cc3a32aa220
|
|
| MD5 |
d2750d7a345ef5469af5a8691cca5924
|
|
| BLAKE2b-256 |
3f6c38cb63827bb7de6ea301c516143d788f376e661408890fe074e3bb1d53d7
|
File details
Details for the file editwheel-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a14469ad38bd622283c5a5020b1e7a334a5c7e27d34e1cbd999714d334d24add
|
|
| MD5 |
29f69f82b052440fa1deaebd5feb3bdf
|
|
| BLAKE2b-256 |
a74b0e1a145e67dfe8da103348be72c3af6b9fcf8996f3197b46884a21a903d6
|
File details
Details for the file editwheel-0.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: editwheel-0.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
504e8afd3698aab21df19b6943a9ca97aa6bae3fd7da173c3e5314ce0c35232d
|
|
| MD5 |
32f4d90df85ed873c48dd67039a870fd
|
|
| BLAKE2b-256 |
25990dab3e313b991e3391d6c3929424c39730ccaca68f4eeb35ebb8a6c70990
|
File details
Details for the file editwheel-0.2.4-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 956.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2292a22c4ae21fff384035988da4d742995b915fc3ff70feaa71e6034352a36d
|
|
| MD5 |
513c2388f5e7b5267e90ab1957b9b1f7
|
|
| BLAKE2b-256 |
17d55849384b4cecab506269eeb4aa8e3f1656249495a66132171769e61fe2db
|
File details
Details for the file editwheel-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c3e36d1dd85ca31188b836a463eb2291df87aad416a9c5b2f33a352526fa220
|
|
| MD5 |
35cc3d2f8c4bd9de6034311d07c923ba
|
|
| BLAKE2b-256 |
a85df553e81d05a4a7c0dd14c413c6ddf095e7c9145bfaffb9b8dd9c91c56eff
|
File details
Details for the file editwheel-0.2.4-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 893.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41008c73eef324fe6dc045ad78a2f1e26e81a8cc92d959a08edb8c5db32d406b
|
|
| MD5 |
fbbaefc9dd33de8bf1d065741dc1279b
|
|
| BLAKE2b-256 |
6a44a70ae938dee0b28db2fde114a5f0ae1d87ac96c63ef8bd0f4bd7e68fd508
|
File details
Details for the file editwheel-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c0b971c0a25f08b395870ee10846b6f89f6db81b6359dc1b6de2a4266adffc1
|
|
| MD5 |
1cc5ac2d2576acf4ec25171781291a38
|
|
| BLAKE2b-256 |
fe412af0029567fd6118935cbcfb01071336618f31763f2b354d8f747d401cc0
|
File details
Details for the file editwheel-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26dfc6e17b749ed3345482eebab25d0100f7e0ef6d796f339c5d0953e0ac0d0b
|
|
| MD5 |
abcf40f527cc95d33d3983df55d4c630
|
|
| BLAKE2b-256 |
2e6e102524f7f0573060ba79e7ef6266e71fa84ac924b509e588916c3693010e
|
File details
Details for the file editwheel-0.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: editwheel-0.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93afbc2e749d5e262932e65b0cfb913b99d389dc410466cb555c90c54e33e32a
|
|
| MD5 |
4f022a9f99ae9f6dd6ff65be4dc475a8
|
|
| BLAKE2b-256 |
1cd6857d8a24d3b9f8b3954930c558032589713d7c0cc168d1e286aae786dda9
|
File details
Details for the file editwheel-0.2.4-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 956.4 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31961cf7c5bfc44bb21abb3f53855223d1eed54d5a8d15232097f906596e8532
|
|
| MD5 |
27bc09d77f4f5bd11fbb9ce96307dab4
|
|
| BLAKE2b-256 |
7d50d18c09a4648bdd68c005341e8782345dc33c729fb3817fbb7d1ecb964f38
|
File details
Details for the file editwheel-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec3da2de3717445cdaf801bc9801df3e2341c9f70a45d92642e1c11ffe6acb56
|
|
| MD5 |
a9c4977557f73757645bf7ae1b7b646c
|
|
| BLAKE2b-256 |
42300470ac88f56f9fc8e369f332515a69a9c9636e450907000081f849cd9ab9
|
File details
Details for the file editwheel-0.2.4-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 893.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7ee67e0f9bf45788215bbfa81fe2691a8f105cb0d2523cd66faffa93fd0110c
|
|
| MD5 |
199c6f2d45f1b8b4cf3195fc5b0dcaa8
|
|
| BLAKE2b-256 |
c8e8b90673dc2b6031bd5bb05b724c5bfcc1838fa05de82787f6224e41a310f7
|
File details
Details for the file editwheel-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91a6e98c7c99a9fc2ffeb080aaaea2983b47f8e9ba602dfb9d77d1f0ccef6e8e
|
|
| MD5 |
5813ca93bf9ecd2a35144731b59be56c
|
|
| BLAKE2b-256 |
958bdcab280d0056ec5164543a4b926d2a1bd60abba3ae8c7c1b32d09726ec8f
|
File details
Details for the file editwheel-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a533228987cf07d6f29b66fc80e81f24b06aa6c751546f02e7c63c52fb850a64
|
|
| MD5 |
f8239d991d0c0e29966758644c880a83
|
|
| BLAKE2b-256 |
a8d017d67b5bbdbf5ec576de5fc9f4a22b056dbdb0f27efd5ee36af6422bdd31
|
File details
Details for the file editwheel-0.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: editwheel-0.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
283b77f0942af2a6375883596a9ff676fd7604d058cc7ace9f0503d6a10f5539
|
|
| MD5 |
bc099770e776a0a14fff19720e603348
|
|
| BLAKE2b-256 |
94f6a67a1bdf5c51a475fbe3daf2a6b73b17ff8749b340fa5a66fb36d5ee94dd
|
File details
Details for the file editwheel-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03be018cd7fe870aba38f44b7a597a8678ff8f124c0b0b204d82f5658ffa6ad1
|
|
| MD5 |
b2b647f7c25b729594c167cf10f35156
|
|
| BLAKE2b-256 |
e38ca9494ab3317ed592cd072097ab647b42a0886039d7ea0b7be3b5faddaf1c
|
File details
Details for the file editwheel-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a531db69e26990588aaedb981a5075d3a015030f287fb0ddfd98236684aeeb18
|
|
| MD5 |
7bb6d83f4ee97edc634e0c5ae0231c1b
|
|
| BLAKE2b-256 |
d4ccca3ce51052758d7f27817d985383bee6a60c8b187b579bf253e2fb7dace1
|
File details
Details for the file editwheel-0.2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: editwheel-0.2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68f40235365a49d6bd1397cd6dded32189bf6c74fb02b3f99244ced3ce263267
|
|
| MD5 |
c482f0317e6777f1a666ed2901c408e3
|
|
| BLAKE2b-256 |
8cb6cb0993845718a19182cd0425062c93c80c282477b73b7b8fa0e312e17a2a
|
File details
Details for the file editwheel-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acf6de182df9ef30fb7eb5da635ffcffa1c94bb60bff02ba5af0aca66f0f9ff0
|
|
| MD5 |
31785a1b96bafd123ae12cfd2112916c
|
|
| BLAKE2b-256 |
dbab9fed0598a68f0badda0121d02b0f42d602accec15cadc8d265f077f71d92
|
File details
Details for the file editwheel-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: editwheel-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67e64a857663c1c0c0da5a8416c314df9e26da9a973ff4c6d3d6527b77c1c921
|
|
| MD5 |
da18485fda412d915ea3f7bc0861556a
|
|
| BLAKE2b-256 |
7481fc69b86074494c2a281d6b221f3b373544ff3fe8dbca50715ad966e3a94b
|
File details
Details for the file editwheel-0.2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: editwheel-0.2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c12e9fca877e8a9b9690985ed1b400c65bc8d156198368b0a63b39460cd9d78f
|
|
| MD5 |
e1e8d579e8cf3dada3342b107c80beee
|
|
| BLAKE2b-256 |
48f93db3dc766fb7c72c82e126fca380602554a6116858a366117752f6c78caa
|