Skip to main content

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 .so files (similar to patchelf)
  • Platform tag modification: Change wheel platform tags (e.g., linux_x86_64manylinux_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")

# Set RUNPATH explicitly
count = editor.set_runpath("torch/lib/*.so", "$ORIGIN:$ORIGIN/../lib")

# 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'

# Set RUNPATH on native extensions
editwheel edit torch.whl --set-runpath '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)
--set-runpath PATTERN RUNPATH Set RUNPATH 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:

  1. Extracting all files from the wheel (ZIP archive)
  2. Modifying metadata files
  3. 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:

  1. Opens the wheel as a ZIP archive
  2. Copies unchanged files using raw compressed bytes (no decompression/recompression)
  3. Only regenerates files that need to change (METADATA, WHEEL, RECORD, and any patched ELF files)
  4. Updates file hashes in RECORD for 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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

editwheel-0.3.2.tar.gz (74.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

editwheel-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

editwheel-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

editwheel-0.3.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

editwheel-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

editwheel-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

editwheel-0.3.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

editwheel-0.3.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

editwheel-0.3.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

editwheel-0.3.2-cp314-cp314-win_arm64.whl (870.6 kB view details)

Uploaded CPython 3.14Windows ARM64

editwheel-0.3.2-cp314-cp314-win_amd64.whl (927.0 kB view details)

Uploaded CPython 3.14Windows x86-64

editwheel-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

editwheel-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

editwheel-0.3.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

editwheel-0.3.2-cp314-cp314-macosx_11_0_arm64.whl (990.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

editwheel-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

editwheel-0.3.2-cp313-cp313-win_arm64.whl (871.0 kB view details)

Uploaded CPython 3.13Windows ARM64

editwheel-0.3.2-cp313-cp313-win_amd64.whl (926.9 kB view details)

Uploaded CPython 3.13Windows x86-64

editwheel-0.3.2-cp313-cp313-win32.whl (868.8 kB view details)

Uploaded CPython 3.13Windows x86

editwheel-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

editwheel-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

editwheel-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

editwheel-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (990.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

editwheel-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

editwheel-0.3.2-cp312-cp312-win_arm64.whl (871.1 kB view details)

Uploaded CPython 3.12Windows ARM64

editwheel-0.3.2-cp312-cp312-win_amd64.whl (927.0 kB view details)

Uploaded CPython 3.12Windows x86-64

editwheel-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

editwheel-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

editwheel-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

editwheel-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (990.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

editwheel-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

editwheel-0.3.2-cp311-cp311-win_amd64.whl (926.0 kB view details)

Uploaded CPython 3.11Windows x86-64

editwheel-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

editwheel-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

editwheel-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

editwheel-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (990.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

editwheel-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

editwheel-0.3.2-cp310-cp310-win_amd64.whl (926.5 kB view details)

Uploaded CPython 3.10Windows x86-64

editwheel-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

editwheel-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

editwheel-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

editwheel-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

editwheel-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

editwheel-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

editwheel-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file editwheel-0.3.2.tar.gz.

File metadata

  • Download URL: editwheel-0.3.2.tar.gz
  • Upload date:
  • Size: 74.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2.tar.gz
Algorithm Hash digest
SHA256 1a4f47fd48fc767d80ba1ec3ff1fa5b50c483f0eaa69952c0563da6ef7645c92
MD5 0e4bbd82d99c109b72a2c6e496e9448b
BLAKE2b-256 40c854aebc12b916f54164861dea62f24107c50500ca9403bd076f1045ce8ed6

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81eb726e86d0d5fb7978996ba73e29a37a1f24b812f9b23e368291b1aaa63b97
MD5 9cbc90dc493732a3c9ab9b383f886cc1
BLAKE2b-256 1e83712922187aea63646a9d56a5e334106c7045403bc1057fefbff299fadd07

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c480762b03ed5cac279e46a843eb295d4502d78a1b6659258b79b5c95e6a6797
MD5 3891d830b589622aaa0a573af811a13b
BLAKE2b-256 7f6c22115242b40b1bb68f405dbe73568d8c05e490d09b15bec0a744a3784abd

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 49497e384416f12f43c28e5c63f42d718286ec1bcd09bca50f71d6a0f02f3f68
MD5 e6a2e9a7aec06b0cfe19ad490b0e15d3
BLAKE2b-256 d032f6528e8f6a9fb32c922046b2e412efe8835e73901a7404c606a68132816a

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 375832e476536dc406a52d3cd93ce7910bf8f13834279f395b915eddcf0c5217
MD5 def557d7ae7ce504c85e48015261d483
BLAKE2b-256 3dc1ff7e8af3d9c536f3160c3c195eea2081c9acad9452c1ffeb0ac17cadab68

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2562c712e2a8f1213c95c0516683dcac492efb8dd257fb0b44efb2a5024c25d
MD5 cd4f0525e0363c61953fe47eafd5f99b
BLAKE2b-256 29168fe777688bffa4ab84d63a26408e6e36714ef8b5400266f31a839bb28537

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3363d715d35cde920e0764dfc0dc41ae3037c180b2082ed85b16bee790627489
MD5 5b77f3d3e580c2f5539620b8e9de60b1
BLAKE2b-256 1269f4b986ede16b67a5f4efdfe1752542809676cd74292c1ea9f32735a13cd5

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1c9d8a82db8f6da6a37aa6af796d00ff975a4f915974225da9d32be742756dd
MD5 87bb661aea986f83afd3716d3e1e3306
BLAKE2b-256 f5b163acff9f1fe3117b7f682301822fbc357d6fb79028f4d35b71c661d4fb9c

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 599f007a23218df9a73b8767ab1376df491356e7240c999fd7a1229466a4393b
MD5 0622cac11f4bffb63caa750a0c5cbbca
BLAKE2b-256 d0367683997c1c34d58afc230bc5dc71550271fc64581b552fe1e78ed75d5dce

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 870.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 98f5c57e879ef6e38d4f0e033a5d164b14d723a591bb218c7789a76e503b20cb
MD5 599ac1f04dd29f29530458e9bc693c49
BLAKE2b-256 5f790a4ac1df143af00615555c088d137de469d78d55dbfd061a28df4369111c

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 927.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fde98914c3720a232c7e535d44427a5bf6e22f47c3c11ff6a7b03448ae9d6bc8
MD5 47045f15a2ed757231e4a6755636ad46
BLAKE2b-256 3f79723d081721bb6bc47401bf6fc69b5c0d052a178932f6273d3c5c19ebfb65

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60dfa265b5ec9243f4b23a8219d36039ecc7af99930245dad02fc1999e6e2d97
MD5 abdd7c0a7094b29654b21a497135980d
BLAKE2b-256 bd4ff640158f0d233c18c4a12a966ae1c07c07b4a2668ce32b300128c55a2b5b

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9029155a267569e848e9afef7873958fab691a2bda15bb835ebc8958ffa9ca78
MD5 6c87b7453797c3eea04f0ad8a3e086a7
BLAKE2b-256 e66a5ce0f31fcac3d9960da99f34b5c69a0b64ad6ba9f2d51da0bd698bb0f950

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 67622eb2fcfb32b8fd68ae1b813ed1fcfcfd6dbad709c2c4a67e2960d2d7493b
MD5 ef2997ccf11b0b9aeef4c26346505095
BLAKE2b-256 f0cf510edbc5a1821f4732a89048411a710644576ccb10f32df9499d4df36a9e

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 990.3 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36c1d73280671c984339f13f99acfac7b591124c5175458122f74a9fbcf9a3fa
MD5 91471075be8ae4202e7d6d19f096bfed
BLAKE2b-256 fca5bb8c81053b07b578341c51c3de324dacbfc46940d4d137c31438242bb5ae

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9eaf09fd6d3445a43eb40256ac9da2a854cbcb1a9921620d65bd382a9ea59e7e
MD5 18a40780f9edf556ff20fe393cd83b1b
BLAKE2b-256 856e4512592f26d160a9dec2410edaddca8766675aca2a0e9cde02e486bc5160

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 871.0 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 52740d870e7d53b8f568a03adcafa69876518d13d01b5ebe6f4f11fcdc2dc82c
MD5 9f188947423732edcb886cee7a898c8b
BLAKE2b-256 33a23660c209ad1f45a7dcd6df84afcb84b0244d41ada4fa106fb22fbd28e7af

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 926.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fa5913d0feece6ce06240169cc6cb260c658f2429031624d5d2a2dd948f68b4e
MD5 c4bf016c72042d1765a22567371e8b1e
BLAKE2b-256 6b2e31cc8ea1b744c6c7ec2cffd32c999f7e3729da4d259d1474738352ed5377

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 868.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0abde4aa2a365b5ef1a80dc80090f8a3aef0138f9cb0b62c19b729bd98752e6f
MD5 79cb91f63460255b23468f2eec25943e
BLAKE2b-256 7d3087d117172a99363ef467222edbb0f99727af2485f5a2d00dd2cf11b7efc7

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f58bb6938212a8d7a5f4c2b60e1334e2a334412f7cc0325743027f14b6d7b09
MD5 1c708ad1eb090f69bf24b86847ae7327
BLAKE2b-256 90caa09a258d640dafd07bb58112d984ebb4aff2f5befb0e8abaf3a654a69dab

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f34e399dbcc2fbe31f081823de8d51152d995ca2f6e19045395fd32930da828
MD5 83eaee259d1d819efbf16c55c321fea6
BLAKE2b-256 87da4ac927a502f2589cc92f24296085c0ddca718d556efb36218b18195fe49e

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e86574a22f75916db02e9e211c9717b5940eb8b216ebebf7e5008149f388bab
MD5 12991bd8e3216a0ce4c0141b6990fcd0
BLAKE2b-256 a56c08079db1da0dc78eb6ee7039e9feb8eb4ea94cb66041f67afcbf94ce7ab9

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 990.2 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebd657fdde9f28fe9b53972095d421c36471e53162b9a45268e162523c431ec5
MD5 f3d27a2490de69a8fd7947eaa3d780f2
BLAKE2b-256 250d757283ec65d0f922a901d08228db4399101fc7fecccf46de87c7d8c43b68

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43507f3d710201666c20faeb826181734219251a7653bb8d31921b1715ed3c32
MD5 c32b1a4f31e9a324b81bcf96a6c626f8
BLAKE2b-256 00c35d6dbff7a4b3e4fcf55ee9ce9a310740a2f1f1535cd647b7534baa39cea6

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 871.1 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 08cfb1a922f0f12d096f1eaf9b640f0db2623b842c97c96a9d10462967e015a2
MD5 5c507ab979a9ae68ec772d1688f2f349
BLAKE2b-256 19934fae35e998e3bc38878827dc3dae3fb03a2e79ca8c235c7836fcadb22a92

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 927.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 51790f300aa4a36d8f4491d3c084fb6fdb7b6aa70fdd4bef73eec970bee2b28f
MD5 1f700fd2b73ba02f9d9b85be58760ac8
BLAKE2b-256 dbadce2b21520ba121a920af2c8e120278492626ce99a0acb16aec24eab7a8b3

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 146e02cc9b4c99c49026c38140f9dfb4550ebdf2eb428c89153ce9f45f2b6acf
MD5 bba0ac1aea80482ac07fea973b03a604
BLAKE2b-256 04bced865ff46c02fabda0a9ab91d08abdd99da7dc1608d4f4773420b3f59ad0

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9fba08377e7d1f0d5541afd3bb622794e7a831c990d4349e5868cd1145e8ac3
MD5 8067aaae1c2b7f19f24977469e39fad6
BLAKE2b-256 75e57592704e44f001e97cb2aa5b4b6234c4c059b0f4dd14d70bde3dae783c81

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d79cb0795ce1c2d763411574490918b089f63de1940022f944688454dfec497
MD5 9a117708667421a5613c1f531a846938
BLAKE2b-256 b5e9300f93a43a1444a1eeb889787ee46fbc90c63d49ac0cecb0a4b088dd75b5

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 990.4 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e309d4b24c08a8b75c1db002ec8c76775b4e4d31b0b56ea1faa70b0d8532af1
MD5 45fc75533da586c16725760f0e3d05f5
BLAKE2b-256 9840edd636fac8fb35b8379b2defeb088832b85ed1ef6f5f0f7015fc6efb6512

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc8ca489f27d93faf579a0a5e47098e6e1a2d4eb20fca20ca4559fd5d1bcac06
MD5 4a31e8657f2307d1b90ffb9ba523737e
BLAKE2b-256 6f03f024a8bb465f6db0ac0795e7bd1e04565abb80367767dbd4fd6b0de4082a

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 926.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 424a2955e461b9839d7083c407ee69d939100c4cf7b15175750be25473306ba7
MD5 c7de6278e1a0c9c1c485130f444f2ea1
BLAKE2b-256 2f218b1e45f0ac4a73c3d6fe0db77e98d6063ce06afa49afe21469d7a7f7bdc4

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86b0115366421f6b3b9e1ad64f2284686c5aacb798b496a9b0623c9041cb7285
MD5 803783ff3c231c703836e989c6ee05f3
BLAKE2b-256 8161b91c03a8d9eda655b9fa450d0768247ad26465dd34f05311e7e7d65d8ee7

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52e358130d6639ab56d3f86c32e8b68d942cf34bc5ae34faec77b2a28ca7d81b
MD5 aaad414b5d25090d3f5ae725fd7f36fc
BLAKE2b-256 5f3b9886144d761fd2a2c2dafa83ff95167347ab4f1dcda6bc01d9a0b7285603

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 be9c8702e99a679127020f7431286c6a09f5d2ad409cfcfc9967d9491b92a094
MD5 5607ed173b281dae6798b62047e918fb
BLAKE2b-256 666016bb167df6ace020a093cced44878174271a79c2738d3e09863ff054c247

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 990.1 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10c78d1c8e7e21f48ded4e12f66cd2bde447d576e3c98baf426f88903a0af2d6
MD5 b44fd87655a0395593a96e20b6707030
BLAKE2b-256 8675b9e52a076430e937b135fd9229c60f57ea38a5873ca1feefb8a72fd22e69

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b8a52b9fc896d257eae981c531eb7f73c316bf26a6f5c0400f7b3dfef6c621c
MD5 7ee6ea852c312dd13243e7d12f8170e0
BLAKE2b-256 d73061bb9997d2a195e9372c0b67bf38048dd14b9b89586ca63b6b0799692c99

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 926.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e45359e0376410a763b398dfb59031c94281c546572fa36fed28d829ed06dd8b
MD5 61401a4f4bdddfb25f70f6ae5e192475
BLAKE2b-256 e33f544910f3c073dd09f0e842fa8e5139e512d59b03e653afd1ba0e2c5bb826

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 261d40b7d349e5156ddfadb4dfdb975f4d076525a07e8960cc1c7f4d2f3a12cc
MD5 0edd52873cc7952d679ff936f17f25df
BLAKE2b-256 c5f428cbc035960010edf9d3e1d4d101b463cb7b7d5f1287d433a99fd6ba166f

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c83114554496673c81b0f828e2148cc50d18f3a9da48cd5fd3884f8328f3e0e
MD5 7718d43065af7bf9e96125c90a4d5425
BLAKE2b-256 a7bd4e576030a162affaddc691043bf859b4b0d57ed08f494502e794026cf019

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e69dc478005ac112bd1400690dbabddee5838b6a4553969c06a8e6fe68b9bdf1
MD5 3a3299423337eedf0d31376ae7137be2
BLAKE2b-256 3620cd2dc394b2857ba423a47ddb54866840ee4382b52c27f911f8e0f01de553

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea9af89433499c7ff369b00092d9930c833f63f469b793dc90aafe37e5fcfec5
MD5 8145751f0bcc983b49e98d511f5056d1
BLAKE2b-256 7e6d108961de68483527a7d9bd4cf9af2d1ed448796b55d94a200212390e4894

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ac337f6dcbbe3f4d7007214824b3131bb67405f67ada455cbf74a26d9f5a365
MD5 a3196b396e2b3cfe21aebec1223cd6e3
BLAKE2b-256 01300ad4c365e1a6f4cc7c0b2979c0b4598eb333026cf151351790dde625a6dc

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c3b63dd4484e926dd70236242d908ae273a44571ba8ff175fafa5f2eef9dbd4d
MD5 c488f2c936621a839b638a5cd1fc40e9
BLAKE2b-256 f968d3f4e6d866417ac86abe1f3e691a333cddcb87a4752ff4657e8fcd6235b5

See more details on using hashes here.

File details

Details for the file editwheel-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.3.2-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.11.26 {"installer":{"name":"uv","version":"0.11.26","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

Hashes for editwheel-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0357d8edf4e005eb8607a2289afebacdff3f8cd815f477f2488a2439407a82c2
MD5 28069e7911d6a77535abc79b6dc9a69f
BLAKE2b-256 b256a5d05c38921f8a0bd53b45e689aefab69786965b4068ab066a85dbe37757

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page