Skip to main content

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 .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

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

editwheel-0.3.1.tar.gz (73.4 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.1-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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

editwheel-0.3.1-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.1-cp314-cp314-win_arm64.whl (870.2 kB view details)

Uploaded CPython 3.14Windows ARM64

editwheel-0.3.1-cp314-cp314-win_amd64.whl (926.2 kB view details)

Uploaded CPython 3.14Windows x86-64

editwheel-0.3.1-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.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (992.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

editwheel-0.3.1-cp313-cp313-win_arm64.whl (868.4 kB view details)

Uploaded CPython 3.13Windows ARM64

editwheel-0.3.1-cp313-cp313-win_amd64.whl (926.6 kB view details)

Uploaded CPython 3.13Windows x86-64

editwheel-0.3.1-cp313-cp313-win32.whl (867.8 kB view details)

Uploaded CPython 3.13Windows x86

editwheel-0.3.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (991.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

editwheel-0.3.1-cp312-cp312-win_arm64.whl (868.5 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

editwheel-0.3.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (991.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

editwheel-0.3.1-cp311-cp311-win_amd64.whl (925.9 kB view details)

Uploaded CPython 3.11Windows x86-64

editwheel-0.3.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (993.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

editwheel-0.3.1-cp310-cp310-win_amd64.whl (925.8 kB view details)

Uploaded CPython 3.10Windows x86-64

editwheel-0.3.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: editwheel-0.3.1.tar.gz
  • Upload date:
  • Size: 73.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1.tar.gz
Algorithm Hash digest
SHA256 e477111113f9d71104cf6455dba5fcdbb1e2d066c9217d4a025f38a05809d15c
MD5 8b2219b62e5b2731c66d99f88d4e1d3d
BLAKE2b-256 9e830a007f0b0b496164e6d95d6ac223d016fdef02adb47d63705a0b9472fe51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f81760566327365c08783574c4450c6de8e7d761291abdcd2955d435b7fdfa73
MD5 ab6a8534be0cbea5a4e6ae2042c0a7e6
BLAKE2b-256 851969daab98726c854125097cdd04b9f3c3b1e55ad986def1c806fd4c8eb021

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d96a92c09c90a391cd3a50cc594c7a9fd00cba18882fdfad14abdbd10a5aa262
MD5 09ad56236717da22f620b22bcca5d977
BLAKE2b-256 9cbdbcccff0597618e629fdeffffe70141804ef64657b9bee42842eae4070f71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f01f34a52b566afb5d1cea35700a811f05faeeb14fa0b7b93bf57e5994220e12
MD5 50932dd1ae25603a2e837c2fc38bbb0b
BLAKE2b-256 f2519ceec1c138e5369532643e19e40a7eb3d414a52fcedfe98ed64407346bf8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac8e07a699a0925c42a7c00e71e82ddcacb9cc3be8221a1b2b231876c8f49aeb
MD5 369c2e16abd728172de22ae384a4b76d
BLAKE2b-256 3251e8396579bd7520fca32886d86493350cb3b0c0a97c4d271c4e5f90529b45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb8c772077bb9beb51727b85b4c06a7a5f3f6b5921051ba773450aa6325a5c7a
MD5 7eaaa7519d83cd4515b14ef8476c52cc
BLAKE2b-256 ea7154bee90b236172d281146eda968dbf453049612f6376fe33259c6aef7435

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e798b091ba3eab1c0c54766b5e3185f639731f953e50cd630df437112386e3c1
MD5 6343327639240e6c502f43a9d9001eb7
BLAKE2b-256 a6d9af6d5440e08e1d7ecd73324a83b667ae6ec72564d96a31f2f734491ddd4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 870.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 37287660766e785cccaac1789c53d182ff85986909eb0251bc37228247e957f4
MD5 8bc4e25c23a65f9483ff0d78a8dc74bc
BLAKE2b-256 e6cc8abc74ef979a39fe7434fa7120c9eacf54c0388cec7f2b1d52ab48366245

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 926.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 88ba47e5cf1e1bf1e4cb2575318c2ab497080b570dcb2845387f356482f4c74e
MD5 771895daf26b33619b1750f996f423dc
BLAKE2b-256 aa756c5b1a4d7a0f57f75a06cbe0ce7d9894eb073226472a079ae661b3c9637e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40dd02578d5889cc89dd028c367592b455826d670b2c81d44f4f79d58de9cd1f
MD5 c5ec278d06000e2f886b1a640d8ee887
BLAKE2b-256 76d2a377ea82309cd6dcff51acc4c31928033e4158582b1cea08108862b7eecd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 209ceb107a9132ddb21bd1c957ed4e49a121c444eec2e51bd31b0480c92a2622
MD5 399f817a55cae8e8dbc738ebcd287c58
BLAKE2b-256 262274e26c0b6c2a31a502303d6192ab42df8de2ad60a4e9342f2c7d38befe31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8fed4bec30b93e123ef0c311276369c71e177223c4489a9d3888cf1539374a63
MD5 7bcbf5550fb258778e5de87b107e8f0a
BLAKE2b-256 9e9dd319a11647f84bf7896c2eef1767db92ae5178fe9010bad3a374ceeb5641

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 992.6 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b92f4c77b5d72386e5ed1bc0c036b1b0020b52da1094aefe349a4773f63a5167
MD5 bbf642ecac28f5475abd8009a09f85b5
BLAKE2b-256 d7e9a2bd31ff5c9fa441fae746848be63de7dfc4bee9122dbbe1e807e8dc6105

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52027f5b69783dc1eb479bcfb6a2a92d3a934a4e0eedd4401c7d32b1e465ece1
MD5 1cf28b3ab0a99451b6abd45d113b9c0a
BLAKE2b-256 9348ae80ee426c1c8a28f6230b649c3d72c7adccb34f75929292f9b4cf7f2b4c

See more details on using hashes here.

File details

Details for the file editwheel-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.3.1-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.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c0f374377fde6517a70777f0f3be7eb393461ce410542e0cca5ed71a4fd53a5
MD5 a1cd4f8f7247595e6848b7b54455f4af
BLAKE2b-256 2d8720d1258d2256e8e4a86cf77c62a441717d69e0e11cc4be49ae509d417398

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 868.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d82251a8bf81f8b72753eaeb7bec00a9bb32bd6a46d1aeabcfe4053c56df4899
MD5 b25b6b20412df5b9a33b92a71593bd0f
BLAKE2b-256 a1047d35a5660ed084c30ac7058801f27f04efb83e57fede79cf31b076d37e3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 926.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e8d8898e73d14e8ce91fbbb5bc8870c5e4354cc5ef41fb18f6b4da3d5c569fcb
MD5 e102cfe291bc880778f8b14427d7646b
BLAKE2b-256 f8af1948c90a78caf1d70c9784a9bf5ca318b10afb10be3a861cfc52594589e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 867.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 897b9e93765aca8ba02f034f7816617053acecf83fd657b5fb16519a705e317a
MD5 551659b94ee29a07474de83232b07854
BLAKE2b-256 34d8c19c2b4931199232b0afb17f1770d09a1c04f1709a7bac7add9099ac8e35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc66e175685b34987c8df020e312d61e9de5b25aebd90a1dd94927e01ea62caf
MD5 6690229885e7bb5980e37ded1421fe77
BLAKE2b-256 c8c5a427eac7abb7c4bdaa4eae6f0a6ccce41ab442ae3409ec15d6945f680028

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf64deb2337c7c2bd8cc497f00108fb79a785c3565c67cfecfe93eb6e927a87d
MD5 b3724796a966f580e7279a65c604f51d
BLAKE2b-256 66da7e42c757e8dbc11a14ee85f072b0753b5a11ea0c0563f7fa733a774cd6e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 47c23bd9d4b16b4bfb6cbcfa73019f9a887a11ad95c098c260f6b469c481a3a7
MD5 5d338aa559b2351773e9848f722dc46f
BLAKE2b-256 6ffc82e04bcd0f5ce88f331b0874d88d33473770a264dc79a7c7dcd5cc85b8ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 991.6 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 055788f39ab1fd2df53ce24f5a36ffad69eebce4554066d4b8b1604bf4d3bd01
MD5 502640c6c908febe9fa1c4f84eb744d7
BLAKE2b-256 d319d20c60306bf5c694a57921ab98d85b2b69fe70ea4d6a01ec5cdbdb72590e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c38d812744442446129c15cf633ea543c61027d604fc2a456d0c24d5fa1c344c
MD5 5f84525c2c0c078b07436fa94a88cbcd
BLAKE2b-256 53c81befbc61ab03bb618076c6f4b31a98bdee37e396a1ce5a2487c14b728698

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 868.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1764e39c8c47f37f46c69a58fb1144de3bd2f04af1ea3d430c070a70ad00fca2
MD5 8936b8e94fc0d76d77cff1f50677f444
BLAKE2b-256 b3f2675e24b32332e3b838f10edca34d4208a052e967aa8172f00e642bdb14aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8b9f86c6c0fba9e5f56b02e2e8f2cebc1a726dc57bd5a47d816e22f7e7a31675
MD5 516a3989730b0fa52fb145a027bcaf49
BLAKE2b-256 3fbdd72b600084b3f6aa74880837371ff58d3e23d21014efc05e99e547bc911e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33dafcbd9816e1b809ecf03d37de782f69bd425cf7cde184111fc2d6d06815a5
MD5 896f53ccb85d580495e7d6ca0a439a53
BLAKE2b-256 1b704a4140741fa764995817ad297fc6747fbca78f6eac933ca956fd9fcb642d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7427900338c2e4cbc6082c17f9e5703de57e3cb5227d9858a6e9023c53f3068
MD5 969a4572a87732b863f79e3ca3ead07f
BLAKE2b-256 9f9ea609fea8bc8facd9957809f5f54c00b868ce907f34e7b91f6ed2c382cb04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6da44d037acb6eb9399bf29cfa59eac8c59a99c8743b7899176a8cba5755018c
MD5 1b931f415b56439d5c24c46d11ff6d16
BLAKE2b-256 654e9e649b39c980be66578770f1cf3b40b5c89adaf03573f012309f3149555c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 991.7 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3ada8e1abc342accb42eac74cca732ffe1dc6b69128674ad9c346b8ce3aec19
MD5 762fd25fb500914a3a7e54c8aeca4a73
BLAKE2b-256 b9f8db4a3a413fa3073f7918abdeadde2f89cdba38f2744fd8b69fa59ea96be3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08d9affb77529e118cc12b02240cf2c9327ef91d942a33bf290f8018095cb94d
MD5 f753500b6e51c9a5806104d945b515c4
BLAKE2b-256 679d62ccc0688b5a392c867b16925941bfac07f5686af07cddc3882da9643cc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 925.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c00a78ca618727e25aec375166426627dcc28b517835bbb09f3175d877ada7df
MD5 db9268f1fbf16ec3cdefe6a188ce4e85
BLAKE2b-256 bb227e9447c737ca0b96ea5e52607dbc1c1004a5f8e94dfd89a52dc886450c4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28fa2ba1bde035d77b7caed6f753f6abcaa3db547979edf3cff4636b2428f12c
MD5 89a319fd51388fd51355b681d22b2409
BLAKE2b-256 69dd1dfe9bf8f61bfa7b342b2dda9273c2e32e60bb4a994f4cce5a42ebd5aedf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3dbfce1e57bc6fe399f411af8c2e9a4f6ac8244294ffe25e8405e92701e94eb4
MD5 dcc026ee9732509d147e47a2b6f6ab18
BLAKE2b-256 b1d4a248da6ce169053ae226d75e3b010162cefb4be6ceb17de6c6e08a24e935

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d789c93922271e3e3972fa799520f28069836f85d3aa547fe742b33324266e9
MD5 561ac591fcdfa36f219e48ba283afbb1
BLAKE2b-256 bd93f615715324f1f4f58d57f64a2bd5acf87b615ddb2724238bf4dbc8db9d1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 993.3 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40e3d23c4cabb203f3f6ed3ff3ec0caeda9dd4f599dedf83d61d2838569b872d
MD5 2ab6a3928c0480fb66040f66771e3751
BLAKE2b-256 18ab7695209988cb69ba68892b29fe6b131a3e47c974c9415035db7905fa2c78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 577335506530fad51d728af90c3fc1ceb6e8fef6e12959c75f8ac9941271fc23
MD5 ebc07ea86d65d270d434e946fb8c3435
BLAKE2b-256 2d1144fc5005e305cd9d499d060cddeb9584a6c80c0dbf260b810f272c2705fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 925.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 974b42414dbcac6551c89979b4d1a3801810b36ed9f45d073fb2b326b6af9b22
MD5 d6745c5cff321a21c0dc408c537ccb1e
BLAKE2b-256 542c2c8581dfdfc36890e4680f8b6702b8f583f082a757d1d0775003aceb565a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a780c5db2abd125783500f211a291e4ae20c9b2da70ed80a4a552da4dd20649
MD5 2cbdf4b67156005b22b3202a8eb6fe57
BLAKE2b-256 b1c27b3714ed4a62e5fe8764d88e6d036614db2e2e26a41e4f73849c2e89c707

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c755638d272215216a391acc264a3f9e1a8c27360a250082008238b864a3120e
MD5 4c115f36210bf957676a47696161d3aa
BLAKE2b-256 d941c59b92b1fb514cb5dbdfb373dc76f9e6bb39dd741d6f9186e42b31a08821

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 90b176c4d075e710cb83f217623636f192fc85263c4132f24820a34f9c4f4bd6
MD5 7c4fb7be5601045851c254c53238e646
BLAKE2b-256 6e220e94570974eacb631b0762cdf5194f5621b3924b23e88bdf5f7450b18688

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f72de8dad23ad5b979306c5353c092805a11a579f70d8b335f9d625170166b4
MD5 a952b5a4b4da1c109f741ff875ee051c
BLAKE2b-256 ff8fb58b13e524c3613d179f1a0d5f2b64dca4b0183bea16def2b0704d80bce5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f68e45a95a39492efe7a2c4e66c87ee554d6bee6038c955eaa5d33ce259c55e4
MD5 930830d396b73509d94fc0d30304eacf
BLAKE2b-256 b1581ccaa342ae6bf83f10f5de948b73445c06ed2b90a1850689e9d277649fc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9b9b360eb87bb728bd417cdbaed66be0b6fb122dcabb73cd7190720ee51e98d
MD5 1a9aefe535f86462fc1615d1860fd67c
BLAKE2b-256 6dcd66a9c500ed40d402bb193764f80155a7c3bbc278e16ae634578e7f641b37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.1-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.19 {"installer":{"name":"uv","version":"0.11.19","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.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24bb6114f32c8c11f0c6c2b4070c69f2fbaed46eea37bc30a74a5bc1d6509628
MD5 8bf985cfed26d1be3d18e4b3ccc45159
BLAKE2b-256 1bcd71f21f56805bec8a1d9d0ea190e41dc674c1a6c698e46d3de08094242de8

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 Pingdom Monitoring Sentry Error logging StatusPage Status page