Skip to main content

Module for decorators, wrappers and monkey patching.

Project description

PyPI Documentation

A Python module for decorators, wrappers and monkey patching.

Overview

The wrapt module provides a transparent object proxy for Python, which can be used as the basis for the construction of function wrappers and decorator functions.

The wrapt module focuses very much on correctness. It goes way beyond existing mechanisms such as functools.wraps() to ensure that decorators preserve introspectability, signatures, type checking abilities etc. The decorators that can be constructed using this module will work in far more scenarios than typical decorators and provide more predictable and consistent behaviour.

To ensure that the overhead is as minimal as possible, a C extension module is used for performance critical components. An automatic fallback to a pure Python implementation is also provided where a target system does not have a compiler to allow the C extension to be compiled.

Key Features

  • Universal decorators that work with functions, methods, classmethods, staticmethods, and classes

  • Transparent object proxies for advanced wrapping scenarios

  • Monkey patching utilities for safe runtime modifications

  • C extension for optimal performance with Python fallback

  • Comprehensive introspection preservation (signatures, annotations, etc.)

  • Thread-safe decorator implementations

Installation

Install from PyPI using pip:

pip install wrapt

Supported Python Versions

  • Python 3.9+

  • CPython and PyPy implementations

Documentation

For comprehensive documentation, examples, and advanced usage patterns, visit:

Quick Start

To implement your decorator you need to first define a wrapper function. This will be called each time a decorated function is called. The wrapper function needs to take four positional arguments:

  • wrapped - The wrapped function which in turns needs to be called by your wrapper function.

  • instance - The object to which the wrapped function was bound when it was called.

  • args - The list of positional arguments supplied when the decorated function was called.

  • kwargs - The dictionary of keyword arguments supplied when the decorated function was called.

The wrapper function would do whatever it needs to, but would usually in turn call the wrapped function that is passed in via the wrapped argument.

The decorator @wrapt.decorator then needs to be applied to the wrapper function to convert it into a decorator which can in turn be applied to other functions.

import wrapt

@wrapt.decorator
def pass_through(wrapped, instance, args, kwargs):
    return wrapped(*args, **kwargs)

@pass_through
def function():
    pass

If you wish to implement a decorator which accepts arguments, then wrap the definition of the decorator in a function closure. Any arguments supplied to the outer function when the decorator is applied, will be available to the inner wrapper when the wrapped function is called.

import wrapt

def with_arguments(myarg1, myarg2):
    @wrapt.decorator
    def wrapper(wrapped, instance, args, kwargs):
        return wrapped(*args, **kwargs)
    return wrapper

@with_arguments(1, 2)
def function():
    pass

When applied to a normal function or static method, the wrapper function when called will be passed None as the instance argument.

When applied to an instance method, the wrapper function when called will be passed the instance of the class the method is being called on as the instance argument. This will be the case even when the instance method was called explicitly via the class and the instance passed as the first argument. That is, the instance will never be passed as part of args.

When applied to a class method, the wrapper function when called will be passed the class type as the instance argument.

When applied to a class, the wrapper function when called will be passed None as the instance argument. The wrapped argument in this case will be the class.

The above rules can be summarised with the following example.

import inspect

@wrapt.decorator
def universal(wrapped, instance, args, kwargs):
    if instance is None:
        if inspect.isclass(wrapped):
            # Decorator was applied to a class.
            return wrapped(*args, **kwargs)
        else:
            # Decorator was applied to a function or staticmethod.
            return wrapped(*args, **kwargs)
    else:
        if inspect.isclass(instance):
            # Decorator was applied to a classmethod.
            return wrapped(*args, **kwargs)
        else:
            # Decorator was applied to an instancemethod.
            return wrapped(*args, **kwargs)

Using these checks it is therefore possible to create a universal decorator that can be applied in all situations. It is no longer necessary to create different variants of decorators for normal functions and instance methods, or use additional wrappers to convert a function decorator into one that will work for instance methods.

In all cases, the wrapped function passed to the wrapper function is called in the same way, with args and kwargs being passed. The instance argument doesn’t need to be used in calling the wrapped function.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

wrapt-2.3.0.tar.gz (131.5 kB view details)

Uploaded Source

Built Distributions

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

wrapt-2.3.0-py3-none-any.whl (61.9 kB view details)

Uploaded Python 3

