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.1rc1.tar.gz (127.6 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.1rc1-py3-none-any.whl (61.0 kB view details)

Uploaded Python 3

wrapt-2.2.1rc1-cp314-cp314t-win_arm64.whl (80.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.2.1rc1-cp314-cp314t-win_amd64.whl (83.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.2.1rc1-cp314-cp314t-win32.whl (80.3 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.2.1rc1-cp314-cp314t-musllinux_1_2_x86_64.whl (198.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.2.1rc1-cp314-cp314t-musllinux_1_2_riscv64.whl (192.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.2.1rc1-cp314-cp314t-musllinux_1_2_aarch64.whl (205.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.2.1rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (194.9 kB view details)

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

wrapt-2.2.1rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.0 kB view details)

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

wrapt-2.2.1rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.0 kB view details)

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

wrapt-2.2.1rc1-cp314-cp314t-macosx_11_0_arm64.whl (83.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.2.1rc1-cp314-cp314t-macosx_10_15_x86_64.whl (82.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.2.1rc1-cp314-cp314-win_arm64.whl (79.6 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.2.1rc1-cp314-cp314-win_amd64.whl (81.2 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.2.1rc1-cp314-cp314-win32.whl (78.4 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.2.1rc1-cp314-cp314-musllinux_1_2_x86_64.whl (166.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.2.1rc1-cp314-cp314-musllinux_1_2_riscv64.whl (156.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.2.1rc1-cp314-cp314-musllinux_1_2_aarch64.whl (166.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.2.1rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.0 kB view details)

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

wrapt-2.2.1rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (166.4 kB view details)

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

wrapt-2.2.1rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (167.3 kB view details)

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

wrapt-2.2.1rc1-cp314-cp314-macosx_11_0_arm64.whl (81.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.2.1rc1-cp314-cp314-macosx_10_15_x86_64.whl (80.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.2.1rc1-cp313-cp313t-win_arm64.whl (80.3 kB view details)

Uploaded CPython 3.13tWindows ARM64

wrapt-2.2.1rc1-cp313-cp313t-win_amd64.whl (83.1 kB view details)

Uploaded CPython 3.13tWindows x86-64

wrapt-2.2.1rc1-cp313-cp313t-win32.whl (79.5 kB view details)

Uploaded CPython 3.13tWindows x86

wrapt-2.2.1rc1-cp313-cp313t-musllinux_1_2_x86_64.whl (198.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

wrapt-2.2.1rc1-cp313-cp313t-musllinux_1_2_riscv64.whl (192.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

wrapt-2.2.1rc1-cp313-cp313t-musllinux_1_2_aarch64.whl (205.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wrapt-2.2.1rc1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (194.9 kB view details)

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

wrapt-2.2.1rc1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.0 kB view details)

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

wrapt-2.2.1rc1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.0 kB view details)

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

wrapt-2.2.1rc1-cp313-cp313t-macosx_11_0_arm64.whl (83.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

wrapt-2.2.1rc1-cp313-cp313t-macosx_10_13_x86_64.whl (82.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

wrapt-2.2.1rc1-cp313-cp313-win_arm64.whl (79.1 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.2.1rc1-cp313-cp313-win_amd64.whl (80.8 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.2.1rc1-cp313-cp313-win32.whl (77.9 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.2.1rc1-cp313-cp313-musllinux_1_2_x86_64.whl (166.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.2.1rc1-cp313-cp313-musllinux_1_2_riscv64.whl (156.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.2.1rc1-cp313-cp313-musllinux_1_2_aarch64.whl (166.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.2.1rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.2 kB view details)

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

wrapt-2.2.1rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (167.0 kB view details)

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

wrapt-2.2.1rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (167.5 kB view details)

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

wrapt-2.2.1rc1-cp313-cp313-macosx_11_0_arm64.whl (81.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.2.1rc1-cp313-cp313-macosx_10_13_x86_64.whl (80.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.2.1rc1-cp312-cp312-win_arm64.whl (79.1 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.2.1rc1-cp312-cp312-win_amd64.whl (80.9 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.2.1rc1-cp312-cp312-win32.whl (77.9 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.2.1rc1-cp312-cp312-musllinux_1_2_x86_64.whl (167.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.2.1rc1-cp312-cp312-musllinux_1_2_riscv64.whl (158.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.2.1rc1-cp312-cp312-musllinux_1_2_aarch64.whl (169.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.2.1rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (160.3 kB view details)

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

wrapt-2.2.1rc1-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.1rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (169.4 kB view details)

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

wrapt-2.2.1rc1-cp312-cp312-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.2.1rc1-cp312-cp312-macosx_10_13_x86_64.whl (81.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.2.1rc1-cp311-cp311-win_arm64.whl (79.1 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.2.1rc1-cp311-cp311-win_amd64.whl (80.7 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.2.1rc1-cp311-cp311-win32.whl (77.6 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.2.1rc1-cp311-cp311-musllinux_1_2_x86_64.whl (158.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.2.1rc1-cp311-cp311-musllinux_1_2_riscv64.whl (152.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.2.1rc1-cp311-cp311-musllinux_1_2_aarch64.whl (159.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.2.1rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (153.3 kB view details)

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

wrapt-2.2.1rc1-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.1rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (159.3 kB view details)

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

wrapt-2.2.1rc1-cp311-cp311-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.2.1rc1-cp311-cp311-macosx_10_9_x86_64.whl (80.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.2.1rc1-cp310-cp310-win_arm64.whl (79.2 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.2.1rc1-cp310-cp310-win_amd64.whl (80.4 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.2.1rc1-cp310-cp310-win32.whl (77.4 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.2.1rc1-cp310-cp310-musllinux_1_2_x86_64.whl (151.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.2.1rc1-cp310-cp310-musllinux_1_2_riscv64.whl (148.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.2.1rc1-cp310-cp310-musllinux_1_2_aarch64.whl (153.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.2.1rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (149.1 kB view details)

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

wrapt-2.2.1rc1-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.1rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (152.5 kB view details)

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

wrapt-2.2.1rc1-cp310-cp310-macosx_11_0_arm64.whl (81.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.2.1rc1-cp310-cp310-macosx_10_9_x86_64.whl (80.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.2.1rc1-cp39-cp39-win_arm64.whl (79.2 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.2.1rc1-cp39-cp39-win_amd64.whl (80.5 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.2.1rc1-cp39-cp39-win32.whl (77.5 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.2.1rc1-cp39-cp39-musllinux_1_2_x86_64.whl (151.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.2.1rc1-cp39-cp39-musllinux_1_2_riscv64.whl (148.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.2.1rc1-cp39-cp39-musllinux_1_2_aarch64.whl (153.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.2.1rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (149.0 kB view details)

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

wrapt-2.2.1rc1-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.1rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (152.3 kB view details)

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

wrapt-2.2.1rc1-cp39-cp39-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.2.1rc1-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.1rc1.tar.gz.

File metadata

  • Download URL: wrapt-2.2.1rc1.tar.gz
  • Upload date:
  • Size: 127.6 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.1rc1.tar.gz
Algorithm Hash digest
SHA256 f582e3560bc76c0d68a4805fa255dc751cdeed216bdf6612a0aee570bdd0c57b
MD5 0847a38ed03d7ca92448ee0963bba6a2
BLAKE2b-256 c153be320900e44a93d1a93e077c324f7cebc38bb4ead5089deb5017fa760b2c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-py3-none-any.whl
  • Upload date:
  • Size: 61.0 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.1rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 3b95f07bc110c2325cfd70b9513ac4760b1d518f6d6810799eca63dd88e33022
MD5 85bf194d17fd6afa8f522b5bb0aa53c6
BLAKE2b-256 4800bb232205f0b2e34d08ac89d9e0a0824e6a464620a5a259ab6caef5175e23

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 1fd5ef9e70580f25f4e3dd68ec1300b17d5478130aa04df5e81f9b00da8e4d59
MD5 23e145ea10e1a7950bcce79fa787aaf9
BLAKE2b-256 f59eb15f23ee4bdff7b8e7486e3781216fd4ded85b0991c02b4a528b928ba49a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2ea44b327b273fced34b059a8d50a0d2e0dc893bb6464f283a9beb9dd3f6d085
MD5 75bacb46c0ddbb5b9686a4f944e757b6
BLAKE2b-256 24c645094724d5783d397031bd57d4c4d604f6ab9c2cc934e1347f6162b55076

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 df5f0a1f036454fa091dd219590613e2580edd386a60ad3592a12fd4948fcd4a
MD5 dfea2a279c42be2d3600bda8e43dfdcc
BLAKE2b-256 b479a7e48ec04a0886b71a33272f60002f0baf9ca7fba2662ddf8e6dc0c3d2f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63bb83343bbbb3ebf3f41dbe174262191c657731d004b588937005dd91e34d9d
MD5 d5e964ab863fbcf996bd8c6fb80056a7
BLAKE2b-256 dd19f79a9fb152a64403c22bba8a204dc98494fd0ac8478ccaeaa181034f47d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b80a0710fa447eb7f84352ad70c2c25f1a0a70c58a19e53d64f47106b3e07e6a
MD5 1e59e02ed4afd40e99c4d3ab0cec871d
BLAKE2b-256 f10d58bd5cbc66325d490044f76ba5752125a52e857e2f6bb88687023717f24f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31dc4a177e434b86278c7ff69496e8aa7afc6acc8256d2ec19d2a2b871a2f2b1
MD5 86b0ccd97ae9de0ce864fc375a3d755a
BLAKE2b-256 dfc6e200598c6f48815ec713976185c97bffeeebf416272731984b280df51ef4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0d3000a422d38a8624461a1516e290b9245283c5799d995d39887cf9cfd6906d
MD5 7e09d6f103166796bef796cc63b44fa8
BLAKE2b-256 0887f551dbb8700789f6690f7a6a60035e6ca5699a883c824ea933d34c238f3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32f2df0a75924e0afc2488baba91ab7fdb2798b470925497476f6edb3f207c35
MD5 9ebfb449172ae2d1662a525892b4b116
BLAKE2b-256 62922d3f26a696a05b7b96147fafad61b07a1ae9d556f5652bbadb797e3cdfd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1rc1-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.1rc1-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.1rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a4c4139d5a607fa62eb0df547d98ebdad78997db9b0af78ebb66648b75afaf09
MD5 57743ad1ad13cd482e28e0a05e553448
BLAKE2b-256 fceed63dc027909df88a975213a21ff111260bbf10c14a071d9ce00869f33700

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b008823e968c20b63d8b8332840087b1794709073f4536fa5bd7b19456e3cfda
MD5 d3c70b74305d5e2d1a4593bd7c5122ae
BLAKE2b-256 2bd9fd0f1020efda33b5f28490732bec3576f30dba9de3e7b36642ae306a8276

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6dd0c5dd1ed99d51f8cf9f14d7a206c311705eb3d3ba64e8c969e09ae5b2de10
MD5 de3ece8b235661b9fd4c0c892dc79821
BLAKE2b-256 3ffa4f84ec068dfde0bbbf041ff030c364ea407d6fda898a8558a7917d3868d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 fd2d42ac0bac98d32df6426a1aea4e53380eb9c503c959bae86071e790bbad01
MD5 7399c183ccadd99f4505827178b725f6
BLAKE2b-256 58c4cf4f1a5bcd32057dc992c58713b56caae380773599e16aa8f832e25e18ec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c7b44c490bcf92ac2bb7144a5af3e2a2acac22602bc23e25a5ffe911f6402de8
MD5 b5b224c70c34ac89cd9901c7f8426bbe
BLAKE2b-256 cb17fd64fa63d8c836a30a7450fa474c5c70a34f43662f2706a0a1ea18923d14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 52a651a87864675f1bb4091f3e8a9268012876978da2baff3d79e4cc156e8b75
MD5 5ac41179eab903bbab9b4b1d5864bb1b
BLAKE2b-256 c0fbdea133e46f0a86590ff112909c11177148c5d0e0338a93e40fbc78393af6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82f2038d90918f2b110caacc6f4305584e4a7552f7b09497ec2eed81b6382943
MD5 2638ee58b64f5f0c7373d6ed91473275
BLAKE2b-256 1476405d90df756c2b00a8848d27e2295d8f98df9cf36fe9a95abc99e8cb0001

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8b296553dde07ff3d19ca9029af0b123dc6e2a88e71d16999fd65487ae5cf26b
MD5 2afc6f3cec218c167b8a1714136f7d74
BLAKE2b-256 30cf15e1f3c4124e2a8cb5c892fc92ccd258857115d5fc0fb08ea24818fd7306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c631af7bd0da0280b42c46f44eb84cd739c0648eda97feb808c82ef60f970e9
MD5 3fde999e319f8cbd3589108f01bdc064
BLAKE2b-256 600350a00a8fa6f1f276d0cd94ac363b0aafd29b70267138bc8a662b7f0cba67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dd04250d99043bb80fbc7f2aec6f11396191be8c96d84c343494355caec1cf8d
MD5 1b84d6013384d97731b71ca4539db61a
BLAKE2b-256 48ccd8d889137ac8d81190258579cb9209912f6af63bc628e9b88c0773c61a08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e4b7fbdb8058d3ad78c5e1bcb1e2858e48ed29be0d30a9eeaf638c1956c67a1
MD5 aee8d8f5ba8c9d8d47ed82ae405153fd
BLAKE2b-256 ff89e70ca8b2ad48726c79337c59be7f9a6e6b5ca9697279f97f851d802741f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1rc1-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.1rc1-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.1rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 45890d10ac9c0ca4c0d6a53519910b0ad51d26b6deeefd966d9515e2f191e46a
MD5 2d416e1c01a059682f3b52c81dace49c
BLAKE2b-256 1c1c34f9db06d135dd83429760de106f8fe182a116bf632ced2ca3218514ceb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32b4398e7d37efe0c8cfe9368e01ced429aec6669ee4376a7050c3faabb3e14d
MD5 0a8f343194dd57a536e2bd013aa4276d
BLAKE2b-256 a7fb71027dc05be0dd68bb4e2af9764c89dd141a3350c398dd66e224e986f66c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b724284230f528a2aa9fc4274fef29c2b741adc4fe17b02d2674d4bb74882cbd
MD5 826ef2556daee4b3a34ca58148862379
BLAKE2b-256 aee0b9aa3b2be49757ea1a99fab4f9032eae00979ce93e4414d88caba29dc0fe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 4f56ad048147837b33643b5ed4f2653676bdbf7a57b6907c7eab15a7226d8cf2
MD5 bb7b41d90acd870e3d2b6e4615d55370
BLAKE2b-256 f227353e60c0e255ecbcd1ade2f57ebd09bbe1dab3cd5bfe2a2d529068170e28

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 bf57b1e7a64da3bed3e6824fedf3924dd1094132f48548e6b1e2852a6a8c0825
MD5 9e695355d1cb5787b482b5f6c9bd039c
BLAKE2b-256 6dde8e7c60eeee614994c80bae6e15ed09b301d2739b7e4198900618a89e5cf0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 4b4f2ec2d898cdcd321458d1da290101b246f693e255e321ce50df7e12c57dd0
MD5 62509549fa1d1c9c70032c4a3cf29418
BLAKE2b-256 91d9e1c7e540c3c0e6d06df60d01c876ce12100aaaf09524106ac785eac8ff2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d57e874a3f22954f40559a8e86f4971abd5ac4017ad408bce9bebf7dd72964a7
MD5 3dfbdca87a7db373ba5d4e8c33e73d98
BLAKE2b-256 97596c17a79805ae98c6d0faa7f160ae3c02533ee5ce5950a1f5f5c0d68e213a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ecc8f144671514b22771aaee94815946765a811707563473d18c3ede30359f9e
MD5 4ca25e8edf6c9896b3369adf48114107
BLAKE2b-256 a573cdc8821531de0732a7ca1cc293a0421ef6cc6c154ce49c16c30076faa33b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb2d01ceb74cc609005ed8edeb86e5e5437441cd89a0a3faf5c3f13ea576760d
MD5 31bd19f3397bd5ab90675c341c5290d0
BLAKE2b-256 0c7a55379d1e6695c49d9fe8b9e98061074485abcc8bd27a89436f91df8089ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 75b0368e0f9e1a5a12291835c049d18007c366e2d0865662f2a24021ef5f804a
MD5 4d3d60496760db9c37e32ecb36145247
BLAKE2b-256 d8feb89e0c733bcfe27e3b734f6b7900e2b6e3dcacc55b292c2fcb8d6b16c15d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7faafd488c1d20ff7a2bc3f1646ecbde2f64e69cc6cc0bdd5e52f307bb38b2d7
MD5 59298d87bd8418769a9d84b2f0b160ab
BLAKE2b-256 b34c3460b28485ea9396590112972af28bc21b2d679ac9abc1a9a012d0abe1d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1rc1-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.1rc1-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.1rc1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 cd718624d5054d41dcec35fb6b29e25a5898ae5cf9144119a1f3dd7c9b73e5da
MD5 52628234935044372a04d2c13922437d
BLAKE2b-256 5835b16b875e4fd04b65050f36bbca723d132a54ec0f0bf3ae2e25dab07b7a65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f609421c60b7d4ff9da6c7e55fb7600be2f57f2d47a54bf9d352d75bf9ef031
MD5 ff2f13ad014e62f047104e1449868297
BLAKE2b-256 b07e86433a7f946863ffb025729983ce0042965619f9e197b8bf78882ad2134d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 85cf09924539cf1cca1c8a4d27224250bf2fd1647a2fba5ee9c443955a7da2fa
MD5 1f76ec7ef17e0448aa4439b88f724b57
BLAKE2b-256 1a4876aaf06bf0e5916bd1b7a9d6de1d54487516934c54e692ca7d113d9fe20f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 79.1 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.1rc1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a7f1a464a408da5af3c28356934d30b44642bf9101689ff9f9e0130a588369af
MD5 2ad4c52d98f8114450796353b9a7630e
BLAKE2b-256 10f67348ad02e3c78412a68e578f20dcf8cdbcaa3666f6718e0d97ad2f62cfa1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9bec05620ea399d5809266f803bf22b5cefe5222344b06d4a7f2c82407b5dd80
MD5 2894b40a5ed571b9747c7a2404deb9ee
BLAKE2b-256 94ba2b47e78c8c894553ea915a697138617ff9e576c80d9fd9fc8dc91a5c8748

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e9c299acea3da3920dec8fcfb6335bb7454f444f5371ea65395510bf60597937
MD5 9ed555e4460b43734f16ecb1b024ccb1
BLAKE2b-256 10d92f9aaf50ac6e3641175a4b4ec5f39df841db337e842fe7e2b4a79f4bd24a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d3f8a7dcc6ec874b43b4516ff64f23f964e86701eb28f02d3f08bdb6b2c7801
MD5 95f28718f38cd93525475a90f098a988
BLAKE2b-256 6b525b1f49eb0b5d1358b50c23fad1a08c7c6de7f04813c417647afc588a6cbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c808b08ba36d3e3af5a153a9bfe98742f119536a73355edb207ebfd50897b6ad
MD5 33b6aeaee2cfc53ea3ac4298f62beb19
BLAKE2b-256 9d72b54be420bfcf35cc69fd5ef1a893cf6957c10f99ca626508cee2ee4e0343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2aeeac681143fbfe2b40bbe06f246859ffedbe8ff4f3af76540eb7cf886706d4
MD5 c69cad49b1cd2759371b9bc5afc51ada
BLAKE2b-256 935f412d2e30b182afcc2e5152bc9660dbeac87991873d3c3b7a7e54f200f948

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7ba7576bd51dbb236173954d79813461ae1d002d80d463d3d6f6d72ab6d76435
MD5 d783e77cb9b5f83ea66df45c9ba3096b
BLAKE2b-256 86bee6ba77510889b62d86cb6c6ed92772e40d43bc7d7c05a7605818fbb748de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27ef51c5764060d82d5670ed04dfaa1589ff5caa253b8cb8514546ad847cd9c7
MD5 369b55bdb44f17978c9c24606b587328
BLAKE2b-256 b20a2db387dc9223ad62d7a597e12b9bee4a33f430043b45f4f6268c1e3dcab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1rc1-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.1rc1-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.1rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2c95ef6934d55f4eef08febc23c32b73de29e2ee2c0f334d150e305820e66c8b
MD5 a3bfb494cdbef6d20d95fa5444186224
BLAKE2b-256 f516a5b07686ba84278b99da4aead0573d4c2307b801625e99e3c465203c0306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 512ee78020390368ab1d830fb51f2e0dd481f4317f51fd13889047300a222f73
MD5 7d2b32f041558dc7dd758df0f7aea4bf
BLAKE2b-256 5d613a305c99c6d84b09f17a8debff596b9cd94874b0a46c4f3da30bad7897b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c590ba3ea93cf23477e6703fd696c735d875f17a3a7ae180a417e433fd247f57
MD5 33f07510f0a38a404f4404c77f97e833
BLAKE2b-256 649a336c138f8dcf027c6df447bc9f9d82eef52841c532fa185a4468085f3e2b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 79.1 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.1rc1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 865cecb4aee660f16970d1db74b8cfa1dadb49a78f3e7b4c90a793b2a80a4b81
MD5 87f8c2dcb89dbf8a3ca864a0a81ee1f4
BLAKE2b-256 7dfd78ad79aecbf3a201bd85a2f2ed8ac9cbae3fcef619b2b4a4f5182e6fdeb6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 68d362860c4bf4cbcf4de5424c962db782254e7a35c2ceb6ac4937e56e3ae003
MD5 a2b68c81df3825334fcb90d2d05dafc3
BLAKE2b-256 2f3752688258d3accaf36952a41e7d47676ecead4f346382b12e1ac67ea430d0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 16995dd22a4c32bc2a6fc61ca908f72d6a476965926aa11ab6d2239492a6dabd
MD5 24769084f1462458afa9f5c7f406d7b5
BLAKE2b-256 8dc03f7aab6f7c72642840de69d88c3c7aa52cfe0edad99466267a785f157a80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 affe3d10adfa19278439c44c5be06d6570b58201aeb9349d1d9086ad324c392b
MD5 c54339b0138175ebab9d6ad9e150ece6
BLAKE2b-256 33bd2fc8cfed671beadc4c689646ef6e5ca214028720392f4c534816d74cdc4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 89cad8913576dff35b68d1032672336bf200f00bd52644a7e071295adf92048f
MD5 b984590889a1256eb1cf022a7454911c
BLAKE2b-256 cdd3cb300b44518cbfc06af47ed9550dcf8586dc27a8b6e15947e1c8bcfc19fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48fe7a5a4d7814401093d955b36ef7a4314088a0c2ace14500aaedcc4c87ddc0
MD5 a2bc9d531e342c239d3876045c9871a2
BLAKE2b-256 2ec37217bbcba0bfcd815458d541312b6930b075d932932e6f2024ad8cc3fdd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b5d1aa9863bfdfd88108763758dce4f72ab698a50853a8ca390ee90b62e22053
MD5 819134c52c3c7084c54367f303101257
BLAKE2b-256 d735fa896d18354d8be4fe3bf790f4297d16914fa971ae735d6266d57f6a53a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd9ae84395e8e0a01b37bcc28404c1cb4ce8197cb57fa922c7e0e2845f07fa81
MD5 06d01ecbe903070b83d17e72bb0d529e
BLAKE2b-256 72e1a7967a42c0501adc0440bd54eb93cb34ab5b8424347ebbf81ecb6f72d262

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1rc1-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.1rc1-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.1rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 40e0bb4f7c467d31f6e876ed931c30c29e70259d0b06188f86bfd120c29a6d7a
MD5 b5e62f0510f4df02858e564e2d42914d
BLAKE2b-256 49195d101296d1f3d5327e12b5078f10228212e157c6b22a1cc59378cc42051c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09659e899d6413c6ba8411cf39ab82781a69450fcaa2c1cc6e4438b74eed4ec4
MD5 5fe56af9e226d9b04628ff6f1c18af88
BLAKE2b-256 2b173287c62758e0b540f14e87a49d1400e3e0a306281bf00663cf0731636148

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4cf540116793e33df0709b74485836aaf8b7d4061df971934361d15ef53c14f7
MD5 1e8cccbd93634224081602d11585f247
BLAKE2b-256 f44413758caa927a99fbf4a97d7c1fee71bb4545820a62fbb2b427457d220d1a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8a2aebdd63b82501a0c645ab8cfceb693ca6d3fc25f4c5c135584daf1927173f
MD5 07d0baa9b7ff9a12de5707569b87a392
BLAKE2b-256 b466c252c1f418660223263b4ec6d2af7b9870e3deae7334c29267073e90ac12

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6df6b328977cdaee38c74255553d5f9c6fe96ef6ea2c0b2ff253eb5202a0d79f
MD5 ea86e1f7c473805ac653619e15a5dd1b
BLAKE2b-256 269b30562636f38b380ad81558b55f339953b5fe76d72f6a91ca3ecb4fa6904e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 13ae85bed8fbf57a9d75962cbfb1b295474171a5dc281c5c5673d2dfa3152934
MD5 e96043340a0d714fb040fedaffd33eee
BLAKE2b-256 bf0992ed8bdb97ee16ed634310a87146216a914753c101e6efbda9d6d11ec1a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71c1775c1aac97eeb69a34ce18d8e162afc9ab6bbdd3c354acd946ed9a584c4b
MD5 f31684c479c7d49c59adb9fd10b3901c
BLAKE2b-256 d0839caa804da55c15d3ff3d1cb91df03cb422704a545338f3f5813a88f4e3b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 509e5edab90cae60b863f6fe81c50bb385f28a3e7f9f3edcdd56ea2a7d114b5c
MD5 c48bd3a6528bd3d3132c0ba24032ef44
BLAKE2b-256 099680f0ea5f875743f55d5bf67bdef82849fcc76017b46db7060d8255d86e4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44b95b665b2825946377069fd6a259ddc28dc7cf05bbeb287faaf1b3b7f85627
MD5 37b0873a02a4a3fdb19b1046c78306a9
BLAKE2b-256 bcf18f5fee849c632761af36d56684ccffd283d9c8207cf359d3b3a91af1d5d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 15ed326e293c895ed2a9c66b585f417d41cf236114e0d12392acfc3b8a43ac6b
MD5 3d8076eccca40123db164eadff02e0a9
BLAKE2b-256 44a7c61784482b72babbe87153bd527764ea0b34338bf96d2940361aee0d4d7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4582e4a23198bad029e6d040d97c3ed9793416c40db9833e51593bf504f83978
MD5 33f7fa7eb8b7f2138084c0153183d268
BLAKE2b-256 6fd79acfa11644a9993642318a3f0304da90ae45e3214ab5902940310397aec3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1rc1-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.1rc1-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.1rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 289b3ef2a42d84000df319b50ce21030fc36fd7096d3807981834b74ddb01134
MD5 6faf14b1b33f814f94615780b069578b
BLAKE2b-256 7102d24f0f75e0404e235e27b662b2911b28d6ea793b165662696a7a1215bb3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48fd6d70ec6695b1f4deb05c5568467e138035800fa1345a6f052c4ad4207f9f
MD5 536b6f532f738145e0d5f9a502bef97a
BLAKE2b-256 632db4c87ee3ad7e5fbc489308cd792572988fa9e0fdfe1b2d735d8281210b50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3773baac4439e163a2851d2081025e8c762df3428f1841cecdebbda6b1497758
MD5 a70cf0aada417ce596c3be0ddb1a8da1
BLAKE2b-256 ae51a0fb70befcb4e8849ecc5115f9cc5d26bd20ebe48c01a0a6ad160759d9a6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e1184b09c7fc0592b4a842255d3dabd70f59bdae775053279ca34001f196c217
MD5 78e65b8daac1ee0cdb4af7b6c640933c
BLAKE2b-256 5ebfd983cab65566e807c058120cc063369a0d5e7ab45969377ef144ce2dbbd3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0533ef44b05c0417cb2ce6948ff46c748e53dc68d441899664fd3c493a39af85
MD5 065f4a1a1b511ea762fea7d645ae6a9b
BLAKE2b-256 16e6450a286fa2e56be552abfea3a0ae06f0624eda4aa67d45667a0cd5bc66a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.4 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.1rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ac262bb954bf1542077fa6476dae40109ec93dd67ef57c6c469955f7a6d965d4
MD5 b7f8131ee58fa681ff0cb94963790c14
BLAKE2b-256 66d7276a5e1e7b74310607f2c359a2bce77062420bf277398c8ac94544bf0ddc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32ccf19323a63349698afdd3f5254e3765425f3bde38e473be7802aa1eb8e4f2
MD5 f7fc978f1dc5613e3e480ab3169078a1
BLAKE2b-256 7c0587f8684ad6e5de1f64f01c57b83be58a62fe92e1d5034a5d57a90961a108

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 feee9acd92dc5ef5269b24285742226b9cc1fc7399eb92f9f1fcefdfa57046c6
MD5 eaa1dc44535a70ef016940eca45a2664
BLAKE2b-256 45bb1b214ffc7ddbc96eb9c65bf8529885115ab8ad5cb95c119738f97eee27ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3960b154033fa7d0ba273a22777bc72b74d16f7e2ab625ac02dce54d44b902c
MD5 42b034c06dc9fab80956b46ad7b9d56e
BLAKE2b-256 404604a42b9bfc960f4e3293e5e7c7eed81da4af4bb6c63dfdbadae3fe452710

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b067d2027a41c71a1b6c7f30fd7ead6c747d1b540e8a392039b4a7c0a7936b09
MD5 23925bb4466b420680675ac12a441126
BLAKE2b-256 3e673b2edf3580605d1f47493a09873acd10ef94ace1c8fd509c17ae9593e42a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09f445ca8c850a8edb332313896ac2efccb0d32f98abcf1c80018cfcf6b46d7c
MD5 fc2f381a07bca3533acea742598f4613
BLAKE2b-256 f7fc79da4295b6c7de322bbf9d98ad30c2edd2ccbdc3002a25d70d78f01fa0a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1rc1-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.1rc1-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.1rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e86cd4db2f273a847f0c7e0b706f324c2d7eb7b3800d9868550213680911496c
MD5 11981661ef383f7a4ac273711b7c9e66
BLAKE2b-256 2f4396fc2bff344905fe7e293b2fd2e20353cdaede3b45848fee5928b51de6d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aede4b6ee18b14a0e08438575eb44d8084e71c1403dc33ccf8b2b7241f1fc777
MD5 8c7286f2003d095b639673f5d10e201f
BLAKE2b-256 5327be87a00b4449260650a4504874cc9a21cf85d0cbc9be117797f15b35e49d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c9160c6d943afd93ad085648a530dc908092b32b3aa9b77556cb0c86a924023
MD5 dc23c5326b7cede8ddb2c2a3adbc9663
BLAKE2b-256 5711c3c37b78d469e57a6d2930763745fe99ae8c5881d8fd3c3aac298fc94ea8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 88770207359b7a51747e1d8a5fdbe23f1f7c66a5415e70d39d6770cb6182e72e
MD5 20b174f42735eca14acc9feec1722a3d
BLAKE2b-256 d96818ec782a4e8fe39e1990fcc10bb97d6558ef8eb872f944d0799c2134b761

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6628ca483dc9c4b8e0e59114e387299ca1680d78da7e66cbadd1092cb3275cf4
MD5 5b60a97f3e014f991d56d282b66ec525
BLAKE2b-256 3727d5ba21fa9c9ffb565464448968045249a6d8ac416c7ca538c5804817c211

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1rc1-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.1rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1d3de8cf11d7580fa9106ce4557f7615bb0344eb17cc0096a8d6bb4d7c01b341
MD5 c43a9f8f69faf2e0fccc1c45f1adb747
BLAKE2b-256 78b76db438407f79590e8f9b3cb8be335702502342567dab38501be5d45ccbe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bada431bd33d5555d1c0f5de93e55bc0ab6ca7ef1f67232a2bacdece46a47271
MD5 bfa6f394a37dd6df9dd2094d9fa37612
BLAKE2b-256 05731d4d36b01773ef43fe9812184c5469f71b564a980bff526f830980c638da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ea9c7b1e9c41223a1f2e0a00048a2045f9bdcc4a0a265566e0568830bed150e0
MD5 5195b685232adf976a4fe22208f1390c
BLAKE2b-256 97ae5a1a406f9bef1c8452d5cfb16af636ed1d0eb664d052f4cd15b4726fc8b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c4f57a3121459afa5a6eaf4e7e11d12cf566ff19e665ee52e985c47dc76ef11
MD5 be1ce1697948c30d5c24aed9473d4e83
BLAKE2b-256 ac9893e637269bebdc21e8872cb977d9fd681dbaa15ed776262bab5df0fa6ce4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4d0db97fb5ddbe90a4e90167749716ede44835ad5c5e9914ae9692c4ce0cf9af
MD5 e82f851345680901f91f545ef4757114
BLAKE2b-256 f41d34aaf803c401a55cddb2cb6184f322f5eb621aae048bc8153c29475b95b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25c491e21076a4a94cd24f2f8e254fd3b11f8a4824af2cd8cb2fe9242795f93b
MD5 6ccf898ad2490ccdc987ce4e21e34068
BLAKE2b-256 77615ff4ade9421955f0a635527c58c7639144e85fc955517690b8ed87506287

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1rc1-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.1rc1-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.1rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1d6196678a5102c20697c69c82a3b42a58225f57df8cee4ad46d1b24e6103131
MD5 8e5e06ef5cbeabd88c72f79c448c64ce
BLAKE2b-256 f2687bd3c063d4a0cd970488b70388d5011f4e3bfa0c11cf507991c19d062b33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1803468fa2237e735a854a2f90e030436ead95cb86a93e4a22d54a503bf9055b
MD5 817d5fc4672faf1ba94fb9c273bbd7a4
BLAKE2b-256 7b8f540f5df067843e110db7a2f35032a5f0ad2d85e592445089c2aced5348ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01f791f29dde359c69ce99558eac8a397543932a930cc655fe72f3b51d2e892c
MD5 bf429b394802512e059c07fb3184c407
BLAKE2b-256 f1f57b9ab74a87daf6302ec77eb59269fff2b5a0ba628bb01e6312c904f11ae6

See more details on using hashes here.

Provenance

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