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.dev1.tar.gz (131.2 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.dev1-py3-none-any.whl (61.9 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.3.0.dev1-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.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (169.4 kB view details)

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

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

wrapt-2.3.0.dev1-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.dev1-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.dev1-cp313-cp313t-macosx_11_0_arm64.whl (84.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

wrapt-2.3.0.dev1-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.dev1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (170.5 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

wrapt-2.3.0.dev1-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.dev1-cp311-cp311-musllinux_1_2_riscv64.whl (155.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1.tar.gz
Algorithm Hash digest
SHA256 81db3d16644dc9e5e782f4bab2af0c76ff054b8042008b85f3c09cdbc3e0e1d2
MD5 5b29cbff19ffc5dafb8de4d6a3b147c4
BLAKE2b-256 78628db89cc59c703bbee0edc7a9e741124aae014ba7e1692265ee42d89d5a0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1.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.dev1-py3-none-any.whl.

File metadata

  • Download URL: wrapt-2.3.0.dev1-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.12

File hashes

Hashes for wrapt-2.3.0.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 b4419848a7cea1bbef2825b4d6295d6986c79e4c223c9da6abb72a283f9c5a0d
MD5 9f1a3f6fefd5e04876703bbabc36366e
BLAKE2b-256 a2610623a18342ea046b19eafc7ffeaf060158928980956f17a5023da8c86124

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0.dev1-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.12

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d617c445c5a3ce7387c039c2e6430f6eac6ee1c98ddafeaac7c82a0e784dc99a
MD5 51127b8226646a1a516ecb7eb7b210bc
BLAKE2b-256 029d32c104bcd1de68cffcd071631e896cb75a60cad77abef7406f29359c6564

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 adbcdaaccf08e184b939ec026031171eaed70922a4c56fb03129cf3ae374f251
MD5 436d433199c5c047d03d6c8d2f81e2cb
BLAKE2b-256 0d1b06f310c8a93e8a19bc6f610e20769d67f384877839d0c6225a8067370f6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0.dev1-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.12

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0a2d41c4fe663f350b01b6c166206b259f770db2c6b6904206f0a62e1ea2f5f9
MD5 c9a5cbc675409583590b4bd97734cde1
BLAKE2b-256 c51d8e4ed1fb1cbc2f59d85f2f08aa1994955d4116a946fe87f2e061d17dd525

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40ee8431250e1198750183a161f459bb1061cf984b232f821011da7a008a45ec
MD5 ab92edc8cb2ab0ca27f1111b8bc7ae9a
BLAKE2b-256 9afd2d775d11762be1db01fac7b9a6ff227be362b4a645b5e708694b820e3081

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e74e433ff3e079c99c2621441c4e6fd00f31dea3e714eb0a1e947946704fad4c
MD5 95c12505a58f26b4249b55f6b818026c
BLAKE2b-256 2f2e2283b167438564584cc26354897d8c08a4f4bc547baea275596050d3741a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf8f6a1e1542c54d0c9930e4b8bd1c0c19c138bba528619863f28604820997c9
MD5 70354793490539aefe030c14a0816cff
BLAKE2b-256 7e8ea14f20ff2b113f4f427501648345d8404e58aad62c10a6a45cf70e36a67b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 da442e3fee4a4dd52a3df4b83c635b967cf5aad549929184fff884e79e43eb15
MD5 4c67e486f5998ae0c39812d26697c0af
BLAKE2b-256 6cf54dbd8ae3b52922b06d6111ab9586781e8a6c2d444e351bae9394e4c8d9e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a655d5654f5ec4267016a82bf0e8ebdbe1e9e7cf09413b32994da4ececfa56c8
MD5 6cd02ef98f7104513c51c457784b8dbc
BLAKE2b-256 a107f2e427f5e85d3d88b72c3ab587b7b49e1746000569433fd0ff19367f15a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-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.dev1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e9ad8ea75993be68c51cd8826c81cbc36994eeb324743c093d9fa599a79371e2
MD5 bc28e1a8e1222e9f457c1f9c9ea2a8e7
BLAKE2b-256 b98a5519c6e1b2eb0d27c772108b334c77fc6d30ce1fe5248d719293664326c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94bee9a4d9babb3f63bd35d3863b7b0e2b286b8bb4c46cffad97a295630679be
MD5 84205b2178b2f80fb45f19b2031517f7
BLAKE2b-256 9d7053b5143cad7515c57602e4bc9c4a726c0c962bf52c934b193ef258d641cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ab7af5265d792d246dba54f1f7461a18080cf9425ff59821efee2ac5257a78c9
MD5 8fe746139ad66332934c06d1df360485
BLAKE2b-256 7cf1aefbf459729d327027705d77b7464ae1fcff2e6f30fab5b0ec26549363fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0cca1310dde42c4eb420645cd6cebd935f84b3f2d974870de9443b3156d79389
MD5 c8d911d6029a38c1d1e8fd40b11e0a51
BLAKE2b-256 73a05ecded03eb4cd9825062c0c15f60d4814da4ff8f30f6621c345b1fe775d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dd812e3e1b15a92add12aebbb88cebdc5d7fffb35ea5c8de19e4ee034ff71036
MD5 6c2e9457606717e881ea70e1c438e549
BLAKE2b-256 7ee9aadab21b4529fb9a2b765d1acebf1b496958d50317351d2e441be90bd403

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b36ca8e73b44a0e0d3edf101ee865a90dc12452e7de92eff9744bb8fc08e9ba9
MD5 23495bea73b746748cdbb0d3c2ba46c8
BLAKE2b-256 b8b0a990883fc6bee423174ce8b242c9dc78ba3ec4134448b512f2d86aee9ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34d7a601c2d5834cfa9cda8ea06e98e50b3be8d0b0a131e03f2a4155aea62c9d
MD5 21ad34a555908ab855b49839cd9c90cd
BLAKE2b-256 90dc630d13957254380701c4a187a25a3565be6c4dce4a066544132b49fb87d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c8ef5b4704fc4b39f27d29e1ede80b7977c410a7a597b21f48863a1851c1e24d
MD5 7655409e539296a7561352ee8199d925
BLAKE2b-256 b9c1a0843df0eaedeb7bf3cf8cc13b9193ac38342e9fd1e76307ca9db8cc16ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c8d465b2436580ba342382d0079052db41a603fecafe8603f40dfa2840c63fc
MD5 88586f2fba6169960ff41b75ab8a8204
BLAKE2b-256 a03a512cdea5702c6154b86d184a45d66204f5e110587647880a69e4eb24fd7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ad2ddb8dc2b99d6bcdc8726bada60538159ed7f84b5d07d454e3d19349a59136
MD5 4388fedbd3bc753fd295fa80ebb502bf
BLAKE2b-256 012d734a8be55d1a99e33245a6e94ca39ab1d5f1282785a34e0fec002c5b5570

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b1a9a0447948792209a81f3b155b817173fb331ec615aa8f1403a14f081e1e8
MD5 57bd1fd5f5432dac000e8b62b3b61544
BLAKE2b-256 201b417494d8416fff6ee3d30e7fad48fc630cb5f178727f6a50e095218cc176

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-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.dev1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6cdc1058728178eed717605bc458648bf44bb3fc5e59994ec6cc1993c3985c25
MD5 d29b638ffd47ce32d99c7a3c84a87513
BLAKE2b-256 7d6eee92c98db726338b986f9229dbcdb6c2dd9e33bc8b5e9218644ed9787a4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6dafbe1039d0e94fc7a02c40f51c1d025f0db4073788665461db758cfb6abdb
MD5 444a11fbe15c6c013efc14d8763b099b
BLAKE2b-256 d6d93f98eecced8df5d51198175adaf3d2f32bebe9aeacbabdc0f51512389e5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a71321272eb6276c869353e8bb90afb7b4c98d750fb0c742d4dab00c43096525
MD5 a17e8eb699b586f0320f00d9b6dfaab6
BLAKE2b-256 e5974fc3b71f797c9356de06248630ac7019eb70a510758487e6959cf600f780

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0.dev1-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.12

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 94ef83e9993bb62753fd2d764e9e9d05af3f7065e3373e42df80d1678ee7784f
MD5 6167e64ed082f24fb8a7a3025b20f718
BLAKE2b-256 09d0841ca0c06eaa2737087a67026d3100880f3ad1bee00559280bb6d2db285c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313t-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 fb599e153fe43ce85c46745d3c05b0e73602277b17e0e0a586a13125de9e1c87
MD5 69ebefdfdd54ecda7c1f68c12d0a41c9
BLAKE2b-256 69fa5a0c081ac835f3c13037c1519c812c6cc83018c44efeb3024755a13fc926

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313t-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0.dev1-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.12

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 72e8fa55b2197331ce0debabd68f9e07d309a2c36d1f0414542ceea7cbd41e3f
MD5 4cc58cea3f72df8945831be86668e646
BLAKE2b-256 2ba711cf3811dbda5aef19adb81c2613a635eac1647c6572ca8ec00ca078af5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f3bb954055d3e0f488068e8eb25696af55f6d27d39ec5208c61754e3eeb201c
MD5 cf0cf3a7af6184a6500ce1e1c9cfd1f1
BLAKE2b-256 e714d3aa62a67f5e354dbb8931a81e2ddda5f3301fc6255a1cd96e8534b91c70

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 52f95df33ec10f06daa239d369aba1662aa19331aa91c4a387129315440bd196
MD5 befbe3b59d1cc934412b486903431412
BLAKE2b-256 81e71eb3958d720da9d84040316d0e2a672cc9f35c200158a073e108602bb465

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04fabae031f0a873d27b9a59aadc6491eda245e428bd0c7e3475c353025b3391
MD5 e10213391487e9aa02a40212b5111ab3
BLAKE2b-256 bd070ffae3aa4d85da9dc7b86fa7930974c02eb90d2f093cf4c56740dfa70b85

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 36e620d75da770a464a68118e858284f35ec08a878e66e20015b52185ad83f3c
MD5 c90e790f4bdad65eef1e3b65c4440acc
BLAKE2b-256 e598a488349d56c542613e246f9134d1d698112abd33f9708c86939a1ce964fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 febe12aca48840a38d687cfa32a7bfbe233b1e2b0c7a60fffbd005b65e11b021
MD5 a6fcd5f6a958bbe1e568fc401f04cdc0
BLAKE2b-256 f98e12595283b381155fcf062716c135c31ff112f2ccaa9aa6e201f377b0e5f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-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.dev1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3bc3775bb7f89e3c78946593bdf0faf817eb34112139f00985b4c7385176da23
MD5 99028e990f3432b7b3384e74052ebe39
BLAKE2b-256 a89c3ae63a95b364e1e495e302b3837fcbac85a82db105162d6833370fa58c2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f21f1e76261281ca2e554f7674c8995909f5026b5669d893c5b1947a88f5493
MD5 fdf3717d017a1dc51a005f8f344312c9
BLAKE2b-256 56a71e63e5f4c0e9d086dd9ba7bbc6bf4b11270e9cde97a0e519d1b895b804be

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b14a9de5e85ebe9053e14ac835596dca5d63a95c03ed8a96f789d5b8990003fa
MD5 b917470b3be4aa205fdf637c00fad175
BLAKE2b-256 9d0e7e8227b3e658070596778951b88192016b384ce1fda8421cc5c19582d3ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0.dev1-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.12

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0aa204c2352c0649a392597bc79c3dccefcfe957076becd0bc3da26d4d4ebd07
MD5 713649445eec575ac3c5eaac977b1eeb
BLAKE2b-256 d945807df3d589f284c2840a9800b77d660d2a7f1f2faf69a07060e4a2e56364

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 babc146de99d5f8f7490937dd1df0cb28823e1a3e3e505815bfe38cdb090572d
MD5 3e36a673ddeaa43cea825459ed1c99b5
BLAKE2b-256 1d2b6da89de11f499af3f3f2bbb3fce3b357b969dc22bb29e5c9b71357d49918

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 72e568d320ee9b0ba30917174890812c30fd3a7a34ba10e9ae623eea6ca1de47
MD5 0c8fafcf4654246cae9ad3bbb00148c5
BLAKE2b-256 4b86f4158c1f26029e5f61c74872c40b46ec2b31b6c39d5cc242efb7af8f2ce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd7d43c6c775226d24ff189744924220e627d4a150f825cff63e7dc1bb6dbac0
MD5 6fbff44167093a398b8f0b25fe98cf92
BLAKE2b-256 c7e970b97e95651093880e2d13cb1646ba81c6ce755af830a7abc68131bc461e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fbc008e29839876602c2e2df66bd1d9a5cca7cb24918ab8b9a64c7e87b3f5d78
MD5 a701e6eb7bd93a967c2452d14a07f333
BLAKE2b-256 afe594550bf757caa835a9375f5f6bb56c98ee6b0894519930a22807b47abd29

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b7e262c106cf537a3cc0c1b274d4794b734447a006bed2672aa5d5900e0249c
MD5 82e8a7824bdf51753d9d42ff5a35774d
BLAKE2b-256 7cf2a2bbb950e86cd307c86bd8719cf6cf2a202ce0f8fa150bb951932d9357bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cad4f2ec80973536e680d0827c7024390678a29c60053e1f621da7f44af98c98
MD5 fcdb828395ebaef7e4e45decdc8fd86f
BLAKE2b-256 f3278c40b7e465f5648a3c51acdc49d6da4bbbaa9549a851b32e93505bb768c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b8ec8ab900deaaec709a23f5a46b2fbb2f5423fbd4839e68f19c71f8c49e554
MD5 0955bab27639ea75604449e7a33dce65
BLAKE2b-256 d6cfc5a096486b33a763d36f206234b51b69f44d1c1f6a24053feaab8008786b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-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.dev1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0566cd809443d70c82dcbb81015a91130091b20005e7863f394bab6d0e00d2f8
MD5 7ffbe56f3d1e667e997e140683ffb3d9
BLAKE2b-256 36909c6e5ae4dc4832ac3fecc39e48ebb1d2761d7c24f708b0fcff68ba2fbf0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16c50da3722e3c020abaa123f80587b709ff7d4b2344adc5732f1a4086ac4069
MD5 f93236396cd39d203eb39c2547f028e5
BLAKE2b-256 ba07d22ab7e98c3eab19c5f458d2f3c6d54f0501e89a2e10d3ed2462dddb6f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ac3521a565284f2fd54cd70596586abea473308f6c8deff8b0fc5650a0c77420
MD5 6eac94dbf826c33e11c002524a44ec27
BLAKE2b-256 9e04d12138202b078dc35622f997969d380e7c3723786aae45ad174f640a484a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0.dev1-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.12

File hashes

Hashes for wrapt-2.3.0.dev1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f9957c83608634541ae828d9fb47bb6f23a0c9031540c76055d08757d37cabab
MD5 7ef04995018733eccf090b53d72d52c5
BLAKE2b-256 ac02a75285da940b3b5f9226a5601df1281d8dce4445fadd91940d67c7f9aed9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0.dev1-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.12

File hashes

Hashes for wrapt-2.3.0.dev1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2119dfc3757cb2f218585d9036c826a60375fe57a217edc4a8b7b1267867800e
MD5 9006aed2b082b348617f011c66f455d6
BLAKE2b-256 566b3500a2aa3e1e436c28b6a21371d91eca1c90ac22463745201039f4ba6279

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3ae72462a2c5d95e9ac71484782a205408dd6d55ddf55d5e31d61797d6fa0e8c
MD5 7670b597ebe0332558a35f0ce70bef27
BLAKE2b-256 d74bb16c2abbd283cc3309b074ef875b80b2addd14bf298f5f30ca8f11e8b068

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32ae4f5067913092a1f7dc4a7005a54f30aaccf6063ffc2c3160617c5f4602a8
MD5 c7be13adaff80216cc0ef292307aa70d
BLAKE2b-256 c4321ed907b42d376d88a655490096059c3c68c72a3dcb638aef2769b92673d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0e945de2812b01dcc4b9e1b654e92e3562b8932bfe7ce3ff249ff77ccc040da7
MD5 0fbdc67c2b46a20f5024e82c8e48ba0c
BLAKE2b-256 fcae3224c9f407f5ca57cb16f9f623c3f57c4d028f92048f1afb7075802cf17f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71a78e239c78560e7c73216a08b112c91bc5a366d3eb2a0d2fdcd1d3559e7a19
MD5 bf4061de95814f10ceec60c15e5f364e
BLAKE2b-256 874c5f349a6d1e05abe155d7c1506e781c7a793f0b255b8f60c6cea95cf9ae80

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5fecbfcfd2bddb649841c770dd6e515a92883c62bea4ac6c50151bcc61cc08d3
MD5 9693e7c3f09f1e7d4c5eef9f4f2ee9c6
BLAKE2b-256 7789c2504e59c053085640069fec8ed22c896376cb3ff3930c663ccffff55db9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1cd62eb9d5fa2e0fbe9fdce4e52c0b7d73943826d0e153dd80ee00634e8a21d8
MD5 2c2943bd8db10c334f8e6412c2b359c1
BLAKE2b-256 39b881a477fcdc7c38566c7cc7ed3f5ab9eabb519918d40df84658314e7cf3f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-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.dev1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 07912f402754f35c6adc05bb8cc8e1458ca24f8bbdf4e1626e137949215a9a5b
MD5 43d3775ef6a682a986d768057a877fa3
BLAKE2b-256 9b464f7cea7898a79b65c47403209bbad8fee2fd8f35f39f3c6fcec9adcb13e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90c82e636d2e5dc549cba5108edf40ede15bfc7728835e3a0e7ba32aae7fa80b
MD5 b0b05425ac3f2936f3c10e5b38d16052
BLAKE2b-256 f6d5c9a8de14952091a95b0aaf23004ed7c0b47fbbe84f9e18b33083821e939d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a69e1115bb9264a1cf083ba6ba354fa59849c743354083de1d191b0bef746fba
MD5 e006cd733c0c3f5ccfbc231e52fd1f2f
BLAKE2b-256 6836cf300c02f1a41c715a8874fb5b40c4936ac82ca874fd6315b697c9ab19bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0.dev1-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.12

File hashes

Hashes for wrapt-2.3.0.dev1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4571751f1ecf1dcdef095e87377fbf80e82aab2591468c3f487e45e685f4477e
MD5 7f35261dae96b1195cd4306fda8bd8a2
BLAKE2b-256 21d56cb79dd27871d0f641d75a203a37753384ac4f4227299fd122de6da0737c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8a71951504691b373c80aff532c20d50d481b065405bde7f74af2e953c193128
MD5 fd04e9cc11ccab0ac8940388de2f0e4b
BLAKE2b-256 24358dba9c7493b354d1bef3adede785a0382221e6b3d29c1dabe3ca7a902d87

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b96d216488b964ef9a57172e0793fd2d11b8a562543e9ea66f8ff5c6c2acfb39
MD5 c4c229d84f6030388c8d017294e1dd64
BLAKE2b-256 801c3a0a22f84207fbb696c1a02f672147cc2ad3cff02036c6716d23b395d63d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8475f13bcf87b4bdf949103509f9c1b52b856ee654617dea5bd689b42ce60e5
MD5 ae6f29281b9689247f5475c6175dc126
BLAKE2b-256 ae3df9454a848d9397f90973e1516aaf6cd3705f0c861b01ed91e5ccedb310c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 292d6bcc7d091a2be5f1e037db4955589d64f3abfd45c7469b9ee48b860de745
MD5 777a34d6584a4433b5a4b0221a850462
BLAKE2b-256 e89eadb6f69d1d4173ea63e323756ce60b0ee11530149bd440127794612c7c52

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3a1bec63b3351347388b7db6a8c47aee1bfafd00e391b24f5a2ad716be46a95
MD5 900c4e4b7aeb92d5d3d005d12d48ac48
BLAKE2b-256 beada5e447088f3779f2f9a95266ec489798f8821cdf49c3f67997fba3039fe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 651a5b1eadd2ef704bf355d620a14ceebeb1be0fffa597ef73e89e17fb45647b
MD5 fe3090df77fce655626659bb2255a88d
BLAKE2b-256 a4262967bc92b50c8ee04611cf7d522e4c2ab1384f874e6a4b87eb494b956e1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 489178c022d5e90c37e8082466ae263620ec05591e9c85a44b447210f9bd1205
MD5 9fbd03a2ac9d6a744a273397bf66dc8d
BLAKE2b-256 f81cb569756869f199485588282d70403c16709e6c22882e3e888a61969dbaaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-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.dev1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6f6f71adccd4a34d863d38ce83f72258dc3b68ae6b6219b18cdc17e89f685fc6
MD5 54bdb82e49baaea2fe03fdb6932ba151
BLAKE2b-256 5c28db0c703eff5197816a6c0e017af48c4357180477ca8b93189083f343c421

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1280099da32b0897174fa229e1689f11d902c889da1f29c5c2464c4294490ed1
MD5 9fcf7831e5c367543f2cf677f2ccd22c
BLAKE2b-256 6d6268cf7193558c8ca42cace04e31105ff31dd23cf5eb3efbf68ae65ccae8c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 781121feb2a6b6d547f1feb3b6d4045c29b6eec9285131662d90d8a52c1ab9f2
MD5 8f25ad55302d7df43046612b477c1d4a
BLAKE2b-256 a41a70e0cb5049594c254b58c9a0f0967d545ca84cea2b99da3932a4d43b8cb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6719a7b917b99237755bfab51a9446b76498a9428e059e401fd21718aa53b4c8
MD5 ef631b09180be22aa0a624a292cd1753
BLAKE2b-256 ac121edae78bf42e0a9035924aa39b104db248361f342b7a032e4daf227ba07b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f47f1acab80d71629d9e982adf0967c04e37a69e29efd1d80c6f5588f6e53ed7
MD5 d14fcbbd213f16a3fe28aa26b5795efa
BLAKE2b-256 e3cbd3e36d0dfb3fc652bbe6b9ae9a9d4f0349e2016f233005defb4336ed494f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp310-cp310-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0.dev1-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.12

File hashes

Hashes for wrapt-2.3.0.dev1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 383940e27e73be1e341f12d6ec7160d770eae1de3326887b46e2feaa0fe84942
MD5 fb544af5bf19b4e5bea987c242a9eff7
BLAKE2b-256 85dabf021e540ccfdac6fcffa3c651037945806fd6144b16bffc27a68844fcda

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b790bd40c4411e214049204612fc3957f28807f74ce42aa8d0f57012ab2bd944
MD5 39184c1e415a9e2b3191504275766020
BLAKE2b-256 3d18dce1e31d9dd9c7a05737b8d7839a8d52685191c95fc98cd2f19cc38a0e59

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8dd0e51cf5ea244b470466a751cffec6d1ed5b7955ac75aa9cab4eba11beeca6
MD5 ccec1d33b7fc2892d6903aead5be8531
BLAKE2b-256 5aa34b0c1579b5ae3e61f664f34a51581ceea6614d3699e77d0afe497c2d54bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53f08530e8b5727a62f1eb1b4053f2b0e8c43dd126dceb2b1bcc1cbaa1e98497
MD5 a514158701d127d8e1d7664ced27a41f
BLAKE2b-256 1441ab66f73894be29fd8c28ce42dda0a4a1ece72a418a404c356515d202de04

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0a89dcc280c5990059740b85701615383482517617294a963e42528d62f54a11
MD5 1131753b0d66d1d090df4ae67e445057
BLAKE2b-256 d258ee66c24287bc67703653a6ed70068f03b75754829686dee7bd367e0a01c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81f599cb2d95465e4dcd068fcc7cc9e72e1f911106b9988b0f61e92a7f6ebac2
MD5 d2632230014baf5929c726ba7c1defb5
BLAKE2b-256 c8dac4eb41744115ffd059106bf39e0f33f437e7ea7409d445271f31693ad74d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-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.dev1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 52ae05fe9d571cf82fadd3f635fbc7df4e0a51830625ead870aa1b6028f8657d
MD5 cafd5e7a37579b96f1a2ef59e440aa91
BLAKE2b-256 40032f039681eb6ef835eb3ec94a0043ba893afbcb1c8282fa764507640baf8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff7cbbde50924acbdee61866a441c16f83737071b6444220deaa1889f4dbfd73
MD5 0428003dd1bcf6fdcbb9d3f94915d4b2
BLAKE2b-256 44caf2a94418738c2dc85fd1c15ec701640a7502e6e76eec94573bb7c379eaf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef097e4e497831f9270ddb377b48475774c8449712c9b87fc9621860a9d6617f
MD5 a59270ce3916a1e7a47a50304babb204
BLAKE2b-256 c3bda514010433284b21183ca7ddc1561abc0ec8df38486e2969f76f45acf6eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp39-cp39-win_arm64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 168e83feb2a99bfb9ea1ebb412542b1a159f3ba2d00c2f8ceb627e1c720f6596
MD5 2b4aac357fec0e4afc0f3dedf70a0372
BLAKE2b-256 483ae386a2e8b6e828599f0293a6b365ba6db7b4bdac93131b3723bf54de1a45

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c4c6fa4ddf086f04d9c210c60d164d8d914d49a54ae3a7c5e501018355719157
MD5 c18344b5829f731d9171927ddc7e79a8
BLAKE2b-256 f6b088b001bcbec1dc844f62eed2f5a31eb23b473ef8a824c79c820ef3db4057

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for wrapt-2.3.0.dev1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 48d997a56808785c16d3ad74399b773914725ae90235726872332efe6ea2301e
MD5 fef73ba15f0f4ef53c8e3a6541fce25c
BLAKE2b-256 c0a32debde74df92e48e39afe58e4746d0ba5971a43646099d0a3491871a7b43

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad007fd80833a4fdb8ccf4edd562fd5cbba3a40896f7f9593b37c1b20218ffe2
MD5 ff5fc5c2da704fa05fef350df247bc1a
BLAKE2b-256 998f2f15f002c4916f4013b8d1d02fb810c8a6bbfeed3ff5f2a9b5d174fb9a80

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 11d43a3cf7acca831bc7b822599f15aa9c89a8faf53ff2c9c2c359902b85f120
MD5 a0d50985a81f40ba42b7fb07b91c586c
BLAKE2b-256 a3bc04ab49aa65d4797ee8b1c7887c3d4a5e53abfd2666446d17be17472a2e68

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83d04e0921de39982221512875e8b38a9794acbc80fb535c2613cda5ee4f6d0b
MD5 dd3c696033bd1ced07fbc21cbce8aa2e
BLAKE2b-256 01e73fd9b2d5bfdd3fa0d23e35ebd0e2063e828515212e3d5b32089b62578d4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fb95fdcb558c76f9f264ca88c05cb8111d1d0bd560fafebefb8615ed52571de7
MD5 1a8bc7444b5bd9284124e923b8a1e9f4
BLAKE2b-256 b62d677ec2796a6d0be13a2e708e10687760494311d1ee7a6437c577f9de2b02

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 083c1f4e55217349178ed7763c43bfcf201d27baf9d22fd5c161b9bd748408d3
MD5 7ec8bbb5f33cddc74a21c2f0bb9e00f4
BLAKE2b-256 dcd1ac2ea8fc4e6e6ff0142229f695b872491e1b098bb9e4f83a671106f34a84

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-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.dev1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c0a7c5fb5dc12ed10d98f780f9233a6a0aba0d7b0941c7445b0c6265aa17e3e9
MD5 46930dc573063c25c35d06ec1f5602dd
BLAKE2b-256 95d58cfdfa4b329a11c0cc123232584de4911933c430a5911c78fd043a5e9ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fbe9a62344036acf91aba634deb9c7a293322d32c910693477ff3a230691ecf
MD5 5626e7db29edc580b565226833bf4c68
BLAKE2b-256 4f302c8617cfcdaeaa94ee581e078d1df850a0533faccb986a53652916b84a5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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.dev1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0.dev1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5bc3f58448e5d8fa42c9cd2cd526d2b0418bfed19a0bbe1d6a3baebffb524c8
MD5 c7d15c00e5d76f60e62d900be2adff5f
BLAKE2b-256 d10d77b21e1159f6b8948a4656932f34182dcc9599a4fcca7ac6e13f309181da

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0.dev1-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