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")

# Get RPATH of a specific file
rpath = editor.get_rpath("torch/lib/libtorch.so")

# Change platform tag (e.g., for manylinux compliance)
editor.platform_tag = "manylinux_2_28_x86_64"

# Add a dependency
editor.add_requires_dist("nccl-lib>=1.0")

# Check if any ELF files were modified
if editor.has_modified_files():
    print("ELF files were patched")

# Save the modified wheel
editor.save("torch-2.0.0-cp311-cp311-manylinux_2_28_x86_64.whl")

Generic metadata access

# Get any metadata field
value = editor.get_metadata("Author")

# Set any metadata field
editor.set_metadata("License", "MIT")
editor.set_metadata("Classifier", ["Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License"])

CLI

# Show wheel metadata
editwheel show mypackage-1.0.0-py3-none-any.whl

# Show as JSON
editwheel show mypackage.whl --json

# Show specific fields
editwheel show mypackage.whl -f name -f version

# Edit version
editwheel edit mypackage.whl --version 1.0.1

# Edit and save to new file
editwheel edit mypackage.whl --author "New Author" -o modified.whl

# Add dependencies
editwheel edit mypackage.whl --add-requires-dist "click>=8.0"

# Set RPATH on native extensions
editwheel edit torch.whl --set-rpath 'torch/lib/*.so' '$ORIGIN:$ORIGIN/../lib'

# Change platform tag
editwheel edit torch.whl --platform-tag manylinux_2_28_x86_64

# Combined operations
editwheel edit torch.whl \
  --set-rpath 'torch/lib/*.so' '$ORIGIN' \
  --platform-tag manylinux_2_28_x86_64 \
  --add-requires-dist 'nccl-lib>=1.0' \
  -o modified_torch.whl

Available edit options

Option Description
--output, -o Output path (default: overwrite in-place)
--name Set package name
--version Set version
--summary Set summary/description
--author Set author name
--author-email Set author email
--license Set license
--requires-python Set Python version requirement
--add-classifier Add a classifier (repeatable)
--set-classifiers Replace all classifiers (comma-separated)
--add-requires-dist Add a dependency (repeatable)
--set-requires-dist Replace all dependencies (comma-separated)
--set-rpath PATTERN RPATH Set RPATH for ELF files matching pattern (repeatable)
--platform-tag Set platform tag in WHEEL file

Rust

use editwheel::WheelEditor;

fn main() -> Result<(), editwheel::WheelError> {
    // Open a wheel
    let mut editor = WheelEditor::open("package-1.0.0-py3-none-any.whl")?;

    // Read metadata
    println!("Name: {}", editor.name());
    println!("Version: {}", editor.version());

    // Modify metadata
    editor.set_version("1.0.1");
    editor.set_summary("Updated summary");

    // Validate wheel integrity
    let result = editor.validate()?;
    assert!(result.is_valid());

    // Save to new file
    editor.save("package-1.0.1-py3-none-any.whl")?;

    Ok(())
}

Development

Prerequisites

  • Rust 1.70+
  • Python 3.8+
  • uv (recommended) or pip

Building

# Build Rust library
cargo build --release

# Build Python wheel
uv sync

Testing

# Run Rust tests
cargo test

# Run integration tests (downloads wheels from PyPI)
cargo test --release --test integration_test -- --nocapture

# Run Python tests
uv run pytest

Benchmarking

cargo run --release --example bench_edit

How it works

