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.0rc12.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.0rc12-py3-none-any.whl (61.0 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

wrapt-2.2.0rc12-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.0rc12-cp314-cp314t-musllinux_1_2_riscv64.whl (192.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.2.0rc12-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.0rc12-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (209.7 kB view details)

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

wrapt-2.2.0rc12-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.0rc12-cp314-cp314t-macosx_11_0_arm64.whl (83.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

wrapt-2.2.0rc12-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.0rc12-cp314-cp314-musllinux_1_2_riscv64.whl (156.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.2.0rc12-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.0rc12-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.0rc12-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.0rc12-cp314-cp314-macosx_11_0_arm64.whl (81.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

wrapt-2.2.0rc12-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.0rc12-cp313-cp313t-musllinux_1_2_riscv64.whl (192.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wrapt-2.2.0rc12-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (194.7 kB view details)

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

wrapt-2.2.0rc12-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.0rc12-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.0rc12-cp313-cp313t-macosx_11_0_arm64.whl (83.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

wrapt-2.2.0rc12-cp313-cp313-win_arm64.whl (79.1 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

wrapt-2.2.0rc12-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.0rc12-cp313-cp313-musllinux_1_2_riscv64.whl (156.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.2.0rc12-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.0rc12-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.0rc12-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (166.8 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.2.0rc12-cp312-cp312-win_arm64.whl (79.1 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

wrapt-2.2.0rc12-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.0rc12-cp312-cp312-musllinux_1_2_riscv64.whl (158.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.2.0rc12-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.0rc12-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.0rc12-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.0rc12-cp312-cp312-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

wrapt-2.2.0rc12-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.0rc12-cp311-cp311-musllinux_1_2_riscv64.whl (152.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.2.0rc12-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.0rc12-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.0rc12-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (158.8 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

wrapt-2.2.0rc12-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.0rc12-cp310-cp310-musllinux_1_2_riscv64.whl (148.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.2.0rc12-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (148.9 kB view details)

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

wrapt-2.2.0rc12-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.0rc12-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (152.1 kB view details)

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

wrapt-2.2.0rc12-cp310-cp310-macosx_11_0_arm64.whl (81.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

wrapt-2.2.0rc12-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.0rc12-cp39-cp39-musllinux_1_2_riscv64.whl (147.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.2.0rc12-cp39-cp39-musllinux_1_2_aarch64.whl (153.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.2.0rc12-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.0rc12-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.0rc12-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.0rc12-cp39-cp39-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.2.0rc12-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.0rc12.tar.gz.

File metadata

  • Download URL: wrapt-2.2.0rc12.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.0rc12.tar.gz
Algorithm Hash digest
SHA256 f6f135abf4ce6861773897525d78f12b485957f9f57722167e456e2110072ca0
MD5 2dae0ab4ced7cf3e096db0737d3e88e9
BLAKE2b-256 32eb8598ea4dd70e35e54c7cb01eb0b591a6ba0944023347973aff0723e7db20

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-py3-none-any.whl
Algorithm Hash digest
SHA256 e8092b1d8427c92b75cc4ae324abd129bc95eee2600ad604cadec9610a17f770
MD5 f52a0d7b85e515e0144536b02c63883f
BLAKE2b-256 19eb125b72cd38666a1dd6f2f4e6db95f46b1001a9a022edcafe7f5e69421b85

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f2101c5958185ff5659446c7b7e8a4dae6936a118140fc334537c60dffd8deb2
MD5 61562a107959511edaaa918ac215d58c
BLAKE2b-256 b9bafbf7fe25cab138180a2f5699b1b426376f7cdcbaf082f208a54f9619700a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 15847df1b4211aec47d4ec73d0b40edf365fc74a8c97c3d8c9a98fd73efc1b17
MD5 5611cd0d9948b2175796276f648f6120
BLAKE2b-256 72289eddb669dfbed4bee8d326c33a709e70f855d8f2a4b120be48a0a4585299

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 15ef39372e23e015c141055d7de11f270fc80e6ca8ac750fd659bc91e2aa9d84
MD5 da7edcd47b7506cc4863293355dd7770
BLAKE2b-256 111b47ac3d5f5e72deedd22164bc12bfa7e88fa9f1f9965932a482ddb6ef0eed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cc5b007b861462e0fb0ba31516f66c45209c4544dbafe24e8bb1fb5bb5e5c0e
MD5 de71172174de127c52ba6e75eecf86ec
BLAKE2b-256 d61dd2c6473a78e7d61a1cb14a54262f30c4810bdda1a094933c98a9918da73d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 42a91bb0b59424b3587005ee7052a95af012d41ad90cb8003a74b5becac458fc
MD5 09903f5da224ec79ccbe505b544a1986
BLAKE2b-256 5de07f3746db5570a3b6e2149f32d9f5f0d3b566d7d40d2b8768929afebc543f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72834d34e35541a19ccb1b6b174777718fca3a860804c9385cfdd05ce7b6b279
MD5 25cef745c2b9b2ff19abab4ba7791d50
BLAKE2b-256 eb0b5c176dbba98763eb548c7daf1d4253ef39cfb4adf5b47dc53f777fea9456

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ab0a01416bf98248c2b05b9641458443926806b46dfcd0292d09d731141d161c
MD5 1cf8216f70f9088190c56fc16d63df3a
BLAKE2b-256 2953539f50064c05e6a8c00e403c6b8d29b1c56957ca191d191771cecdd6a518

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d664fa09950d3bf5950be07c568db79940d8ebb908cec7b44dbb03413600f30
MD5 b200e3036f00a967f2516ec8c22dd382
BLAKE2b-256 45b0eb777ba304178dbc3120e7f9e4c3ddb3add5d270290f2e3f5be6b440b162

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0rc12-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.0rc12-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.0rc12-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 05be77e1890eb20360f6709620196816422664d1d6d295d368ba0e5c30b11c19
MD5 c78aa42cbf5a61e251f6ccfa15a93303
BLAKE2b-256 981e643b52057328574a6bdb7eca6cc79d83dd1889f1a7155c22cfceaa58b923

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db5b0526d34a0e8d6d461061d80184bb02d1f53c21bcb6a0d882301287256c2c
MD5 fede7de9a5f39fa57a9468a684417be6
BLAKE2b-256 bb1ec0f50511b70147471582a52e66dc6c941cd606afef79421d8b75d5efd12f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e476ff337007e38cdfa046a142f10646809183c4f12d2c8bc35c0c26b7ebda9b
MD5 6fb2b4cbf6b722a7ee5aa72c1f80f435
BLAKE2b-256 e4cd9781eef11a9367b8578a4873e92da2af4db9b065fee036e407ceb01eb674

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 45b6b711e6146434bbc3e2d90cd16811d9f275eb5839575109d55efe49540c84
MD5 ba4583263fc84db321dd494597a15892
BLAKE2b-256 9b57d65d1a278a79754d8b3ca500daf06b15073dd0bc94ff49aff170e9cc1fcf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6a0623dfddd28889f6d94008db954a91a21afd11bfec7119ebcd28ca5eeb7cd3
MD5 651982d6b59795da6981c6d628d7c32c
BLAKE2b-256 1027359639362dce3b23bfcf4d5f94dc41fa96b8427034d6539215d17db5d7d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 93fcebfd1e6ba8302d3c37c519b89fc80c09fb5957f1abfefc2562a0d8935722
MD5 ea3520fb35fae84f9c06a01df2fece66
BLAKE2b-256 ae6c579f4de857ac9cf101662e78add49bad0beab1255a99ccde6cc346959ab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9634e4e349cd29b11aca80d24cf03928939bf8db23ae0dd39b9ca3f8dafb045f
MD5 10ead04cb5c3d274fb950540ac5a5ead
BLAKE2b-256 105e7a45ca2c3745d42e46de110d0e232f5a5ba433e38e73dd3a54bb46fd27af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 70e175b83e86ae8723a9ff8e077454536bdab6719c670cfd443aad81057ec04e
MD5 72b3f75fc3c3260f52f5263cf6e46ba8
BLAKE2b-256 3cc45e3a4a7bb2a18b9e1c7f493110841c2982ee737db576a5c29047212fa742

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b78774a546c9b4baaff6ed315ad3efc51b9511983bd19053577e06d422c77d09
MD5 c2b9d61f170b2ca3378444a6869bfd94
BLAKE2b-256 c99f5e24d36a765a2648a1e34af8bf8301ccc0b56d222f8d36eaf6744fe9b141

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1db91fef252327f79af724a4e4ce58f571cbd77f9feff93eb42f75107d4f491e
MD5 16a7383b46d9caa2711d0831bbe064a5
BLAKE2b-256 70a3b8acd610fc3ad5462848aedac6c856c50d7c80739fc5e93da46d94fcb100

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1e748918fb457e9b5517de8d775138cb84de4acb82fa4712a56ce817d6529d9
MD5 d51bc3afb9e82a33fed4bbd9e177530c
BLAKE2b-256 398782c7ad2c0142900ab226bd13827336872af5f2d90dca223cbc15958e35e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0rc12-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.0rc12-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.0rc12-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 cdaac55d3c77047dbcaf4936bb1ccf5d46643a487664041bdb7ee86fc830e2bb
MD5 e0c406a6e817ee622bf0b3c6a2d0da29
BLAKE2b-256 79cc65f321ccfa47792cc4625b899396c54b16ab2f33e406eedb78f78ab69fe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fee146b9cdcc13ccd68fb3320036d8bf27745d1bb2d3d179db9f58fd958cdd5d
MD5 e88fc650213a8f610fe0705f1206dcac
BLAKE2b-256 724c9120e518f15da70ff563e306b72f30ab4dba3c4b5ad56138cb19aaaf2a17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 10631af676ffb322c60de87d4a2ca015c1adebadf2efe2e97105ab82c5f6285f
MD5 ed50e1b526613b2ef68147249ab665dc
BLAKE2b-256 1be1c80d25264a6fbc0defa3cd356312c0efa754203c66940e4b47208f8aa06a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 dfc18aab11db5da1895048ef85c14c0a1005a5e9ce65eed3181b21976b26f935
MD5 8da64e2b013460442bd392f527e79dc5
BLAKE2b-256 3aad5cd08f1c05392c6cbeece74f1c34ff0688bb046fc864c859b3e51a986849

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 08302d2745aa65377319118616370b7e940ccdcced7f3a9d9c8c1a491279bb77
MD5 ca409f546beb7e20bb75ca412d8abc2d
BLAKE2b-256 c1816df8a8ee88eda1b80a39995d2805402aab91d4949c8f0b1c756654839b42

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 fe36292e0453f884c00ea679bcda715017fa6d83a02dc6b45a00a30f76ce27e6
MD5 fdc8d9301acca3222572b8753b94cdda
BLAKE2b-256 0e77279c58c00b14eaf06da71762f98edd7c66a5bb70104a8127d4f7d91ef6f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dedd12d928fa8bbeab2e700a01b3d781734b1b9cab403a0423f6a9c1a09bc99b
MD5 36ef537fb9580ebe213f47228ade17ce
BLAKE2b-256 6ac2eddc006acbd2ebd7c49db080cb73e2fff1f1e2bf37488216ba164e387fb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5874715c1bd56be1f67c03025df067775d2ae934a66b797b082542d2a7246398
MD5 774221c66a9233471d4c453e3918cd40
BLAKE2b-256 060833283a6449d9f755dffcd3579a7863c3b37f1bbfbc92f9202084a4339239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 950811dbe1bb86d721da183def0639c99fd450fcc34d727de8808cb0c0a940ad
MD5 76fd2f0085c8704eb22576b5793fb834
BLAKE2b-256 11973cb0e875b204da9951cb97f26060f9666a654fe1d3b96c8d60a608135ffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 685c16a47ddcb0fa3a4935b44d4f51cd352f5840b78c80e0be098bbe8730950c
MD5 518d51f633fe7ceb7604117f9f25f398
BLAKE2b-256 e3fa7783e2ad47ab29e3e4fb9177b9b442e3ce5ae50863bc695275e3a3bdfceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b54ee8c12334f0b485da2adb50716790cd06e21fa1b64aa9daa2cadb572a5eb3
MD5 78d925b3df7d36fb866e92e4eda2ff09
BLAKE2b-256 dc2440e91d02fd2d19a8899b485b2fb371d8efeafd065ad32bae7032c69f43f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0rc12-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.0rc12-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.0rc12-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 69b128c8c40510d2fdc2cf6a875e5dd03c1d0e6feaf55e42e509e328cf551706
MD5 d08e74df7f2ee4bb38b413a9cf5c4ce4
BLAKE2b-256 a6d6735ba6ad2bd2fe4a44e0351659e8c49962a7c34f613ec3924c3ed53d86f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c339b472f9933e7f740d8f2b8d804b691fe3d7b4f0abaf8d59358acf53462c36
MD5 ea9da5c240063628f46cb0f545f5075d
BLAKE2b-256 afb6512628b0fd0977d84d1ff0f9ddc36779a705cc1cf9ab8fa62c67da94a285

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 021dc0ab816df4fcfe367dda3e32b36cfd4f2ee55d6befc7fa254afeb2e09edf
MD5 2779f50ef0440c876aebf2ce2fbcccb8
BLAKE2b-256 8eb74c8e276b5c7b18fdf4ffb087e39dc28436f3da45585077ae600728385e23

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1c2c179145725ae0c674a60f713f82c399d23b13a5a84ceac677be5fd9f1852a
MD5 d8718b1fc573bc94e3926aaa77a81fc6
BLAKE2b-256 218e382efbeb7720cd3ff7e2f00fa0c09c5048c9a2b0c372099bce6b0ca2c0a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 af6f6e9fcb9c0f5b9f04fc56d48ba62d87d7599afdbb613dc4a37549edaa31f0
MD5 e298693bea0dd43cf802fcb9340592dd
BLAKE2b-256 62dd77a25e8af3c0a3c34acff01d29caad7c08474ff28e2647daa7b1c969c7cb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b1a6435ceb9ab368916e94c471270623335c3ee81bcd6b96daa4fcf148b1ece8
MD5 3e72ab7bb447e43228a5f1fe00be0b45
BLAKE2b-256 d2c149251e018679d5f58abd0b6eb0cda1ab8ebaa642e555510f183e049def8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31cb2b6d4ee4cc6f1f8bd1d09a41b58e79f43d9e045e1ea4397750bc0e5fd2cd
MD5 b5846ba297f271b60ad9139d3a8a051a
BLAKE2b-256 4d6c81ca6f31487b4cb5a558f20d0ca48ad8c62d29049232f053c7d7a3cc0f7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 701666b66268af1c97041791f7b530ffc992e6a90799062a91720b14548b7651
MD5 8f059ee19c8fee81a32212f935419560
BLAKE2b-256 5dac95745cef34acc366af5457b0bafd0eedf1f059df791eb84ae91c29cc3a58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4920657b3f58fde9b3205f36e224646a593cde46b7ea6c6d547a10c65721599b
MD5 daa5ad7fd6610a1f534ab65ef443880a
BLAKE2b-256 eb3f09857a8547ed43f97663d50bc25c9c262302e24b7aa27dd308d64e53d48a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f788d30b291e0c0f34dde650e54e549e74dd10a61a19ab2fb4b068d0871ec21e
MD5 7a70ff83093d67711c18c712770ac80b
BLAKE2b-256 457a6c7f658c54827771ca2ac30a7fd899a26deebd3ffa4e2628ca1af7249226

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a88ea4b46310748d725165e0a139346c4c72bcc86f02b29b7ec54e69375d4c96
MD5 c006f1144efe0d7d48ba5d65b203cd62
BLAKE2b-256 d61bdd9014c4a8d645a6d331d8115a0794a67699cb532f7cc52f239b9f699855

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0rc12-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.0rc12-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.0rc12-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 71d194e7834a5991276593d298cd155f7d7dd65330a37a8c38f11afae82724d9
MD5 2a9609c9337897fab8dad9ceb5779dbf
BLAKE2b-256 3e99511f1f34fea2a71a9c7fcf385ecd82828a6eed6979f891939a9e03f9cffd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e5a6b7f7383dc9a0525a3d66e9b62cda8c77dbf1b9be5eec7f0fe6ce298217c
MD5 891b2cd301a073e7d4c079faaba4693f
BLAKE2b-256 e0e01447a9645ab4b76b3f2187df9773c76bcbe1fec98df1e3faf29b2d958dfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4c1c0a0cbf0a95ca88481a588350d94ab102f42afd972c6d78ca14426a7eeaac
MD5 c909d9292d365fb9d33c9bf406275fc6
BLAKE2b-256 da62e7b1591251e206cadf82c5d1600a395c6dc272c6944135cdc32457465562

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4ded572d04d3af1adff5a6e16dbc6ffdf2de913b0ac33aa8429a2769c7efcca6
MD5 23e2a4e93c440acb4a822375c7f46b87
BLAKE2b-256 0d894dd80e7d1568a974a182a5e09268302b8378f2293e51638a71f5e8c7cf9e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ae82c547bbc8510f540f4d3f77004afcd400e8c41fc2204db732ba039b40560f
MD5 e36122bf41c23c7e563dd9cd7984ac2d
BLAKE2b-256 b7a2640f6f6a8c50c1e82b87ca0108c50d31a8369d12ee01c63febc054a1ac77

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fe0115edaafc87b4f5f53347692b6553ea5c63192c1af951981ab1a1ad6b78b3
MD5 a60953e1362d308511bc10d7b9f075b9
BLAKE2b-256 152fd582fec0f7f309ad6522a93866482862afd516de35678d9d4636a6b9ceb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4954c8de4a357cb4b283053bea9ef8a6cde4c06ed9cbc1404e240ca99a2144c4
MD5 e7f9b984c888f342dec5e48ab10b12df
BLAKE2b-256 af3393442fc54b8088864af192cf14118d62193ff1c929505d773a2d7cc952b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1fefd3ef624d86e5f8427ecaeaea7eec28d4893e2a528267b3a5f5a33246c03a
MD5 5ffd32df0a353330fa1388b0c7cd6baa
BLAKE2b-256 9790581a0d4d77f42d58882b6578f6c4fb93d40c47ea5fee764585d0cd41a0eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed2e39eaf0dd949301e28e4d4a8725282065a6f29fff2ec2e82b36d306113bc6
MD5 5da694e126b281992d9ea1288d2b16ec
BLAKE2b-256 2a27543b24788658550f7ae092a284f3951c58b5762df5d8252808d774dd0401

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b9c4605a4a01e78e30537bd16d4bd4f675753ce90569cafed37c9810392801b5
MD5 be81725744258237e12d1595c8c28e44
BLAKE2b-256 bfbc699ea73638f2e0f09c78ecc685057f7feed8dbae37bbd3f66541bc28d972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6026e7a33ef18aba9117ae96182406cc17f8ccee2b8e4a5687408f93e3cd7ff0
MD5 b2b9c3e371bff8a8cbf74d6fe736829a
BLAKE2b-256 bdae6ebc6893276b0eac923010ab8b297b5f139af770bebf3edaaebbb551af62

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0rc12-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.0rc12-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.0rc12-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0a98a0df3a6b386b0362313780e24e0906b630d92449b3dae62290030d246c27
MD5 f3e18da3e634c1145679efc0a5c61a02
BLAKE2b-256 6168e31c323e8bea27722eb4336360804007a24e3f338db74ceaf935b861d443

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 340c2598601d32ff38281da2597918bc90c8a87860a69831bf80b1b24af37c31
MD5 a3ac64aff8d468a7a6fae716d0b59424
BLAKE2b-256 64e960347efe8a56f0a96db3fa873c38def7ac568dde7333f951a5e1a341bbf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dbaa4ffed39fd33654032b26a5230aa14ebc34946fcbf988a23c84b2a9289ff0
MD5 928a91bbbd72afcba826bb24c2b6dde0
BLAKE2b-256 bddf96f0da193d142838c0f0ae4028d7c387e723a7019355e2f27459cab50ecb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ccb69b58f134a89dce88746172f9aa0873c36b7e1aafb6b3d44aaa8aa6b4d405
MD5 7cca855a3d24e343d880384db1efa7af
BLAKE2b-256 44609c21de150997e5298baf521e4ad2d409f1ec9bb32cbaf420b0348ebeb0eb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b0bbae02fc7a18f9d87710f3597c182fb29473ceb6e2bbdd2a618220ef507c8f
MD5 b2eb05954bc607002c0eeef8c64b6b41
BLAKE2b-256 4bb67299bcf6246f155bbf92d9a31cf7e77fa750a339df3d269ec9349b595a45

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f6d8a9f7b7db71a5c82f436aa1c9dbf7181475ed89fd64d21b2df5741882e56e
MD5 10de60393b4db0865389631047e531d2
BLAKE2b-256 7697b7e163efd2223820f0f783d51eb43d91248d224460ea8560376a031c5c61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3a4384397e0124828345b5c12880faf7c16d494407190920305defecbc617dd
MD5 1bb7ccbdd6ddcdd74200e4ba2a48f810
BLAKE2b-256 1ef0fe176391349908d44db5f5e7f51304f09a0f52587ed4e0cd5b37dd04139c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bfc9993de656d526c945297af7ccafd1007613d3db8cc7a404838d10878a9533
MD5 1a18928fe175337fd75e06be6bd5b7b9
BLAKE2b-256 61655a607e1a522c9180a03d23916bf2027624d9d8c869a9b2d6d1442f522fcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8622a50971c235d82d5acde83375f7813442ab522d9c4d7dfe80047b9f57e85
MD5 0792f4b2c0485f49dd9f32d53245f4ec
BLAKE2b-256 e6f3bb2a11515b135400331b9c170a911dae51904c2f01d4b3846e53044e43b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4a2564dcb3c419f24268711cd5570b7451c7b14c6090dc386543f32cfea48cda
MD5 18b3d83e1e968d2d1f4e2b36084ef201
BLAKE2b-256 a5fc246eb2fe595380e2e3c0eb46460e29ed0b8087166eebcee3a36ab7cac4a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1e434425159094c852d8c5d9b90b692f508c7c6bb1c71e658fdb8e22d65a92f
MD5 1daf08af1bf95b48068b3db63e07470e
BLAKE2b-256 96932d013d01cd2cb6ac166f6579d524454434dfa1cc9f2c7582a8ad38973afd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0rc12-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.0rc12-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.0rc12-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4ed21d03e24c705843506c339b7888b37bda1393632e4d0446936399720041ef
MD5 b34ada0449ee4dc5f11ccd40723c886e
BLAKE2b-256 b7bce59a3e08715e40b51d791853e0ead8a10ef3f756e1833d2537f486184385

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 caca9ecb15cf9e6afe42ac95acc5bb0b20aa99095b1005549de3d25cf20ffab3
MD5 4767519983d4519e6619321296e65af5
BLAKE2b-256 0ff84b5e1c38e84030c7dde4b3009512ec6b23a1be4cad12e149c699a8f58fbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed5b9078b6cf712f80c321d4eaa73d93483b429378eab909335bd388ffd62bc9
MD5 f0c5612bba2323fb87e8a4ef0bc845ff
BLAKE2b-256 36277ddaa41ad8807416936aba3690de9bcc56193ab6b3082a3f3290a8dee9e5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 43ab61737d401f5d3e34ea399e6d6d149202099e3aa4da9ad2f5b31a633fecfc
MD5 19d6ab2285559fbeeebebcca63fbe37c
BLAKE2b-256 b06001258756b87be801bd255003b1095a30e71784a835dbf634cb434fba2335

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fa30a1e8c39b36b2425875c40609aad181ceaddaeda779e97166e51b23fde31a
MD5 3150eb479657549ed81c7d623ab21414
BLAKE2b-256 6e1e39171f74eb7da38efa1754e51a1b1e8b52b83ecd3a9af01d766bd574937d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 151c362c57470f38edbd8734204b13379d87284429de3ed0957b5260bc57feda
MD5 f540af48850d3b4fadecb6d35dbc7088
BLAKE2b-256 79793922c240897376b7aba9654b18f8027636784b2754847517379c20e3e07f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfe7fea437e1fd0f4723a3901e42cade787d1387d62808577fef3bb02625c9d6
MD5 a44739148f0117e39f874d08e64469ee
BLAKE2b-256 d2efbc24c7d70760657ac7d41642929f131e907e98a287a2ca08712326e9f6ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 32f3d156ec218458e5d4e436e1dd29f14a7b55e64c755ed9b1a96b1fad300d08
MD5 17485a42592b4b50b6a6c6f52dd1e85d
BLAKE2b-256 a951b772db5e0757aeba069f2a0c465dd9c48d1c551f9f82c45190c7e041189f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8144d66b0ee7c5ad942de1553d07cc13fd2807c871257cc0403e49e338af5e83
MD5 d6a251eccfad8ea96ab0aa394b785933
BLAKE2b-256 8e4d145bbd7cb9f10431d073f9549d3e12c059907f736c0684ce7965a41ecf36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9bcbe360dfbaf8fc64cf4719219da769c3f3665c471b064f341348964254e89c
MD5 24a2fb4932df5298df3355c81d3278c0
BLAKE2b-256 987f2a3227cbffb8f0e13ab6e6a55841e7db074b6baa268f1faac6e677c1f61b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8973cac6ca96758c9fbaf22621ce3ab64a941a354dbec64d6f7b0a2442c18bcc
MD5 64ee91a9c1032db9f514e11e2d25a772
BLAKE2b-256 805b8ab02b87cdd27774ec54f6b4d1311ce2d59d3bb377036511593f32b8807f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0rc12-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.0rc12-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.0rc12-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8ec817f0a03c537b0c87b3058e31ba878fb382e68a6dd1187a353eacd545e2ec
MD5 09b2320a7a4d4c49bfb240e928371f35
BLAKE2b-256 22d4415796f3b1e715d806adfde64d689cc2e4a41f8ef0256aa6bf6d2bdf23c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 467f59a9d5629dccbab76fc4acf068f04d632c2a6ac5b89abce4521c4ad51ed7
MD5 2097d3bf4e8029f0d3547458261eb9da
BLAKE2b-256 aca4a7603f47c7d8717349baefc0d2ad4f91f4bf43d4a3853e2b6490a1522e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97fb81725033fc091d872d6adb2648d02d20f05590802a438aee6f618294e629
MD5 48ec3283de0b5cbeb67307c459b1429a
BLAKE2b-256 7d1831d437359477eb0235e1f3bacb0ff96dc05a1b94dbf6de62b0f47d1305e4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 ca0b7656e7650da7255fc55094624a6af05d9a711748294347b49d52f76505f0
MD5 d9ffb8415ef25557244bb553e35904bd
BLAKE2b-256 93d4aa99fc734e7a4cce260bae7243b6f61c919bb5b86c631a6b6f401fbf8130

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d368392efa557a3c75a041ffad491b0e763eac3ec527912bfee701f8534218ba
MD5 37bf1bbb2251d82032bbd1bc9a3f7d15
BLAKE2b-256 b172bbac704da8f1a29332e8d1c27185c90ce3522e741f195f1c8446d68a6ec0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0rc12-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.0rc12-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d564cb3d768cf2044252a8d80ab7100014c92057a71a2c36558f3f41ae8125b0
MD5 ce54751b0e1e94699e75c4878c74ab84
BLAKE2b-256 2a83ed82f9828d3c47b287dad457b9f270bdbf31cebbe554a051f2345d53b1da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f94216471bc36afe020f9e843ecc8cd6002c007c84b6008cd514322b1e53b40
MD5 fed481f1c5e4b55a84623d1b357f949c
BLAKE2b-256 55dff8e7e290d0bec4ae684593238bd45e29fdb82184824258e4ec42d1ec32b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8285085bbe0fdb69888b9fcb7ce582a5c8799856c64d48b03253de5c9afe37eb
MD5 9e3f91d109de6b67aee4b3486f535185
BLAKE2b-256 8f79e288bd6fd9d563b164fe07cb41c4665b25097f240af884d10ca7c7ed6d41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c2eac0bc086331af021ea332952f3c02f737fd447a9ffcecf306b42d7b5945a
MD5 507c5e5c0e8e47252582a8506bea1630
BLAKE2b-256 8f8a20421625d2cfd9366ecf7ed3c1c5d4b85429b86814757e0150678302420b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3f56911dc395611b23fbc151a905a19bfa34ea31a8958f050faa98ddba6322cc
MD5 e5c1e843948359ad87bb73200bed93a2
BLAKE2b-256 e62f6e53decfadb69aa0aaf1419578e6f7900717b7327b6c38722ee1c5bcd8bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a950a228422de8e854c9d14aa7f1afd4dbea3afef8532f9f4eaeaf5d61e48332
MD5 519637726befd2a8c133fa970b13de75
BLAKE2b-256 51b5671e4e2490be4479174a2eaa1e2758ce5e770c8cc0ddec6d8d09c0fba6e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0rc12-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.0rc12-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.0rc12-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5fba781d4f55f45ec9e8ebb0b696e6cc73e5fb422e56cfcd0c4f7370827db67a
MD5 7c986e88b1a86bc8f73e8fa69af60b11
BLAKE2b-256 7875c726b45feebf0242f72d34f0b20879971f6e19dd95da48f78b2eb64f2020

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a6a60ab2c491b531afebd66e73ce66fe623c9a8477691d00821a054ba649c02
MD5 4cf164ead085401e3a8986373e3f09f5
BLAKE2b-256 27dc57580895e8da34e08eb4fb354a59aeed2b4be370274e1ddaf204a081d74f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0rc12-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 952eeddf62c3190b630ddb0cae3f9fb63a78e2137e421c6dd9c6629f5f8a72a4
MD5 58ef0494e7129465ac21ebc972c13abd
BLAKE2b-256 6d2970ed5abd0632e610ec4e516e3aad7868f97a5413cf506ef6edc82b372cf4

See more details on using hashes here.

Provenance

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