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

Uploaded Python 3

wrapt-2.2.0.dev1-cp314-cp314t-win_arm64.whl (80.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.2.0.dev1-cp314-cp314t-win_amd64.whl (83.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.2.0.dev1-cp314-cp314t-win32.whl (80.3 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.2.0.dev1-cp314-cp314t-musllinux_1_2_x86_64.whl (199.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.2.0.dev1-cp314-cp314t-musllinux_1_2_riscv64.whl (192.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.2.0.dev1-cp314-cp314t-musllinux_1_2_aarch64.whl (205.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.2.0.dev1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (194.8 kB view details)

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

wrapt-2.2.0.dev1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (209.8 kB view details)

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

wrapt-2.2.0.dev1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.8 kB view details)

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

wrapt-2.2.0.dev1-cp314-cp314t-macosx_11_0_arm64.whl (83.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.2.0.dev1-cp314-cp314t-macosx_10_15_x86_64.whl (82.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.2.0.dev1-cp314-cp314-win_arm64.whl (79.6 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.2.0.dev1-cp314-cp314-win_amd64.whl (81.2 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.2.0.dev1-cp314-cp314-win32.whl (78.4 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.2.0.dev1-cp314-cp314-musllinux_1_2_x86_64.whl (165.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.2.0.dev1-cp314-cp314-musllinux_1_2_riscv64.whl (156.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.2.0.dev1-cp314-cp314-musllinux_1_2_aarch64.whl (166.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.2.0.dev1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (157.8 kB view details)

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

wrapt-2.2.0.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (166.3 kB view details)

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

wrapt-2.2.0.dev1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (166.7 kB view details)

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

wrapt-2.2.0.dev1-cp314-cp314-macosx_11_0_arm64.whl (81.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.2.0.dev1-cp314-cp314-macosx_10_15_x86_64.whl (80.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.2.0.dev1-cp313-cp313t-win_arm64.whl (80.3 kB view details)

Uploaded CPython 3.13tWindows ARM64

wrapt-2.2.0.dev1-cp313-cp313t-win_amd64.whl (83.1 kB view details)

Uploaded CPython 3.13tWindows x86-64

wrapt-2.2.0.dev1-cp313-cp313t-win32.whl (79.5 kB view details)

Uploaded CPython 3.13tWindows x86

wrapt-2.2.0.dev1-cp313-cp313t-musllinux_1_2_x86_64.whl (199.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

wrapt-2.2.0.dev1-cp313-cp313t-musllinux_1_2_riscv64.whl (192.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

wrapt-2.2.0.dev1-cp313-cp313t-musllinux_1_2_aarch64.whl (205.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wrapt-2.2.0.dev1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (194.8 kB view details)

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

wrapt-2.2.0.dev1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (209.7 kB view details)

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

wrapt-2.2.0.dev1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.8 kB view details)

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

wrapt-2.2.0.dev1-cp313-cp313t-macosx_11_0_arm64.whl (83.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

wrapt-2.2.0.dev1-cp313-cp313t-macosx_10_13_x86_64.whl (82.8 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

wrapt-2.2.0.dev1-cp313-cp313-win_arm64.whl (79.2 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.2.0.dev1-cp313-cp313-win_amd64.whl (80.8 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.2.0.dev1-cp313-cp313-win32.whl (77.9 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.2.0.dev1-cp313-cp313-musllinux_1_2_x86_64.whl (166.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.2.0.dev1-cp313-cp313-musllinux_1_2_riscv64.whl (156.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.2.0.dev1-cp313-cp313-musllinux_1_2_aarch64.whl (165.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.2.0.dev1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.0 kB view details)

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

wrapt-2.2.0.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (166.9 kB view details)

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

wrapt-2.2.0.dev1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (166.9 kB view details)

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

wrapt-2.2.0.dev1-cp313-cp313-macosx_11_0_arm64.whl (81.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.2.0.dev1-cp313-cp313-macosx_10_13_x86_64.whl (80.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.2.0.dev1-cp312-cp312-win_arm64.whl (79.2 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.2.0.dev1-cp312-cp312-win_amd64.whl (80.9 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.2.0.dev1-cp312-cp312-win32.whl (77.9 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.2.0.dev1-cp312-cp312-musllinux_1_2_x86_64.whl (167.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.2.0.dev1-cp312-cp312-musllinux_1_2_riscv64.whl (158.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.2.0.dev1-cp312-cp312-musllinux_1_2_aarch64.whl (168.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.2.0.dev1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (160.1 kB view details)

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

wrapt-2.2.0.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (171.1 kB view details)

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

wrapt-2.2.0.dev1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (168.8 kB view details)

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

wrapt-2.2.0.dev1-cp312-cp312-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.2.0.dev1-cp312-cp312-macosx_10_13_x86_64.whl (81.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.2.0.dev1-cp311-cp311-win_arm64.whl (79.1 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.2.0.dev1-cp311-cp311-win_amd64.whl (80.7 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.2.0.dev1-cp311-cp311-win32.whl (77.6 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.2.0.dev1-cp311-cp311-musllinux_1_2_x86_64.whl (158.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.2.0.dev1-cp311-cp311-musllinux_1_2_riscv64.whl (152.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.2.0.dev1-cp311-cp311-musllinux_1_2_aarch64.whl (159.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.2.0.dev1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (153.2 kB view details)

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

wrapt-2.2.0.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (160.4 kB view details)

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

wrapt-2.2.0.dev1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (158.9 kB view details)

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

wrapt-2.2.0.dev1-cp311-cp311-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.2.0.dev1-cp311-cp311-macosx_10_9_x86_64.whl (80.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.2.0.dev1-cp310-cp310-win_arm64.whl (79.2 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.2.0.dev1-cp310-cp310-win_amd64.whl (80.4 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.2.0.dev1-cp310-cp310-win32.whl (77.5 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.2.0.dev1-cp310-cp310-musllinux_1_2_x86_64.whl (151.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.2.0.dev1-cp310-cp310-musllinux_1_2_riscv64.whl (148.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.2.0.dev1-cp310-cp310-musllinux_1_2_aarch64.whl (153.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.2.0.dev1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (149.0 kB view details)

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

wrapt-2.2.0.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.4 kB view details)

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

wrapt-2.2.0.dev1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (152.2 kB view details)

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

wrapt-2.2.0.dev1-cp310-cp310-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.2.0.dev1-cp310-cp310-macosx_10_9_x86_64.whl (80.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.2.0.dev1-cp39-cp39-win_arm64.whl (79.2 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.2.0.dev1-cp39-cp39-win_amd64.whl (80.5 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.2.0.dev1-cp39-cp39-win32.whl (77.5 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.2.0.dev1-cp39-cp39-musllinux_1_2_x86_64.whl (151.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.2.0.dev1-cp39-cp39-musllinux_1_2_riscv64.whl (147.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.2.0.dev1-cp39-cp39-musllinux_1_2_aarch64.whl (153.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.2.0.dev1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (148.9 kB view details)

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

wrapt-2.2.0.dev1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.3 kB view details)

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

wrapt-2.2.0.dev1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (151.9 kB view details)

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

wrapt-2.2.0.dev1-cp39-cp39-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.2.0.dev1-cp39-cp39-macosx_10_9_x86_64.whl (80.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: wrapt-2.2.0.dev1.tar.gz
  • Upload date:
  • Size: 125.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.2.0.dev1.tar.gz
Algorithm Hash digest
SHA256 e088f0516e22ca236ff6739181f8c2a040dc0b99f719fd7034d2ae21d0dc6db1
MD5 39ea606aee1c7d9998e94d3caac160a7
BLAKE2b-256 7f841c19a9631fb1606b5d1ae8014b1d80e5d82c089973ae7d02aa3d9679c1b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-py3-none-any.whl
  • Upload date:
  • Size: 61.1 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.2.0.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 7284d37da55f5c244959c3ca50bd7a8d8a74a29a1478f72bdba949fc1a73e6ae
MD5 08429be85c31e15dd9e15369d4baadd1
BLAKE2b-256 545ef800dac48a0cbc26afdaef451eab2d98d13f86eb5cb0be7a9ef16bfb6be2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 80.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.2.0.dev1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b773207ebcfd59373d400b631ad3fe470d19c34ce1a0c7bf12702b5a3e46d89f
MD5 5efd74e017c6104d7f20cf18fdc659d4
BLAKE2b-256 a27a686a1eecbbded1d0c165239299eb21d0e5c3a0e883cb1da81d06cfb8e17f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 83.9 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.2.0.dev1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4363abe217eb06ca85e1c81fa91117430c03edf84c53043499e2301b4a860537
MD5 a2842c6f59846a5121e542b7b841cab7
BLAKE2b-256 64146b5d366d861e291de487da0d69c403460256b432f4381d4d8c95a24d3dfb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 80.3 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.2.0.dev1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c5d71fb416dc1ff7380cd7fb968caff075a8db19cc91318c4e9a4a42da77ea43
MD5 c9c5f53dfbc7f951252a46649fe8ae91
BLAKE2b-256 643362838be157b9c83cced01df924c5485af5d4cfe78ce23308ba43d90491ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2c097389a3d68872376936abc919fb8e7b507a57be85b72c5b7824aa9c3f48d
MD5 bece9cd26816a73677e4f92fff4385c4
BLAKE2b-256 4151852202904191de7c0c58b33ece289401ebf6098baba8e2c5257d8f187603

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5bda9b94b44a1c56e4099184bb8e361d07014b0dcb30e1ba1d6cc93c14932d77
MD5 81780aff9c8964fb5581661a33f8e3f1
BLAKE2b-256 a5d6cbbb11bad80437ce72b3ff2fab2d6e5818e7a415fe23abd33c7a66bb4731

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f313109c70a8631cf4a27014a88a8ae5d0c457ce19b791c7e7b8564fa09f5e6e
MD5 9ae2920993b5ad3b14e68b4b346cab65
BLAKE2b-256 32fffdd33687d21678f8a5d16bd74871fd58b4627c998a50dfc4e94a13341e97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3989abde4a4921e432712d51a17eccc10dd7dd7a3b66529644dde62d7bf2aee0
MD5 80ff8ea59b8500584e7c1bc36c4b62ab
BLAKE2b-256 2608f34dcbcd95029a992dd2663a7ae18393fe69debfbb22a4e8fa4b497f41df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1b195eed7e5831887f07e62aaf3ab2c0ee0d893fd4a83439342d4d4f8c755a9
MD5 7a10d19228c6546341fe33237f48e47b
BLAKE2b-256 07d0f44940c15eb0db6a483f1c827f5e855adf3e7cc96c4eea14adcf8cc1c7b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.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.2.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.2.0.dev1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7ae980a68520dc481e17538fda87da6fe204cd52c990b13fe07677381a66fbdd
MD5 4236d970f4f921bc70e92d88cc7edfb3
BLAKE2b-256 d2056a4dd3c53d9d89caf5b3278201af2768846c64cd004caabf5263511fb32c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd370c938aee257438d803656cb453e87b884c45cbcb3f97d6d160a17894f484
MD5 ccd9ceaff77153e2fae418c160af0dd8
BLAKE2b-256 79d9d8760eb367349847b67299e579f66833e016e1d035b8849247c711b6d070

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a281f50dedd9fc748e792d49509bf0f3a6fd1f55460ecfb8e6106d6673849dd9
MD5 501035cb04aabf1a89bc824fb2383980
BLAKE2b-256 cc0addcc3cf66607113cae5ac53a1f3ef24301abf3ed0dfae7648eebb26d25ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 79.6 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.2.0.dev1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 af976ccec05252ca6a8525868f6577b46a7e86fbd861468a7d3801eebae75976
MD5 8532302b1da5b3fbb859d0ee9cfdd159
BLAKE2b-256 053b356b958f6f6e156e5f833f6d4e4df586a0913aafe4562f9117539ae3b3da

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 81.2 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.2.0.dev1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c80851666244366bafaa0888c7027e945aa00f12eadfa7b8dfa1cfee77594c45
MD5 e9a29754cc2dd661c0ef16ed3af23df5
BLAKE2b-256 4bf51f07cdcf1ba3217ec18bd20f1ad85baad901cef9a020c98cb6c16b745dab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 78.4 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.2.0.dev1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f440d5a112bb3ce1bf64b80df87d8be8ec8a18c4dc43eb444094371b6e46e733
MD5 6f31c927e84917b02487697a5644167c
BLAKE2b-256 5085378f86a44e9b687043b51a8f7743df72c969520bc2307ede34ef10910eb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28a542a7032e4bb4daf9099354e6ebacd472ba3388c4d5404e77547a1fd0fb28
MD5 5e69357c96b30a597e64b8710dd365d3
BLAKE2b-256 27fcedd62a4fb150694e5b6f1a1df0608a9fc91854562ee0bc81938290abf92f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6cf9e6db75c4f0b4b532b196ea0fae6240fad0b5f87bc49d15625bbe57488377
MD5 9ddf402e23cf7c7895d65af456d194f0
BLAKE2b-256 e99cf227c2e516d55653301ae722c82982fdc43a4288ad361c4be592cfcd746a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c118e72fafb2eab7be26bada634270a89f4aef696581981643aea1bacc4ea10
MD5 9275d34a26dc84ee5b00df6c8db18c8e
BLAKE2b-256 743fe430ded5d8193844bea0335db43439b06bb4d7f085fed80a377eb0b985f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0e81c381815690d015a6e82bfd4663cc146811e04aa82858940a4bb3e5700c50
MD5 37bb66929b630386b8be3f3637d02ae7
BLAKE2b-256 1144fd8bb41625cc8871bf0e506612fd528b2d1fedbc3ec92b36932567c54c63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20d06e2fa07ededbc134fd74cd54bdf42e02a202965642735f412032b3becaf8
MD5 092ba2f20d7024909ca5c61228ff554c
BLAKE2b-256 0bd45220925b6b7cd15d5fd03de4055b9140e873b1786122f6308426de29c57c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.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.2.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.2.0.dev1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5d8633231defa9633d32c6f32f6cc8092ba635803bc0ab50070a77a600f84663
MD5 9aea078fee327de8a10e3198240259d0
BLAKE2b-256 83aa30c5dd6677562bfabb60afc76b916ea8fbc86de92cf860d0c956f1e2b3f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afd7e028c548c242410130e5f7efcac1594761581435210e66612e3338b22c62
MD5 149f1ff7e4cc252bf1883e6fadd727fc
BLAKE2b-256 30de14bd86c44a7bc052992590fa68498af6c09a617b894c1dd801f28663ceb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 054be26cf9f55004d432c9c60d1d93c84f11f2bf720106b91dfed10ca2813664
MD5 5d36f373dbac840fed2f79e4ec1f8ded
BLAKE2b-256 be18adbf615583f237d66f97b655b99fd8a09154d127d0611a294955c9e92ea4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 80.3 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.2.0.dev1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 8c322c16b69b197f316848415a846b2fd31354c08e94b3660193151a05b69306
MD5 9c5d91077081fde9093b994806e0ccba
BLAKE2b-256 2dfb7720cfb6b5370a46171f002118fab661aabfb5084f5c7bebecf2ddf51393

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 83.1 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.2.0.dev1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 a1ca82888a5abe61c4d3dfbf3a2a0a7d30bde47b084f9045055b6b29e56d6110
MD5 1402490a2bdf825818735495d004cf24
BLAKE2b-256 a0107e1a0a67c85be28c669639beb79048cb3a58da016341605c3931588d7c5e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 79.5 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.2.0.dev1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 684164b79a706a1efdfd319ff92cd85ede45df513e7e73f83ddaf2aecf3f1ffc
MD5 ca8d3b73aa0e6a7f2cc2415bd46d2b2e
BLAKE2b-256 56645705a93e34cfa545fa8972811083d88abc13eb265391a47d279e9dccb374

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e73c38eaf62d48c1a690fde718279abdca025f47c7e14034df4f9f408c3647f8
MD5 89df2f54de7c1b34ccacaa3bc8dc908e
BLAKE2b-256 e45818fff3ff5a84d49f0f9b5528256832020ac53c89b998bf9ee81816168481

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3302fe9029a9a3f343d729b960a990fed3e2a19ef684a20f98afec0bed74365f
MD5 9d7d158b6c38ad83e9017bdb01510795
BLAKE2b-256 978bb38bc6011d5f1075d3b1b8f40ee34e5601784b849638c842af416dfbaa3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbe51ba22429617d9fd75432f46846e55845c8f30094aad53752d8df82607a74
MD5 90606962a3aa2dea00d419acc8b33383
BLAKE2b-256 216f1300627fc521e63862ccb485f532d6f3104d0595087cf1ca632b93fa83fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b20d568534dd791c3c716316043c4be4bccd366cebaf2107c35e54ff2a51d264
MD5 3b2624cfb5abf79bd0ffa2c63fa86696
BLAKE2b-256 376f6368e6b107c8af89a428867f2806184fc763742f816701e594ab89c5b603

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22a9efd3a5043a96f14ee05978d86f5f9771d576da52ed880ed2d2adffe49ee5
MD5 43442cb182828bee4f8f965275c02d7a
BLAKE2b-256 1d2181898cb381315a62de076a0948b21ea7a4ba88ca88307e71d37a5cdabd09

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.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.2.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.2.0.dev1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4324462a36ef539c7f23e07f3200db777fc6b8f20fe32a228a7b6ff3ff177f52
MD5 2fc911b92041dd5635154fa5e6e2c599
BLAKE2b-256 054b9488d7dfb87fd5d1a54e67b87baa92b2594323c78aa34ed320c6d6d49eec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83c47c15eae59d1fb1778451c432410d1c62c514930fbbbdb8da876fe6529350
MD5 103ef7ca715f24fb46268f4ee05ca1c8
BLAKE2b-256 78958284f9ddf9445cf7b4610b308574a06bd5f1a6e87a2a4af9eb42e78b5672

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b882bceea2eb04eeb0802d37b789198c75573b4e5d34b7e010d180783c90af74
MD5 60b286435acad5775d3e312ad8df1960
BLAKE2b-256 116ea48eec90c76363afd13a64f5fceab2a8fa0bb3b5ccfa7b0562ecd70f477d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 79.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.2.0.dev1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3296eff38d469c750b2608c216cd8f1d3ea9d0d9bec4524a4f5adc9cd3fdecbc
MD5 ff8a236b00e130c9bc363aaf9381f70c
BLAKE2b-256 5584bacb8b7ab773c96b07ed2167d15f6156d9fdb9a98d69d8eb8243b37c393f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 80.8 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.2.0.dev1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 29dec7c1cc0ba049ef5e29bd148eb3e9c8c160384b1ee4c2fd70c8fd22ea3fe7
MD5 fcab66941222e49384071e33b626bb6c
BLAKE2b-256 531cd337cede9e57172982a5870c5fc953cf366fee3729a46e3970e8cec30512

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 77.9 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.2.0.dev1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 154a0c2deef97f639ff4380433bcfb6d19e5cb0a80d2e8960269c2f05580f7ef
MD5 0d51da96bd0c1c2e56694aeab7e0f18c
BLAKE2b-256 df83b7aef7bf3fc2ad27cfdad003798e1dfc810bf28023684e1e9b5e3f360b55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4b6951f8c280a486892c7fd383addfac6ca21ae97e104fe12d3494b41e71d61
MD5 1f69de77096c5e010116c0a04bbb7925
BLAKE2b-256 69f84badda4732ccbacd5a715214ae76913dbab24dde4528c5248b79e199062d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 84691a87ff780dca0288939faeb7cf8c288eeb19a7a7bfb6763e9386265998ff
MD5 09045b5624db4759623da0492cba640c
BLAKE2b-256 da2915cabb757b2170fb5d0be5ab9606b19ea58e269c32965595f9dbd16aa544

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 118692dccbf1da456b30b50bebf89b7c4d536bb16537033b88dbaf2877325702
MD5 30d927c663a61714b7406b18fb245a9b
BLAKE2b-256 680d4a3c9226c8f3598f29d45abe92fb274cc8538ed3f825cb5d264d6861d15f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fbeb0612a3ad10173005782478af0c0b0c2005fc357dfbe50406ee0b6a930baf
MD5 7d8ed349318846caa1d699aabfd1ce4e
BLAKE2b-256 a7dfdc23df29663cb25e6dbe2936a77e51950300b428ef08728f6a39cabe08fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a04060d82da2f49062c819bd17aed8d0e03eed0fddfc002b53d3f46cb1e1b893
MD5 3cf641dd4885f0c0a96b5175681ea129
BLAKE2b-256 69346965ca05893c37afa3f9b434c89b6d0bf4f22a14997d0f141aa253c7e9a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.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.2.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.2.0.dev1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d383ba68a25fc2046ce71ddb46e0f91fc787c51c91926a5b1b2077a132d14caf
MD5 92640cf89aa2dc2384414874b013fe51
BLAKE2b-256 3bb47e3fe437d476b5da656dca3d3b418fb129a4871908c8a5956b900bb271a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1048857dbba172ab7929730f115097d563b28f40230ec8ca49445588d7334253
MD5 a97cb1d4eb73075fe6597db9a985b5fb
BLAKE2b-256 23c05cae8187e1634097cae221702d494c3fd2dff42b9f4f1637be561e0dc217

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2e753c51c150e58046994206250467c5f6bd6f816c84975dbcd2b46a2038a56e
MD5 c27f62d0eae401227bf0d79080d2f032
BLAKE2b-256 ce83b433cfdfca0b9d5481b32ea23180e70f6aaa0add6bbad07d606f4ac4b4e7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 79.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.2.0.dev1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b9b4694e0f04029bf6b2df6b51e7239d29fc1905deee51ccf23c069bfcae4c2e
MD5 00da3de0d9815906e34cccdd5c8a2abf
BLAKE2b-256 88f90e19c790508c18061548625ae17665cca5861ce92abfa796908893d88a7c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 80.9 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.2.0.dev1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8646a42e7ba5347c7954ec8138e50e25126382b0f515ee98cda41b79021e9399
MD5 7ce6f25363b83e049b9bb2811c59149d
BLAKE2b-256 46fa5f55c5ed506e4d136ffd5ffb1d38e681af226cccb82ec759d54f0b006980

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 77.9 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.2.0.dev1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2f56275cf88f100f971e85dff12d419c8c43b1e9ce3dd940a8f941df69072f86
MD5 46ced4927c0ebded969c8e0c08ac73cc
BLAKE2b-256 44eba5bda7c9aaa524ec5cac9dd377093c8f6d1a97078da96f68be84cfe2347d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 351f3bb2454db7cf11b2237029206f6fdfad18d8bd4b3e579642fd2c8ae5da13
MD5 a46dcb90729e6ef10a6fbd832f0cf583
BLAKE2b-256 b95d6da87dbe57b303916d0b7d1e9984b56ffed6b28ee32e8265ff064b1a44b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b3b10aaa2b7edaf9bef2e6c530a156f1e2050b7164b426606f1df79359a295e6
MD5 702d43a849216bca202d63b1bf6ea21b
BLAKE2b-256 13e47ade3878d29a43e8199b1f34f63016b767f75319472cd0a30949ebbfc0a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55360d9bae9099ac13b6e2a8f738afeeb060dfc15bfbc446c6b7f535bf68d225
MD5 b16f9477d98d04bb983a63febd3db029
BLAKE2b-256 4970da33db711d9b3e33ec6487c1d71dcf92be7a4bb105de871ecf4ab7ce29b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d0c543a9344a904846dc387e2b57fcf22122f43695750d13a0385a369118e960
MD5 866ee41918be4c0f1557c78a2ce9677d
BLAKE2b-256 0cf3290632edf57cd1797bc341f27664ab664c6d89c164e427dc02f69fe091c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a33d8105d9e2ff7b6e20b86d3ebe60e319fa7cfcef735a9829dd5527ced1105c
MD5 29b0b6276f8ee98b816d96be7c1a57a4
BLAKE2b-256 0f220a90f3ce533cc262cfc970ccceaaa85cfcfd866bd2c18f718c7eecb93d4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.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.2.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.2.0.dev1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6c814dacc78f37c02b74b1b884daac80b634d422aa5140cb2a2a1f72f40cd7e2
MD5 e4bfa563b194812600e96a5d5b565cf0
BLAKE2b-256 9b614f6b521fa8ed2800474c19fb1aaa91db94703a76bb4940d153380f000e67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce4cf2f1fe92edd6540aebde491b61e67b90cd35a9cbf4474db5e5d3661f0f91
MD5 85d233c1c07050fbaa08a710f934272e
BLAKE2b-256 a0af908012ddde0900d2b153d5d91258558b20cf3a3fff53ef204de7705aa857

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9938959fa0e05829831223cadd51b3c764fc8434d4a4c763c32a4f4b9ea19313
MD5 8f970e7050c204bf49a65dbe9eb39b90
BLAKE2b-256 679452242b89e7e253b066e0045aacedb085fbda04009eafae7e5b697e64a5e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 79.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.2.0.dev1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1846bfb3ac6a705fd3176b7703cb640f2527d1fcb9adde4f983e3518b0d87e73
MD5 9f05ad501fc324015c5d143e218afa0c
BLAKE2b-256 f5d78d4655a2c4276ac641b0b456ae122799590e4133a0779eb4f81c2ec4eace

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 80.7 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.2.0.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8e80de6cab08c747f5a97ca5c7db5111d445dfcedc8705e416c304ea6a6c8a7e
MD5 d40043ca73f2ff35dfdac6c591eaf39f
BLAKE2b-256 c3cec737afb97c9248a1cfed498760e5f2f2052d4ad852995eb6a62e4c7629b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 77.6 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.2.0.dev1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9c922907a299e9a1eaa4248baf9bdbed0274ce443c48adf553b029083965776e
MD5 6d122228f97492941d101da68c76ced3
BLAKE2b-256 8881e9cba4717916f39af4abbaaca56b10ec3e3bc923357b127762c9aacaea73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd8d8f1c20a9af333786f03423cd8a74428bede6d755135417e84b2c872ffd69
MD5 ecfb8adf6b28c48886e640401ccc34b2
BLAKE2b-256 743b5f0ebb665638391131d28754f1ba202684d69af9c02276084231b4ca9470

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f6d56d2a25b0bad80b7e93272cf76ade13b249bc63e79b731cf2ad07aa29a49b
MD5 d3d943c63a5dc584d87219fe69a1b9d0
BLAKE2b-256 bb0ae44d35f775e8f2dd77ea196408de53fc79d69913781c1869c7483a1920c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a7b289119cd488d32ad9bfd79e2fc935ec11483de49739f9f37a3bd34c5ade0
MD5 7cdcb9f27ca8e718deec42be0d25312f
BLAKE2b-256 550ff4e607ceb7703728bdadaedc5aafb29d3d905637c6d4df310e8c1e03be27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d468c730af7a4db21146c58efac3d0adadee6ca8f82b7c58b3a66f2cc6e048fb
MD5 eb1a43b5105777e586d98a032dda10e8
BLAKE2b-256 95412653072091f021b10b178d3051124bdc21d2f26572440d55b5871475152b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e586636da4f75cc81c1e2f13aced302d9599aa5206649f228b6cb8ac8d8b845
MD5 771d68492db3f278fc2f97d218e81584
BLAKE2b-256 a4f4a84dd49aafa7e3f64107d08de3265695986e669eec5d327cef47738d7175

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.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.2.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.2.0.dev1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 287a79de787407aed1ef8f7ee97fe271b4aef61682e3fa9316519a2e1954da25
MD5 de37ab6215309e28ba70752bb2909079
BLAKE2b-256 637ba5a6fb2710675de38f1a7bd9c63cf00ae65fc16fd91a1d4ee939d6f5ac80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5cc5fe1613b3e451affcb2f7dafe33ec2692649772fe5f0dad6fdae0083e422
MD5 0a4d432df51ec33e2ed2fcdca1109ec9
BLAKE2b-256 a5e57608df3490b72b2e6d996e16a2b50d1ab784bf6910725a7c284918ea1686

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 20669951c37a6955df00d6d715d7a24646456800efddefd198b948fcf48da72c
MD5 9da206cf9b8146617b9401e11b657b56
BLAKE2b-256 54b22935d8f46d56320a0be3fe0f78f6fb3a3789fb921e3c29d0606829f4661f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 79.2 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.2.0.dev1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4c073c3d51d5242d0b7cb45a1aec728f1ba0319261796b3d829879481240c814
MD5 7688fea38e7ea3e81e7a859b50148627
BLAKE2b-256 97075c975e4952616fa71f37f38935e34e31640ca4e424ce2f63e0694503d4f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 80.4 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.2.0.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5c0fdd8ef50c1a70f2b92d0b561ee54a2b32b3908862724c7b329bf8f455e5ad
MD5 678fe500758421ba2dfbc037293d9297
BLAKE2b-256 b2cbe26ce34a5c12ded01009bac501e16b2c668b9b8ca915c9d309a50a75822a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.5 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.2.0.dev1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 461cb4e57edbbb2ea31c739a565f86ed3473dd86ebe9f1269ffd6caf56e5f279
MD5 14ec89b5bd7b7934cbcce5b3f228df4f
BLAKE2b-256 891d1549966a9b2a54a65efe76471fa26d89677def45190d96073c43756cb918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7190edf401e61e606e162562181c1155d9eeaaca40fc3422ad5fdfa860f88a37
MD5 f99e12c59ba5c3e1c09f8a279744da88
BLAKE2b-256 e4812c097d47173bdb24baaafeb895fc02028dda471e5fb5c066a0751ea58067

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5622261b69b4a6ccbde7e6065dd1f92e9ed6dcfac6248341f6b4cce9e0e2bf90
MD5 07dc2e000f4ce81712d4ce0838f28785
BLAKE2b-256 9013e674882cbb8dd058f7ca503cfed98f8e5ed7f4e0bf856798720af4c92b3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c1f583086916bb6057a341ee274bab0adefb64b7800579c2b7693d7c4628151
MD5 423e3e431cc7fec91ee257d9b6f80d86
BLAKE2b-256 dd4383b4d82676b0749718583182c2aee03acba58fd7c5a667536a5f126638d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 08cb433ed24bfaf25cdabca13cf314bd3017f54320a421fe35d0b28f14a4b30e
MD5 63779c96af64434ddd9da2004e994d9a
BLAKE2b-256 2fcec531dcaa9414910e09ffb0ec56de7693b5f4b6ccfff8efa2f90b0e7a4916

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c199bf4d6dc8a4cf480fe4c222fcd7fa57252e6cd9febe53c2fe873265d91925
MD5 0954fce9431cd85edac10dd587e36395
BLAKE2b-256 31e8af43eaaca1e907b9fca3376fdee3d5eed8646258fc628ade20b46550cad1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.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.2.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.2.0.dev1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 889c74d019511e62e802f2bcf46f9272ea0131b1189b882b7667bf2586801c51
MD5 a4c9fdb1650fd83459d4c32ef45bdabc
BLAKE2b-256 5be6a6d18a2b0a0e93631e177a7cd12e1d640c00bcb3ada4c5934dafe7fd9974

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6c06ed1765e50b7360292281cc88c385193337ceb66666a7ddfff9a0cd9f143
MD5 41b0485c9b7ca5a0f7d7c81ec7039f7d
BLAKE2b-256 4013684709f18db49cc54553fa3f14425f17076f682d8324ea69b3f152e2adaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e168abb3cd6874aef4ef5fef8dc43a0e89681702df4b205f7807908ac67988c
MD5 9656410f72715f82b102a30ce514d68b
BLAKE2b-256 4626661697f8ef083757238f8a460c9709dd901b114d823506c16ff4ebdd8ab0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 79.2 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.2.0.dev1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4e0670b130b8defb8f8efd245468b91b158aecd323a7095e56a21469b8febdeb
MD5 f80a0a7f8b4f60196e6c804d99b4f56b
BLAKE2b-256 938523cfc56e9cfd548da601d858ca59fc778ae9639a9a326e4d982d68cb272a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 80.5 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.2.0.dev1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bdaf56a487f027fc47e9167ab21f66dedd2c75eb268a7a0fd49da32fa2a59216
MD5 5c45d670068fce58d59a49a64495dca9
BLAKE2b-256 26b9e79697e23df9ce621c7e619e7f229ca19407a0af92b1b8f4b90993e04560

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0.dev1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.5 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.2.0.dev1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 559184353e82360a59bb5569fca7d0d650c93dad274a341ac785852c05bcd5d3
MD5 a46f5899b9366f8b86e2aa176ed635bb
BLAKE2b-256 dbaed33e77476bfa37df2b39aee64bf7566bc7ad878d8f865695fbd354ecc7da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea1ff284e79336e34b36c66a03ceaf2b94f13d6216a432a3beacf6d7c79ccadc
MD5 89ee79ec34c710dda6dd6a8a9c936931
BLAKE2b-256 9360e2240c31d3aed9b51cd6ed44b1b63b96a5781b9d02487cd7cad234cdbc2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 07ec210fd4be3d3dc9d934aac55f8ff5ae20653c2f6de9165dc97c57a7ea85d3
MD5 4e86ca17f648ab434de9822efc0b0254
BLAKE2b-256 7e02f6e3acb21abe469709db006a5056b14699bc7abacc8180c0e681a11a20b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f94bd4362d49ca99984897d35e3ab9cf2c7b7338b841116b70f745c58c5400d
MD5 d60398a598d293722412ddf590d0f9f5
BLAKE2b-256 a98d5c6dc1da23ee8dd8bf9f0068034fcebcf00952dc3891ee40e826d1c13eba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b6e6e8ca8c1b321bacb05becacd23d5fef884c3316f787f20bf99d11f1fee945
MD5 44a038ee00f3044115a530dddb3e845a
BLAKE2b-256 04b558577a81a6ed26a35743adcc7c6f6962dc2293720365b0eebc93be398194

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd5c7531524d0dee84e3f9f7e3d7368afdf9d4215c9de681e4ccb3a835922eaf
MD5 c8cc3df2a92925d5a0da42c4e1659246
BLAKE2b-256 a5b641b22e171aceca37a5bb221677a904a52ad57f10c00e0a61639bb998367e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.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.2.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.2.0.dev1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e819718edb8f703137646f17a76e85eec5fa0acb53240bfce71280edb6b69b39
MD5 9cc5f6eafe60fd5809972b2288d570db
BLAKE2b-256 5a554d73be3bb61f17800072b4f9145249e1762ed1254bb31ef2e51c7a5bf9aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96ad9859e362cc50d7996cc9556a50a8b9ec6ffb152be45705bb1f8967ab8642
MD5 5aa4cd3d7d20c75bca3f0bf9522c9328
BLAKE2b-256 d5fbb6bea456c97c2fd07c2e1d99663a37742974119b97842075f273dc73dce4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0.dev1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0cc27953f82d80fa600e8d96a1d02234f6a2fc1d621b18d8fe2e41c27139e700
MD5 8bf22cb54f1478623ebc8eab7361d532
BLAKE2b-256 6436c66ea0b4a993e11637c5a99fb465fb1e49c03f20f4ed6c55ab4dcb167efe

See more details on using hashes here.

Provenance

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