wrapt-2.3.0-cp314-cp314t-win_arm64.whl (81.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.3.0-cp314-cp314t-win_amd64.whl (83.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.3.0-cp314-cp314t-win32.whl (79.7 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (202.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.3.0-cp314-cp314t-musllinux_1_2_riscv64.whl (196.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (210.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.3.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (199.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.3.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (207.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl (84.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.3.0-cp314-cp314t-macosx_10_15_x86_64.whl (84.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.3.0-cp314-cp314-win_arm64.whl (80.6 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.3.0-cp314-cp314-win_amd64.whl (81.4 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.3.0-cp314-cp314-win32.whl (78.7 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (168.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.3.0-cp314-cp314-musllinux_1_2_riscv64.whl (159.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (169.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.3.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (160.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (169.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.3.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (170.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.3.0-cp314-cp314-macosx_11_0_arm64.whl (82.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl (82.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.3.0-cp313-cp313t-win_arm64.whl (81.4 kB view details)

Uploaded CPython 3.13tWindows ARM64

wrapt-2.3.0-cp313-cp313t-win_amd64.whl (82.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

wrapt-2.3.0-cp313-cp313t-win32.whl (79.2 kB view details)

Uploaded CPython 3.13tWindows x86

wrapt-2.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (202.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

wrapt-2.3.0-cp313-cp313t-musllinux_1_2_riscv64.whl (196.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

wrapt-2.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (210.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wrapt-2.3.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (199.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.3.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (207.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.3.0-cp313-cp313t-macosx_11_0_arm64.whl (84.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

wrapt-2.3.0-cp313-cp313t-macosx_10_13_x86_64.whl (83.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

wrapt-2.3.0-cp313-cp313-win_arm64.whl (80.2 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.3.0-cp313-cp313-win_amd64.whl (81.1 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.3.0-cp313-cp313-win32.whl (78.2 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (169.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.3.0-cp313-cp313-musllinux_1_2_riscv64.whl (159.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (168.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.3.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (161.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (170.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (170.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.3.0-cp313-cp313-macosx_11_0_arm64.whl (82.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl (82.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.3.0-cp312-cp312-win_arm64.whl (80.2 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.3.0-cp312-cp312-win_amd64.whl (81.2 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.3.0-cp312-cp312-win32.whl (78.3 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (170.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.3.0-cp312-cp312-musllinux_1_2_riscv64.whl (161.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (171.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.3.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (163.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (174.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (172.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.3.0-cp312-cp312-macosx_11_0_arm64.whl (82.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl (82.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.3.0-cp311-cp311-win_arm64.whl (80.1 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.3.0-cp311-cp311-win_amd64.whl (80.9 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.3.0-cp311-cp311-win32.whl (78.0 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (161.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.3.0-cp311-cp311-musllinux_1_2_riscv64.whl (155.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (162.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.3.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (156.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (162.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (161.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.3.0-cp311-cp311-macosx_11_0_arm64.whl (82.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl (81.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.3.0-cp310-cp310-win_arm64.whl (80.2 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.3.0-cp310-cp310-win_amd64.whl (80.7 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.3.0-cp310-cp310-win32.whl (77.9 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (154.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.3.0-cp310-cp310-musllinux_1_2_riscv64.whl (150.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (156.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.3.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (151.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (157.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.3.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (155.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.3.0-cp310-cp310-macosx_11_0_arm64.whl (82.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl (81.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.3.0-cp39-cp39-win_arm64.whl (80.2 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.3.0-cp39-cp39-win_amd64.whl (80.8 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.3.0-cp39-cp39-win32.whl (77.9 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (154.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.3.0-cp39-cp39-musllinux_1_2_riscv64.whl (150.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (156.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.3.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (151.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (157.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.3.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (155.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.3.0-cp39-cp39-macosx_11_0_arm64.whl (82.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl (81.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file wrapt-2.3.0.tar.gz.

File metadata

  • Download URL: wrapt-2.3.0.tar.gz
  • Upload date:
  • Size: 131.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0.tar.gz
Algorithm Hash digest
SHA256 681a2d0eefd721998f90642762b8e75c2159ec531b20ad5e437245ea7b06a107
MD5 1100ca602ac94562956ea6ac3dca93c4
BLAKE2b-256 2bb0c1f5a970721f06b85c0cd5142e0ff8fe067708abd779b0c4f4be7d61d09f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.tar.gz:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-py3-none-any.whl.

File metadata

  • Download URL: wrapt-2.3.0-py3-none-any.whl
  • Upload date:
  • Size: 61.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d8c7ed08477429752b8c44991f40ad7838b18332a160698740a6bfbc10d998a2
MD5 c60f3b021f8d868e4f251836f80fd4f5
BLAKE2b-256 00393daf9f47be208606586de4568ba6713db53ebc8fd7a575aea1fe57983b69

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-py3-none-any.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 81.8 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b1e5aa486e269b00ed35e64771c7d0ab8096cfd2643405ca8cd60ebedc099a51
MD5 3e6343bc8986bf89efc56bc692e3b3ac
BLAKE2b-256 55b3af176d79a8515a8a720eccdad9a96f6e31a30abf2865430c8c42adf2fd13

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314t-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 83.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 42869085687f0aefd57c0f636c3f9354f8ffb321a8ba9cb52d19beb796e561c5
MD5 bc2817eab2513133cae5062687b04090
BLAKE2b-256 c40f270bafe92fde3b069a39bc01e39ee79340895b335640df861d43d2a51885

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314t-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 79.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 629d73378082c00a8173031f9fb30a3ac6abbc894a5bfdfae71fabc60642d501
MD5 5094c0caf276ac4cc86a5e13fe6e244a
BLAKE2b-256 cd257860927edba06b758b8852a6f02e832be715563c67a6795d94350bc81099

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314t-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 626b69db2021aa01671ec7bbc9740e558522bd44c18cf2ce69bf3d666a014109
MD5 4fcfb6b27b7f7e07140b654e65c0c3c4
BLAKE2b-256 8b416d7bcc895b0f28b2250e10908f060687b9165429dcd7f22ddb3d4c031b74

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 729126e667da34d251b8ebf8a45ef0c5ddadc21542b3d6e1abf4259ece6508df
MD5 c759294bf6c60fdad30ccd57ea20cb02
BLAKE2b-256 d40756f26c9f9979586a021e8148747004aba4498f49458c90b0502969b904e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93513bec052c6cd987f9f580c3df068c8bc4ebae6543736be3ca7ec5959cafcd
MD5 86935d7282b454dde7a445d27201fcbc
BLAKE2b-256 2b014446b80fa2ffa47a3449b250d004ba1c1937f07f64a179608fec735df866

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 39febbee6d77301d31da6996b152ce52452da7c7ef72aba10c2fa976dff9c295
MD5 2683d1f33d609abf1087780b0d7a1336
BLAKE2b-256 b3289935d62b1499e5c8b3d191e99ba4eb31ca237a0b699142011a837e9dc7ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50f416b74d092bb9f41b424e90dd457f365f7ba4b11de62a23679769a21bd85c
MD5 bd45b3c0dcbe5d95ee29f451f47d0740
BLAKE2b-256 3f599b538cf7795217e810699d16bc88b96a830d9b5c403eb2ec2db6b5f2ae81

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 85de890ff968196e92dd1ae73a9fb8970495e7650a457b1c9ef0ac3dd550bce2
MD5 90dd8a9022eafc6f64ec801ec3e6b927
BLAKE2b-256 636150d511c0dc5105563849e86daa3e16ac7feef699f79fb05af45ea70107d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c88abcf53daef80e01a75c7530e727fa6e2c1888fe83e3dcdba4c96216a1f5c7
MD5 5616a8e055615a12bdcacbf65ab2fab5
BLAKE2b-256 6aeba1aedf03283bc9cbf8a1783995ddc54e3c5a86878f19002d2c428494f4c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a6b5984cd65dd639546f0eb4b8eacf1c31cb2fe9fb5c27bffe240987cdb2cf84
MD5 65ce3fc2c061ae8d8fcb2c18a0399440
BLAKE2b-256 43bb6c5e4a0f66ea0d2b2dd267e8dd05a0014eea56840b3c8595d40b0a5d1f91

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 80.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 22cc5c0a717bd4da87018ae0bffd4c19c6fb679d3ff357216ba566ab26c76cab
MD5 5e311559db35a6890b0b808ecb0a3672
BLAKE2b-256 5ea49cbd53bf05746bea2c392af39cb052427a8ec95cbd494d930733d8f44681

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 81.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cc2cea812e5cb179a796b766747e7d3b21088760d8deb95676d482b8c8e6fa7d
MD5 64fbdbf473c234eec2f9d6dc7eb9230c
BLAKE2b-256 3d976fdc20a9f2ca304748b3f0819cbf377d55260562777bf0b615431bc3c181

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 78.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2935d5454b3f179a29b12cf390ee47246740ba2c3a7545b1b46ba31a5f2a4a0b
MD5 95ffde82bb492acb9ec99e2129debf85
BLAKE2b-256 d5e1016104650d4e572fa91506eb396b3dd8efbccc9284fdc1c9479c3d21db28

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fa0df3bff4e7ce45759f33fd39335fe2f60477bb9ecf7b8aa41e7d07ee36a23
MD5 172e9d263b448267ecd0a1de465a160e
BLAKE2b-256 43a5ef2066ced8e5fca204e2b361e9708e36555b40949c583d997ea3b590817d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cd3a2edf0427013736b8127955cec62608c56e53ea47e82812ea32059cda407f
MD5 991b7d8eae3529483f82d2cc8e0518b6
BLAKE2b-256 c3f23d1e47ea81b822210f5df1bf942fd90780a75c055243d569b664529dea88

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24da48596326ef8e448cfa837b454f638713d3531262375f00e5a9681682fc07
MD5 66b598b966fcbe9177d266437d9bcf30
BLAKE2b-256 2cca0913af0d2ec0c43865d32d615f518fea66c13c5c930e489e9b0de248e9a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1d6159c9b2fefec02314e1332dbbbfaf960e369dfd26bcf7f8b258b5732065b3
MD5 9e882c2b0246e7699bdc5328cc207678
BLAKE2b-256 c7300d09e6dddc6b7a7230ac77f50254b5980ab4fcd22976f72f8cc8a0404458

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e49885a62ec4ee854d1b9e6371fda6afd219917225752abf729a3f36d4df9a5
MD5 d076da57e6a1f77e3e835de10a2c3417
BLAKE2b-256 ed25fce087d54b79b8905f3c3c9dd5f454bbd8d8acb80b960c4a6aee5b4659b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 141ed6211286a9660d8d6702de598b43f0934b4f0eda16393f100a80f501d945
MD5 f4f33c33634f8ac03c5c590d88f206e6
BLAKE2b-256 f57331c1bf0f3384062751c2094dadb314916d70aa9b6bfd26d994b4a7b393fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd85b0aa88efdb189d6ae2f35f4526943a8f091c38599c9c31478241c819e6a1
MD5 383907598ce1dfa6abf89a0b95907e7e
BLAKE2b-256 b3310916d9cebf848ed3f1a0c1888faee421747df77331e4db2bc527a9a85988

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ea52a0d0f08c584943d5764be0e84efa912c8da23c23e1e285ff2f5641c18fcc
MD5 01864dc9425bdc0dfe252d17e5cc081d
BLAKE2b-256 5810b073beaea89bc0d3670a75ff51139430a54b6af7ba7796507730634536dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 81.4 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 d2cc64539da63e39ffb9c7ede849b6e8ddaaf7b3876b5cfb04efd85a5f3f4eb6
MD5 8c0e15ed352ebc2108f6b3ac51aa14f6
BLAKE2b-256 80fb663e1de5332a71685a729754312d327d4cada767c36e1c5a2db4c8de49e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313t-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 82.6 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c4bded758ad6f03b965830944a2f0bc5b2eb3767fe5a7310134315d1a6610e98
MD5 719464cb634780e93347153d38616dcf
BLAKE2b-256 6bffb94878f8eed809ca042685276bcea9f24e8c2ca7c9653bb80bbb920a68a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313t-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 79.2 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 7ebb274aba688b043429eb1500ff8a76ce0cb8ac0812ca3e301f06247b8722b3
MD5 823551d3d72662a209d1bbf2bb0d334b
BLAKE2b-256 139b4fc042ceb757866dd4a5fc057b3b736f2b360d3703ce9f830d83dc9226e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313t-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0f7284f88f4833705132d06d3b425a43095c2cbd07c58166aac3ab646ba12a4
MD5 520846cd7ca8e6f64b79c71a29d19325
BLAKE2b-256 0d5c3d9ef411149543016ee6bcf3af707f787cebd946527452b94bf122e9b7b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e3b9eaa742ae7a0aaaaad4ca4b69469d757af2d6e6663ef1dadc47adec0aeb41
MD5 1d87570977751259477c463a24fb80e6
BLAKE2b-256 1fd18724b5da582e62070dc9bf4d8bf1972f317297eefd7ba1f2b5c6393ccf6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313t-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed635a9ca4f3a5a2b900c10c69e823373bc00ebc114b459383596d3487da3570
MD5 08f3db5cf05bc1937e4154c1e16a7282
BLAKE2b-256 3e3dfb31d3db7d9834d265fb1a27a2adf0ddf51557c67458c97b22439ad6ae3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6208f302f110295d64b22a7ac96500c791bf492dce4366e622e4912b077c9687
MD5 9e08940381b617bbf78bfb69e1d68493
BLAKE2b-256 63272d64d394df7bf181955b3bb562bf33c4492fb4be113f53071106d43ad8b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 379f670f45b7bb8993edd9f6fc36c6cc65edb81cffa0b504be34acb0303fff0a
MD5 cdabb776407087b1a4610ea848174633
BLAKE2b-256 1d3ed7777776806c579b761bac2f91721dda9f04c7a1b380213c5935cc750ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 646d20d413ffcd1b0a2f700076e2d0252d872dcb7754860a73e45a59ea883614
MD5 7efa75af46ee1cea12793d819e9bbbae
BLAKE2b-256 fa1a4a796ff7adb26ada6d4b758c94d47a38320b085e7099afc088efbbcdb006

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f5d2aec29dfc76c37e23897dee92766a3fd4f3bff3ae7fc9c6b4bf37d8c1360
MD5 f9614cedbc1d18510daaeac46f8d9963
BLAKE2b-256 3b4c3d1921a60c3e8c71c540ff136e6a47a1fbccf7f671e818394889f7871d9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fd1f2f557dd3491fe75905e578f4db967393d40d1a8f468edc4d40ac7f2d5944
MD5 feeb9d43a2d53d8029f12ac3f3da539c
BLAKE2b-256 96503864848b95b28ef73e17551fc8dccbff2628a834f52cf26a57f9c419fb83

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 80.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a65e8db2b4e90c2e7ade931086351c98ef420bf7a94ee08c95ac8a3cbbc43579
MD5 6387163a6c556f42526c8a0141bf98cd
BLAKE2b-256 1186fcc9a530579e008c9478bb565a6cdfbfd33536660f069c8b91a6607c5050

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 81.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ac870cc97b73bb00ac353329e9559a4bebc47c4c86792ed9b23b58c15b6ad838
MD5 2800cd075d5b1280d477f0df6dea5402
BLAKE2b-256 6c7e34c87fa2174848dfee820322aaa318bab08913998ccecc8d2f57b4ad4639

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 78.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 10461884b3014fbfc8eb7d09a93c5f246363e6711d9d881f95eb8c27fdef049f
MD5 b745c0eade05accc5f754665533f70e3
BLAKE2b-256 9ed4354e1725e35a73b2af4fa70a3e024c7a5d1bf1802dfb862dcb668aae0253

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8159ec0b0cb7608175eb150de94c19e34f4d47ac655f5ca9baf45df6b688ffd3
MD5 405121b9d2c0f4a4509f443eba13dea3
BLAKE2b-256 29a808a56e2000a8816d449dcbad8c8b081697acbbd490821ceca0f9d8e8d20c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 261f53870cd4fb2bf38f9f972c56c728fd224cb7c65721307de59d9e7e6741ae
MD5 91301a6901ec3bd8c7c307b46c300171
BLAKE2b-256 f3732fa58dd97f191c997755e2c6d569a68f0c433db4e4b36099bdd7227b6cac

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3f3d7ec0a51fbfe00d3aef047641ff2c58b25565b4717fc1f90e050be01cba8
MD5 f03aecdda301fd26d771479365c452b5
BLAKE2b-256 01e145d3cf74414780bdff6d0380467e003f6eb0f028b6c9403db868dbc7209c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 242b60c21e30866e6a2fa606c612b47c553fa60c0eaeeeb7797fb842ac0ce609
MD5 224c57944e2ee0ed36d22f703b92e85f
BLAKE2b-256 b2fc4f1b6918f5290db959d6e0c07f77385d87cede29c39c9cf8f145e9c82954

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54ca1d5573f69b5fe1d74f1f65799c68015e82f685efec9fd8cfa40a094c44d0
MD5 0a40ef73389d0bf92fdbc63e97a3c3c2
BLAKE2b-256 59f813b79a392930bd0dd6b86cbfbfe1c40944110456e1dc6d809e5c46ece904

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9045917809c63fdf7abe3a2ceaed3d670b8ee4500ddd9291192d30aeb34467c5
MD5 3982b6a6c8c455d950bd6e01b85472ae
BLAKE2b-256 d890343bb5d0f1f9669bc252a6073f085b4abf862511bd5c9c9eaec754341f1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51a7a4181c1295774812271fbcd7c909df372bc25579d4ed9eb875caaf0ae86f
MD5 6bbe019fa77ecf26c26433c9171b8b65
BLAKE2b-256 d7ffb7e2776e7c294075eb712cc9ef573d1b818f393006d09787262b8fc871c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0d3fb71e65b001adfc42684522eeccd9c21d8ba679945abc993439567b66e59f
MD5 79c9666689ae3731981b186d04b9f0d1
BLAKE2b-256 8e6e0f88a072483e76b881e3fdcd6b6ffb4a5791002514fe541e72b1b73c859a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 80.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 67bfe2485f50368c3fcd2275fc1fd100e350d601e0058921a7c82678a465aeab
MD5 71b0ce33103de8f8e0c037001d9efd84
BLAKE2b-256 a84f8b5de0395b2a72216751d41c9861df6facaeb611b619d8810ed2b3b23eb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp312-cp312-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 81.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cdc021cb0b62471d6aac7f2bd92f3b4658073775f9ee7fcd325c511129e7bcc8
MD5 db292301569eed5600d1a176c0581212
BLAKE2b-256 51f94a6925a07951df56394f7e6ebe14f69f1c5ef9d87aa63e0839acf15aa63a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp312-cp312-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 78.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fb8e2e6704a1e0b1b989546c69e2688371ef4a07fa5f61bde3eb6211186f5ac1
MD5 8b52ddccb8ddb88c2a9ec36b94817cf7
BLAKE2b-256 37a55dc590e863a419930d988f8b7ca3e75a6befcfb10b6003b3a152f3d5f732

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp312-cp312-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3da470536bf9645143323dd41b32db55c6f4304ad382094c1a1da8a92061e10d
MD5 72c9868b98d0277c62ad8ee5a5c1776a
BLAKE2b-256 caee82f1fc9e431b5c2c5a6d201aa865dbeae3984c311c6d11a185f0c8367cf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1598becd30f8f2777d18564064eb4f4dbe1ab0e05a8f09786d0ef505ac782bf3
MD5 cd94f2f9b302b4c262e67af6c4138140
BLAKE2b-256 7edd63cd4c864c65ef4906df64bd2d378f4a62b54f28063f282dfb3bf93caead

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 418f54bb09d1762db02c7009b4051149893af3153a87f92d70356703c11eea02
MD5 c2ef295b817955369b5c5b02f8f3a827
BLAKE2b-256 35eaa0af2d9da62897af2a055484920de05dade30d2ba2c0d65cbdea875d3d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e5301c35cf75655eb33498f2bd6ae8703ca19940e3167dc9cdf740c712a39c60
MD5 edc27244dc573f260d7add0923c8e39e
BLAKE2b-256 121e8eded8615d39e3ce81f626937a3a87b280a2a86239a2bf14a4b4bb345034

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 392158c9a7f2ab1b8699418bfc0fe6f83548788c418b27d7bf2019ad3405cebb
MD5 774f754996d08f1060737d35f76cad7a
BLAKE2b-256 cb89ff7814f6eb6856b479946117d1138a2fbb46cdb6b1f379db359056c69743

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5d221a6e6ddd302b8397433184e96b59f259f50024b854db1c411a881586b6b8
MD5 6b3cce8733c0206b66379c2ddaa4ad4a
BLAKE2b-256 287fcfd9bc4b1f5e424eeea83d0493e43f3b1b02707ce8e50c47945873982bd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69e477046f2237ef0bc6547544ee73008dc764ca26eff44f09e976d221b34d5d
MD5 5d412e8f45d41fe8bc59aef7033ab072
BLAKE2b-256 6e5551b92daaf6defb57f4dc56bdcce985400f75c6984a03ca5e78ccac717028

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0a45ffae742ce91a16e11cb6c7cd71e7f9994f3cbd283b962ab093f5c6dcf525
MD5 ef27967d42f08978157d79ef27629c80
BLAKE2b-256 5b4ad17a0fad1bf1c5f2c887ff71fef75654141b0880bff71d157d955b5bec3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 80.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6db604ef0c67bdb2042ecdfd7b7f037cf09733557ca42360d1018285634f7b98
MD5 7576907dcb99a30a0c793689f29a7c2b
BLAKE2b-256 c43d9278ada8a2b3f24372b630361e84e9a7de7abc3784634860c26d1c37785a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp311-cp311-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 80.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 195b1842b4122fb54e3cd3dd5b2b4aa49302a5a61da901df0481f5c97aedde84
MD5 2b9e77eeecfd49d5aed29a650f7e008d
BLAKE2b-256 4a62ecc969b13b141fef89b888c9760821cb01a86ac8fc953911592c8e1e1522

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp311-cp311-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 78.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 45c9279b373d15649dfa2c2077cb3408ea1a6d3125afbdab9d6b809a66f68e14
MD5 bb39163fdf7e23c2f1b303f71b650b60
BLAKE2b-256 0f322bd358c6f4f1305c813479d1e9ba746bebdd794f4a20107ab2b3ee0cbd45

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp311-cp311-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ba1e5e08ddc46130e9682b2c249f2d1dd39bda9106ed4bd401b7519f18f41bd
MD5 703cc6af149683e2eaf531b93cfff8f0
BLAKE2b-256 e8ba60bfd9b1a751f4fcb2d603668fc272d651ccdd339a56acf8c40ad21a0293

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3d1c2c1b808600d2ea808e6360910a60ed5f409a4011655e10f9164ba0a414a6
MD5 ad232aa3a73e03bb9af083eb4265cffb
BLAKE2b-256 0e609bda34c3d7d182aa703fe35339ae0ed4c4dad5e5c587f93890143e1f87fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 816877aa749253149f9ecfd2635d4d948ecfa338e1a0311d187b1acb1bb8a3eb
MD5 90e1009f592a0d705cc47953ccd15534
BLAKE2b-256 2341c35940ea1c423f129ebe4361db853bc80d4def6326242e1206fa15bf94f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9790ea25190a4e0fe4cdf4eeb868e9d75f8a024a70a5b6bf9c348a3a2b72e731
MD5 a6e80dedff351a7a454d0ff83f9758e1
BLAKE2b-256 4de504f34d38e66d857dfc2fc4088d60e70c0e422467822defa49b2b4a26e17b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0077f3d65541925fa83002f967b22ad6550d24813ac64cb905f717194128d9c
MD5 19e8e1ef549b3d628773b0ee71ee9486
BLAKE2b-256 492cbc508fee75eb2919ed69769800b09968e4aab16897f909a23f39c81e323f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fc648a335d7e01adb3640b25f02fd0ea05886cf04d0af7f4ee902bc7b5e466e8
MD5 81203650636da319ff2c482aa1d5d6c3
BLAKE2b-256 71714cd2151a236f44a6e2dd4ed8011838d7ba0be3d656c8bafdfc65a2ed1917

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bff9a671bc00709cab5a7f745c592b5671873449db0ee2a569af994f16b29a4d
MD5 c2fdc63c8b0ad296b027ce9bfa9a0582
BLAKE2b-256 84ca613cefd9c5977366b1587e61c0b428176d382e6d75b454084c5e58503042

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ab559e1b2551d23d54db2a0001c6d73bad022a254639561c5f6c382a9d6c2fe
MD5 28ffdce4d30ab9f026d0b2be187b2422
BLAKE2b-256 00b89182e4c618a847be0baccb68e4602b070d0fa22c782cf058f4bc66b32709

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 80.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 1236fa25173ca964c97422470482e9011b9e3c7ed0d75798b40b3da3b0e0e760
MD5 4fadb8b2f5d076f2a6de234578789221
BLAKE2b-256 b61375947450c5bb57795fa86384721cd52c5c4deb0879022f309501a8a85d44

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp310-cp310-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 80.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b4fc96b159af0a3e0faa72475a69d66292bea72a5bed1e1aca1bffbddc3cb2b0
MD5 79fa2f800c82c352b1b76be4bc824924
BLAKE2b-256 c4eb921405b4dc55d4f8be4c700ef120539fdd75d5fdb50d83bd257171ee18e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp310-cp310-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e045ff75d7d94900fc32896ed93c45ce2d2cac28c9dead582ff9a5a49d446e35
MD5 bb3b6484ce87b6c419d6dd440f0b5851
BLAKE2b-256 1265147563a3dfa6e830c857b93b530ebd8c0cd9d540e5914aec8f9b12880c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp310-cp310-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8388ba7faf5dbf9ee106bb70d66f257629b1bd98091123e19e8a4553a319199
MD5 f540da16740deb31e3c1ff8005022103
BLAKE2b-256 c0f21a3b949c0322fb27396eafd1044328c1cb0400e0b32105d75a3cd03096e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e2e692bc0d63f881cf7006730a56bd4e0c2fab5dc318466942805d692b166276
MD5 8cf54cace666b95994daf126bace508b
BLAKE2b-256 1fd6c66b4ba4eda49257c84d5c2df26118280f09ca7905aee20d0064db778d13

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df4ce31150bcd5d9f36f816aac3010ab4f4bf8672ac1d3b0ac7d539ec61c7c02
MD5 3c2cc316e5e2cc17f8c3afaa08badbce
BLAKE2b-256 ce1742d670dbfafd49076c6eb2b7d67633d7e1c968e39bfb11a135acb6fac67b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a6e19531ae33c508cea7d84a7edfda01fa86e51b8d1a93a77712c55e6e469152
MD5 0a33ff19860109f2a66c9c31dff4e87a
BLAKE2b-256 73316c7799d7b6431fcd7e1b83245fb45258a2d2c3a2187fbaecb83572a72d7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc82c2ccc8e234c844f5303d9f2984b346dcdd53e94823ce8420d2c75b4b9023
MD5 54305e0442a6d9810d46e9d0cd12dd54
BLAKE2b-256 6c211f780bba935dcf697c0c59de9be3a559bbb8e31a53ca3f25422023738432

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ad71df7a04dd3497e9302e81f4a7c91bd401ea0e15a9df9029527900f94bee43
MD5 c4b139beb265034c03a5ed38177e685b
BLAKE2b-256 a50f94ae724c5087eb6054c0d63febd7094947dcf302fe058e2e0488102a872b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce9f398f868d2b3b27aa2ea4de79645ef9077aeeac8dfc2814b0d542c6a2b87f
MD5 5d53bea89e8aa13ff46d8b05490a8dd0
BLAKE2b-256 7a5a3c6117938be98754578ab83f5a40d7d0ea2cd2c487dc5cd6027ee7228229

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0bb2797048db0956348cb3058c33bc4184614f13231389cfbccc16a5d32780a7
MD5 6bd37d9efb6343b42e0b19ceb1e24eb5
BLAKE2b-256 40315822ce37ca8820c2ed35a498c67c8b37960b9cee2ba437fd32849d0a234c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 80.2 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 c8858d8ff9822a081e3cc49ae1b3b22f0f789c14001cdac8f94564010d9c9d66
MD5 e75ff871487c3d0474f46799664c5741
BLAKE2b-256 3f91a86501de81265751a42b3c3f977e6c88d580936dd180e3298e2bd813e0d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp39-cp39-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 80.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8f8a1c6472675956cece9a8f403f43c3594f1681319eed2dd56f60877397c636
MD5 f14df4ad0cb55f92c0c94b4e3fe61da8
BLAKE2b-256 eb2c40f523565f1aed94d0030f4f99f481adc5b5620ee8600bfcd46effb49a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp39-cp39-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3873c3c5ca9f4ef91f693602eca19d1f1e7c410338df82a4ff11d826b5896a8f
MD5 42fd8217cb7105f64e9241bb4624ebca
BLAKE2b-256 4b90e25fd18051bc83a1f7c62edd184a262a3f593716126619ebbc79de801e6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp39-cp39-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 154.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 628f3ba8ec793a5b10a6cd8c6c6b7b55eb552abd1f3bd301336acb74c7a82dfe
MD5 613a9e9a27ba726226bab5130759419f
BLAKE2b-256 5a7e14f4b6f2d9a89186f35f04dd1ec6aad41ffa439dac16c88fc41f3756b9a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e31734c5077f29f892b2565eee5106d610278151ad49fc6a9d69a647cd5730e2
MD5 826df4c4ee1e157afb29389b6d47cf18
BLAKE2b-256 7f8efacfaa9b2d4eda4f14fb5f88fc493947d1513cec28538613082e1663037d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73d0b10b64620a2cf4bc3d31775c4d9527e309a5549e4379e3bf71e8d2dc193e
MD5 ca29ab39f5816be531829b44cd650ff3
BLAKE2b-256 e132ed810ea37c2b4b9948bf23def5954a1848d98021602dd7220db3f8ee1a58

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b767a9566f165dd14decf8f4194c6bb0ce3a8420cec213824e05a99400c9260a
MD5 d90dfc4962175aa6371aa2968300f54a
BLAKE2b-256 20f8eac651ecc80db2c7ac697111411de05fd4d4f9eea557d32b9bb11e1ada5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 abc71504669d126d91f89fc0e388c6295d8fbd2439be884f175133fda8aa403c
MD5 d78fe9f469c8616990c1d7489d69d1ad
BLAKE2b-256 6eed6222b5e4ab73a0185d77e3490dbdd372dc1cd961acbcdc62b0bc345a8d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0db083387d6e75ec0be8173ecbf0e811cf60bae1cc75a815feb104167ea10d4d
MD5 3a39f95d4c1162fab627d68cefa0024a
BLAKE2b-256 540a935b037716e02376415dbc9fe95e523c64111c223a0de4dc2e12c1e1ee20

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 82.3 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 932dced0a7b2950ed58a3325536a1dcb7b58e7330af54e8552d2e566b5328b99
MD5 d903506f007f591e7425b1c40981a474
BLAKE2b-256 7ecb1e1bbdb39ea166b4b2568c5eec3d82f59cddecf1ed57e5c4a1ed54692107

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wrapt-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3b476ae63b4a3b4da681aafcb25ff3542d289fbda8b5da7caf76aaffafafdbb
MD5 4ed76ec14554b1f6ae49a17be166f0e7
BLAKE2b-256 4099b44e9dc20c8d768ffe65174bfebde1412068fc1638aac436eccf1e7a603a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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