Traditional wheel editing requires:

  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.2.3.tar.gz (62.2 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.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

editwheel-0.2.3-cp314-cp314-win_arm64.whl (840.1 kB view details)

Uploaded CPython 3.14Windows ARM64

editwheel-0.2.3-cp314-cp314-win_amd64.whl (892.0 kB view details)

Uploaded CPython 3.14Windows x86-64

editwheel-0.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

editwheel-0.2.3-cp314-cp314-macosx_11_0_arm64.whl (958.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

editwheel-0.2.3-cp313-cp313-win_arm64.whl (841.2 kB view details)

Uploaded CPython 3.13Windows ARM64

editwheel-0.2.3-cp313-cp313-win_amd64.whl (890.9 kB view details)

Uploaded CPython 3.13Windows x86-64

editwheel-0.2.3-cp313-cp313-win32.whl (845.4 kB view details)

Uploaded CPython 3.13Windows x86

editwheel-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

editwheel-0.2.3-cp313-cp313-macosx_11_0_arm64.whl (957.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

editwheel-0.2.3-cp312-cp312-win_arm64.whl (841.0 kB view details)

Uploaded CPython 3.12Windows ARM64

editwheel-0.2.3-cp312-cp312-win_amd64.whl (890.9 kB view details)

Uploaded CPython 3.12Windows x86-64

editwheel-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

editwheel-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (956.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

editwheel-0.2.3-cp311-cp311-win_amd64.whl (891.2 kB view details)

Uploaded CPython 3.11Windows x86-64

editwheel-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

editwheel-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (957.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

editwheel-0.2.3-cp310-cp310-win_amd64.whl (891.3 kB view details)

Uploaded CPython 3.10Windows x86-64

editwheel-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

editwheel-0.2.3-cp39-cp39-win_amd64.whl (892.8 kB view details)

Uploaded CPython 3.9Windows x86-64

editwheel-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

editwheel-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

editwheel-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: editwheel-0.2.3.tar.gz
  • Upload date:
  • Size: 62.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3.tar.gz
Algorithm Hash digest
SHA256 1d3de83ad0b971edf1a2676b096214c85680abe2c9302ce5a03e2e55bfbdff98
MD5 5d463006d2c589aa5402bbd8dde304de
BLAKE2b-256 52ae9f7fae20e78e4d9d8318e951cf8568f38a47cbd4c08c5d282fd1f5be459f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cc1457079997cb084413a37305dc43cb1e3e533d3a9f350f2afac54d64c5780
MD5 e83695e7fae67e14cb2cb183b0ab7541
BLAKE2b-256 603da8962b8302b152e4d174cb2088e060785021dd189386228965a3818e51ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b88169652bc158a54419d856e872fd15ff88b7dd6d2b4db935122ff732044eda
MD5 4a1ebf133b2bec8b7762869e1f736f7f
BLAKE2b-256 bbe5ce64a311c614f54c32c64e7eb3aa5e661cfb84c4419af806e6015b26a815

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 207f995546d15a3286e588e532595cc01e76fc5713fa4f28c2d1351afc72edb2
MD5 17b8890cfd65775cd2aebbe6997d2d45
BLAKE2b-256 f2b9177272e37b0ad23867ea26efecacfc36109c6f29d1a7f79e087aae36dc16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dd677cd5376bcde1627f182a077e61c7761a8328f35636906d8ced842cc38b3
MD5 729eda9b16628b0bba7f6fab3c9292c5
BLAKE2b-256 f9979b747be2e33a1e024b72b3f90147cd797fdbe0708b1abf08d42df55bd50e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c99f431f9f3ffc8635fe0727155507a484f0da02a71cd7fde4aaa49a44dfb8c2
MD5 7e4157cd11cd05a4415bbdba673a0d6b
BLAKE2b-256 2de7d39584f157153668589a0f8dba5ca8b6b5ded39d02c81bd26d014701f60b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 deac40b7125cb0c9042fa181de2e572f18d6226a5f4c379366c7142ce38b6851
MD5 e28300282a71cf01aa10f1217fb5068e
BLAKE2b-256 ae07468c7b11387d95c44410232e34d2138061fa0e35ff569506ec350dcb0760

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 840.1 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f556b1b6871bf9e3a360023dd8659ce283cd799ad7a01cd2546e4fa8f52f6701
MD5 d828aa022ecb484698ebbfdd917b81a4
BLAKE2b-256 4d5ab48a03b17c678ac9263f4195787739f5be5b40b0ee5c706848fdde969f2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 892.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e309aaa016f533df6d2a1a54415bb4025a07e3f66d9fd23bb4b3ee133d800768
MD5 6e1ff88ed8c055478f702b0a439e3514
BLAKE2b-256 5b51600a654273e3930dce0c1c27dd766e87e564ecab9769b4948ba6ca90abab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 216300710b360a400ea26d267f6aa29e371b0fe59a72a358d15fba2544b0519d
MD5 41227ee2629962717fb44a69437d3ecc
BLAKE2b-256 b1ba02ab3935f96d2de9bfa66cf7fb7d2a6eb9d6910ead135d69436a8f5ea0fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d929e82372b8dd3254764cb5478e1885b54741bf322fa93aedd8c1cd169688a5
MD5 2b1b9fe40fbb52268b8195a6d82c0e35
BLAKE2b-256 bba0a10d98a2f164182788bbab85c48f187d5915ddc22a845cc1b8caf39e12ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b3d4e664ca47981153682d42adb2316efd4c4ea581b315a0b649e1a397b3253
MD5 9d48f5a4fab0ca6e8bf4d1df16962890
BLAKE2b-256 9fbb2bbf457fa568534baca503013cf34f60f0db4054503e6ceff914393714e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 958.5 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9701156ffe226e460caa2e59b1bf83a58d6eddf53f99288b73e917902c25cdf0
MD5 fd39bd792937d600937bf345cd7b6813
BLAKE2b-256 fbf1d057a7c1403bb9dc2bdfaf0ca04743a7eb1ac7918e1a4100800321d25c50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39588df7a6299100d7577a7056e812297725b01c4b910935eb7cb651d21a69de
MD5 4fc910835087fc0ad0f88f3e1e46684b
BLAKE2b-256 a3173fe5d236c980f9f8e038f0a0a14817b56cd2e4a40f6a0d5e3888b3455a3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b49795c588e18f635f07b67555eb49a3dc69ca48cfde2a39c773c3f86a9ab937
MD5 7e1014ea73057bfd71371fbed8d22c69
BLAKE2b-256 c535fb9ff541c99d2203509e695f60c338e6156d66df9086a3cfdb4bfef32cd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 841.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3ce2be77cec287e730d750f33231adbeaa1cc1f160767c4d55f775732d24fe9d
MD5 3e4cae9be0eeb11e531e69a5e0d5554d
BLAKE2b-256 fda3689d65601815359226c48390fd0290589326c5b797f7b1eabaa705586382

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 890.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 74f551e21fa5dc90ce6d5737f50c11b1e164cf3b90ae37171dafca91518a578e
MD5 f0ae813e7f19743220bb307731df8694
BLAKE2b-256 358d7295bd92115cc84cd1f048bedb55d70f76045078d2560231eb3ad2c69b8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 845.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 27a8d9f785eac04f981ed4df16b493a0ccfe6d6683a9c8172cdb12e8cbde0239
MD5 31925a13a11c05a7b337fa957453db22
BLAKE2b-256 a1f11b73858c572ca51333f1d9c15cd981c956a90cbc86d75ac48af674290959

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12baf134f0bcef4fce2b4499596a7796096d3b2940b758202267685941b473f0
MD5 8039a2ff7ad8f98ee89575a4d43c9e38
BLAKE2b-256 0753015cc4103f525130c7ede1f82cb160b3c39b05999f657fd27f0bc506e0ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7018912d08ad2a4ca6236a108534851411e6ac7a045dd4f543fc2325c648cdad
MD5 1530d5398ccca7422d5db8eed50e5d15
BLAKE2b-256 cef2641b6b6d0540796d4113988e4ce90b9bf6cbe1b2436ceae460b2f9bfe9dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e2a194ca0ed2747352334455a903e86f44edda1c77a67ea17678869ab9fc1342
MD5 6b87ee5bc65c77f21beb0c341d43f7d4
BLAKE2b-256 5988daa4d36d8acb09c335a7f53481acd7101e1d08cbd36fa6bff40c77f78787

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 957.4 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28f613e0d736e171ab9b76306902cd695c712471074983c4a3bd36346814a953
MD5 e77950ae64d9e60eb0e3188b491bbd38
BLAKE2b-256 4e3a7f67933d44522bcb71fee48a8576b7dfe0aa9d335ad9fc63dc6abf899730

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9890feb322efc9ba8ea55ea9b872f78171f34c294cf09c5bcf39fea14ed04688
MD5 683483eea2a6b7752cf442719cf6fb74
BLAKE2b-256 2f77116398a2e91d190d2fcf890400159778e440b96deeab982a1699227f2a28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 841.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 aaa9a960d812084e67faee82b94a36ce5b8dd57994cae4185173e6c8b65ffca8
MD5 e539e21743da5de9c602ea5efb3c8cfd
BLAKE2b-256 7afa5fee0fdf3a821e792f7fc3dda7f87886ebe496109894a7383162d68b4097

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 890.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fa86eca9e7c51e26cf5c07373362fae6fb137d9659bb7375dfc54f09112ddbef
MD5 7b418a9b708c4b1e19450c7a5f2e3085
BLAKE2b-256 a26cf6e3c8f5705559c43318d236c2449d6798c039fc6a727798d513d4169462

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79d781f5774f46ee0f6ca03e8eaa31d8ce35f698026d640fe534ddd258ee44eb
MD5 2f2fff75720516bc2007dc9e8d3d90eb
BLAKE2b-256 78230c55f5ccc532146fd4d31178a0427ceb5bdf919040d697001d50585e5070

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7b8d55b36e81d504113b3d5cf6de47a42633706bff2338a9b5385f867387e04
MD5 a37d08b901bfbe1ee4d8f199d463446b
BLAKE2b-256 2919b181a7991111abfc9cff941bcb72f9d9f0fde4f5459cf99de21bb8cdf594

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9805197ce1b63c9a37570eb0d8efc64ad7fb5d866592ec02a5d63fdbe84bfa6c
MD5 2b85cc6ac6f988998d7fca9728bb7a0b
BLAKE2b-256 1a785b6b115c33745abc6079f1fb2de569b7a8f02eabaf3f654c9a106cbb5705

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 956.9 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e6572eb417e53fc817707c681dcc2a726d0c7efe80bec75661bd5cdab2bab5a
MD5 a87902f0d8a3dd2f48e5f139d4fa7018
BLAKE2b-256 4d11a521d0f8e131fd5d212044a71022fd15152d891e6514253c67459a729886

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82a7cd15616286024840d47a65af90873d49a04236adb56a78637efb94d5a056
MD5 5effb03a13fa1a7a1b04e7830ba11f92
BLAKE2b-256 47c0e2b388c96d92d5e9e6c1856301b547d4719a09317017073fe890b21b8cf5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 891.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0f0413b9b93074bde4ff9ac4d700265c149b7966f3d5def979aafad6d164f137
MD5 d5280744930bc11656760dcd0233097e
BLAKE2b-256 ab02051426af6b15157fdb609482bd7f58f763dc0f7df08850af43bd55464d95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6002b81c72f6085b1dffed0e589acdaeb71da8fe00d5e79e1405d64dbf3d444
MD5 b9c0382358966d152f63dbebf5007308
BLAKE2b-256 8b58c28cb1e62f60e83ca0952f45cf4fedfad293672e5212ff715b2789278d97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fca392d8e7bbdd10ad314cef86aa75055a86c9d17e7cdddec75f8728d77e51e
MD5 4a2f3644cbc4ea02e492e5be27cd205a
BLAKE2b-256 3445d1d69230f38c974afb11619c144aaf422c44b9514296d71329e07c1c8f5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a78693601d607340a723c3eeb53cc28db636dba7c4f253ed12ed19476c6a496a
MD5 750acdbceaf6595a2abadee0e8225a3d
BLAKE2b-256 821e244588cfe24e9e7142ef6668e027c849ca26b898cde47edfce20eaa2d122

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 957.9 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51c8af079242ab2344ba17b7dc53a39ba92638c20b6f924f909e0bc94d3f2b30
MD5 d5bfbd80a582ad60aea8f72b8c5d1e93
BLAKE2b-256 c03ad8d449637332f49937769feb1dfa82a3748ab71f743a2339cccda0d96716

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 737255c80bd2423df33e383ebdddf761d4e60c6a6c3e0772e7392c4ee8d01606
MD5 9afca640263d75a803616bb1eda64c80
BLAKE2b-256 ad4458bf97066757dbdc305a65f10770242a340c27d383e921db5b11b1e02508

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 891.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 de6b8b05e2378c4be459e1d6aff020c3d02d50f9bfdf1c99ec084bbd19c8bc82
MD5 5cba715e698c6039d0148a102619f85a
BLAKE2b-256 38705c925710b87f6241d07176cdaeb9bb5930860e705a2ff3fc8f0d9b89d919

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d64e34d3479c60305a55b4f834ef1e0fe570a6be809ab463c1d61f95ea980f9
MD5 904e19552a4f9e3c48d8c9c178277ad5
BLAKE2b-256 3969e62574a88fca0784d8e491513f2bdc27ef5a2640a7954f97b22c7faf614c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ac5259a12eda4580cf5ff525c317db1a08caed7254720c9b0a681283a16d7b7
MD5 6081ad36006db129e069b5cbaa9fda45
BLAKE2b-256 dbcc997a892bf213fa98c5616cc864dd5c19ab0aac8863dc013245086df053f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d69ec4a788918de7c62a9073a38337bb6521e705500caf73acabed59a1187a1f
MD5 46de9e0d1fc2a5f948b68b494306b332
BLAKE2b-256 140f54b59c008c0e96dec46272db83f143250d17d48fa8fe8e07889f1ac2fd0c

See more details on using hashes here.

File details

Details for the file editwheel-0.2.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: editwheel-0.2.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 892.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 deac7997f13017787e1129de7fd1792ba712233205410c637c5fbfe504732351
MD5 2de05ca4fe21c5298a8f03711a18dd64
BLAKE2b-256 861d5e3a9fcd450a0ef3a80e6cc86419aac20ff69465b9f4ed7359947d64296e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc8870a3d8d4130b52a648fe066a77a3b7140db926a592cac292c6451bf76c50
MD5 4dbd7be93e7da9ea900bde958e7dc4fc
BLAKE2b-256 982ac4ae153136e9b6068101d1e941caf53619a36537da12b448fe710fa8a3b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1669fdd11de89ee2e20e7091b1590740cfaffb4251f4f150a6a86a2b40503cab
MD5 44c2c54131ecf620120e83449b4e1f44
BLAKE2b-256 912d18ba853b86665516e3cce6cfc86fb4f1d0a0ebcbf855ede86d7523df7d6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 beafe191687baa7d7075937606d8c59ab566b0db39713a053b42ef4220b52bcf
MD5 99ba2b13741835cca1d539049f2300dc
BLAKE2b-256 af8964936337a0a42abfd850e8acfb4f3786c3d2628ba43afe222f5f5cf84fc7

See more details on using hashes here.

File details

Details for the file editwheel-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 258c7a46d9bc907f2bc5d9ffd39cc75263e1b07d5b6715ef0ce68a8eb4c90459
MD5 bc6faac2278650b438a13d765545b3dd
BLAKE2b-256 972c14b44ad79d743ec116757aad0f922ea8971754b8073895fed916d1e3094b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.2.3-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.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74c8826f0a997ed8c7dbac42980220c8cdfccf622f246b722196e020024115db
MD5 b28875d5f0efcb4cf23220dda8a11e7e
BLAKE2b-256 97bd0a0e30d93b881a89c8a34b40fcf7996522113a3f0c38d260e23344e6829e

See more details on using hashes here.

File details

Details for the file editwheel-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f7e9c6061ac1f2fe8042becb6f7a4e5ae9e58fd2ddcd7686bae8ba655447ebb7
MD5 94a040f7d8650dc144d86bde3650ad1c
BLAKE2b-256 ad1b9a6f43d029eb31a3467bbc95bda959ab327a69a2ce4b0abc8b3ff60ce600

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