Skip to main content

Module for decorators, wrappers and monkey patching.

Project description

PyPI Documentation

A Python module for decorators, wrappers and monkey patching.

Overview

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

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

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

Key Features

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

  • Transparent object proxies for advanced wrapping scenarios

  • Monkey patching utilities for safe runtime modifications

  • C extension for optimal performance with Python fallback

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

  • Thread-safe decorator implementations

Installation

Install from PyPI using pip:

pip install wrapt

Supported Python Versions

  • Python 3.9+

  • CPython and PyPy implementations

Documentation

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

Quick Start

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

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

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

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

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

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

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

import wrapt

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

@pass_through
def function():
    pass

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

import wrapt

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

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

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

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

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

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

The above rules can be summarised with the following example.

import inspect

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

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

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

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

Uploaded Python 3

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2.tar.gz
Algorithm Hash digest
SHA256 1fdc5475357ab9bb7131f2d70f72f55a1a7fb4ecf450b2868a61440e9ca2e9d1
MD5 07f4f78d815d5ed23600a04d85ed2208
BLAKE2b-256 7bd1370cd471ee21bfd077a3c32e25c60366e0dc5c2df475eab98dbfa5118b3b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-py3-none-any.whl
Algorithm Hash digest
SHA256 9b477192c1d0aaaf0956cbe6a377e9d62af87401a70f71d392863be70b1ff834
MD5 d9c92630be464d8cdc1e788458f57359
BLAKE2b-256 db0b31d10370b50f53c884bd089e3566c40968c883feeb32b2fcee871d52be69

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 35f88fc2b65fa74e943d733ce2cbb224072faed4666221a87582b970bd5edbf4
MD5 767c703f52ccd5042744a17e9e1ab716
BLAKE2b-256 215bf8f615c2f036916d48361b65caa261222ebf401599d5f4873065dcf363b0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f7feff3c69682d7bc7eef72048a0c560616c24048874ec4fd3673e25e0b97462
MD5 06bdf2da3678f49019edf42fa6b46109
BLAKE2b-256 8a7d5af1eee295e042d22902686b1ce1f605584056235744eea489a1c676f752

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f7dd630780d6c7dd2d97bb3c2e2a54e282b5e77fde43acf817a89500faa38ef9
MD5 9e13c25bd022cc37a56bad2e1fbe6947
BLAKE2b-256 4d3ab3f0c6e28116670f6dbcbfd1b63e462b2a4535d622a00d19a20df5385f42

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a1e7211ed6ccc7dd0adcd389c1bb508c0dd2ce881ad3062224dda158a68f527
MD5 bea48ae4918f4e1f153121db4e1323af
BLAKE2b-256 95bb45b6d7d83a19170ab18e1fb8a96b9d2044d6fda3d2e3ab8ded96d88d1e66

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0e4308e6784b280452dccfb6c3cee5d3b244496235c55c5405dc030923ba414a
MD5 2ebc77df4bd871f1bdbbcbef1b7f649d
BLAKE2b-256 d8b0ee7663f640cb3d3c8e673038d527c56bb03155191dd3c6c564a2b3427f7d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a47effb7489c3348839e6b4918893b9222fb70f4af7dc454be7a6a3f4c61e579
MD5 7a8cf4eaa97244d80c092e0c3f29c364
BLAKE2b-256 43f2051422f0a99b1114adf4f220a4d905a501633ea2571a4579ebdaeba05dc9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6027de92ee0802a1045715efe243ef4cdf5e83b3f29d9339bf4133e090a4a90b
MD5 191dc6c50c7177a5054776e48dee8fd7
BLAKE2b-256 4770aab9cf12134b8039f730c15880f8587a4982f3259cc64706ca8bce2c4a2e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91a719739e842051f2deb7d754a125a5a1f17b6fb11a1c942292d47a230cfb23
MD5 a519b6831700c52d30c954922f539a28
BLAKE2b-256 a8a20d1baa2d01e5eb5ce13408fdda2d2bcfb3124bb92b92b87f69316a614a68

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 27622f51bb39261193c4d20dab67827c993e897430215adc54776e882fb09081
MD5 5a1ded37f736405a6fdc0b07d5695199
BLAKE2b-256 53a1a2f06f90c0ee04d9e9c4222836a1997e547138fb42f8345f861b4561238c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 008b1c296c8459616bff5b5f2e243493513897b89d33d2e37e2e226dc7f2b8d2
MD5 f8b79fd672dc60263cb7632c63004ad3
BLAKE2b-256 02b55f22a60df1dce28d735dd3d3a0bd03c9a66d0db0fd796555952f03db40f8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 277d795ec7e8db68e9003d9d0322dce883014773a5c523ea860c3f4adf939d35
MD5 7b44f31a9a3cd291c33780cca161a036
BLAKE2b-256 8ae9ea89ea9b6ac3364c1b68a31ea6b14ccf009355a91f56a943aa730b5d53c8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2a3c46ab6cfc0c71dbecaa97d2a53b61596a63d846e1c2d049a2171ed98818a2
MD5 0017864d60aa33fee28f04fc8ca6fe1e
BLAKE2b-256 da96749c961fb33f294a75d09461fdbc53923caf951372fb4f3207eac2992353

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8117375ad079da41a259deaa0d07a9664f6e8b6f25b29be5ced9ada20a961d88
MD5 412f5e2de76eb79a7664026d5b102c87
BLAKE2b-256 09942bc3841e399dbabc389fca197510b20a9ee0c6c93c53d699a62592630654

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3112a5bd8fad521637d15503a2e4445a44b2b725fc292d3446c622bbf333255f
MD5 c80d1c0ec4037479f41cda8d91a120b7
BLAKE2b-256 9869a12b5645a6d3702c8fc690354092be086855d6759bc49e3714af954d9b0b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a754ca8bc82f408ca48209a4c49def3e73d8c45bab346be5ce7583d0c3870308
MD5 a392127380b8802a7b2807bbaae67c2a
BLAKE2b-256 cfb8cde4b0b0e708b9fc9d4f864333c59253b6b1e84bb80f8a03ee7d065b50b7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3c9fe3cd6c35ea9b446586c5a955e3778b859eb414abbadf0820cf9b7ac0c69e
MD5 4c322d78e6d41e6c7d9b88488029e6a1
BLAKE2b-256 e657d87205122d6e2c969b86047333a512325e104137d1fafd0b45a9cb0a168e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20622c6d8bab477f56bf2f7203119906d0fb37ef0b91d8128a9d7be2b62c18e0
MD5 a3579bb339459fe439ccce8a5ff65081
BLAKE2b-256 d7fcdd1db1fb05a7355f5a019b5a7a7838f43d9172ba4f68acb386e37ce7250f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c61ad736febb7da2c29294bf3430da1657aa7f9dec1e832e906520382267beff
MD5 44c3c58613385c14612723698d0e61a6
BLAKE2b-256 4bf27631042e0f6d52563b75dc5abd400d1fc4d0f934e9a5026f6c4b38f7dfe8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b33d2a48bbe38c0a3645dd8a94a8d57476de5333c0a923147e366f757d08b777
MD5 c24df687e4cdf0301506f7d061e175d8
BLAKE2b-256 555070bdb60298ae60f19debe84269fb97381f32537b75ca6dd3118f9c48e8ba

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 70e2dbb96176fdf7726cd105930da2a9ceef835b7d4f938133d1cc78384f0277
MD5 c9eceea2561b84de2d979af9ca7196f3
BLAKE2b-256 51376b8c84242e01e02903314ceb9b13be501afb266d75681ddd2b20d8494b6b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d029368d9eef6b6319599996b3f1cec7e954e4b9b7e41db2aeae41e9a18cfb02
MD5 272ead96981e509c4359e3417ea2861e
BLAKE2b-256 5d2e4bf6483f09f10cb61c767f8d13770b9cca22f58b9b1fc721c91f77a0d6cf

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c2d2b9e1935fcdb95fabca0fc6dae2afa956a9e78853e77f55ce33c3724126c2
MD5 9f7b0f4d03d1f23b9d06244f9b6c2a3f
BLAKE2b-256 42fa3dad956730f5a0a8f9e1bc3cd6605504ba78bb94dca210b3efa5ad36324b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 a7ff861497846dcdb22549a1afcf593fba20c62273555f86cfe0083cf8dd7583
MD5 6aa5e64b5e8d0ccccccf04228cc6dd35
BLAKE2b-256 0336c3bf6a4876fe9c9fad1b5fe031a514651537c2aa7760e975867e18e83ce4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 920899e38a9edf38a778d14af2a8acd5476ed3b91878a1e12766f32944c6f73d
MD5 1a740041464971b61f056cd592b6d815
BLAKE2b-256 bf27b6a58c6eaf9cf9ab8aa2082d16961e7eeebe7c1e4c3897fcebe8a321081a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 3931aeab99382e388573bc774ee7da46f01601cddf96d82d992c07854c741970
MD5 be395797cb53bdc34720dc1f396c50b5
BLAKE2b-256 8632ea620316f4ecf3198b0f7a7e03ea89ceeab48888986a818d296cfe9cd6ea

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d15c3cb205758d6fda3465041d47f94e17e660ed94288e242a19e4f7f83c88ae
MD5 f2700a8fbf8771a88b898a2d8a8d2f00
BLAKE2b-256 4676eadeb5928d548f827e78617f27ee531d0cd3f623fb2a7ac0f8171cfd16ee

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8a638bafd782f1022c70f4abf1bbe81850379c4e793e88b3d71026bf47043b8c
MD5 7840669984637069c4e1d5aba9939bd5
BLAKE2b-256 43b0061bf4cf9c3aa431b7fab4f6ec11683db5cb2a90e254f5ef71056cab7db4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3151b57bd2834364cbe9dd60b41949e9695fd582b949903619ef8637d14baf9a
MD5 08ac72f875625dc8a1d211b5d80bf9c0
BLAKE2b-256 8228afeaf4e958646d8be0af9b81e4349747405ce021362bb8406e4ca4192d36

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d7d36027d85e87b80b1525f49c2ea945d946f7f92735d273313bdc86a8d0190e
MD5 4ef7e23afdab99892983e8ab2c494e8c
BLAKE2b-256 b0a1149556616e0dc6b57bd740c8a2b866e1c5f5b8f91b8a4919a0f524ebc723

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b72686e310c8465caabb0d17a1df618b5c38281e888a58bfe395cc02de743aa
MD5 9540dc87223ab92475b21f8d4ad5bffe
BLAKE2b-256 5000b8e2649b2a1da6bf9cb6478e22c5a9196fc458f3569e32134f1315cc7572

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c079e72c727cebf21f2df8a847b3486d21833edd18941ce14a13bbf36d6f8970
MD5 aafe97e2ea83409df2c1cc362cb74e32
BLAKE2b-256 2173e58138fd45a5c16b9efe0f1c989efa7024d32062451426d76c2f8333b70f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc4d69d2bb09068bbabe98f40e8535a0d632cc40504e94fafb9837e332f12150
MD5 1e2a1b3367d54158ab7465996c143be6
BLAKE2b-256 db4236999e913db9c3e26019e48dad0a32261e6afe6e5496a88687679e0f8ad4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 32d8c5e2fe0941ca5bba1d1daf312d75d2c693d071c5b8c54f0cc674b22dcc45
MD5 0949aeae534704bbeae904118ff64989
BLAKE2b-256 c24202a459c2d8629cca66f4e092b4da48eec60fef7e0203a3b0b9930ccb81a3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ee8464a1ac8c27695fb79500f23549c5fc8dc7f3cec48ffaad99a6972dac31cf
MD5 9d8645beea347edb1cc14eb2923f369e
BLAKE2b-256 72d7142a0166da98a2cc1c4bb890214228a1baf91b21760e86f22124707fdaec

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 172ce1c5c97241fe0ea8a73bc2d23b5508986301cf71623b7c87a73510339e33
MD5 9e84c1a81ed653b0159d1ff5e3d441ae
BLAKE2b-256 b0ab6f860a0ce2411e805d373f3ae501739dc50a462239c08e27dbeded7a684c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dc742c92a464ab3e24f7ee1e472861c51a3c3e5e038f08e9a7720b24f9737525
MD5 a4761ebe2e4f4a2982c20d6a5443b131
BLAKE2b-256 42c121f763de3be84b33a058999ada940f0724ff6d10078df728745c354992ea

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62da2c71924d7772fe8a924f84be82731e7f1546169dc278be18cf1a2cf726f1
MD5 da19fb545cd4608787483d8a33447e59
BLAKE2b-256 9b0d1be4469ec4b302de6636e9c7aa2f7d932a7b85a0e89b0ae4f8c103496fe5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7dce02acb173a60cea89aa143e5fcc38b74d6de33366daa9484246741e9cc6f5
MD5 8d091fa8dea98f5b83effc11e531e268
BLAKE2b-256 2e05490933784de4dbfc792c89a5ac5a15ec557f46fc1516fc0b25e0b8258ea9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9e1e8dea44583f017608c4a07fbc13398d19deb45bf07363100e17802c2fef5
MD5 a04d821b6aec66851cb9e150eea9f8a4
BLAKE2b-256 c00f0c428cfafdb1f507ae34d5f8c741260be4b8eecf0c44bf3bdb1ad1beb38b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7d08e69852a0415aa7d938f208b069e3f9bcf214365c718561bf80ec9db7792a
MD5 bf23692e7e001a2441d553033a03fb48
BLAKE2b-256 83c9532c66185dfed70ff8c080489674de44d93e3c0027a18a3b55b26b9e9bab

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b240a3e51207aafd3da82479b2916cdc0bf16dc855d47b9cac9ab66ce27ac394
MD5 f43d0b8e96fe9408237c50e69d368153
BLAKE2b-256 8e6b96f238949b228b086a3b21777b3b73a94113480d39f8c8c7a02333c88b45

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fb587f862a866a0eb3f57c7b302dbdcaf27148022c9442434e283db3931bbc88
MD5 f86026ef6bebbb7a57ade45d4ed7c92e
BLAKE2b-256 805f615db0b23e0e7a6adc206e2e87838d049718f7bad558a30ecd1ebc98ee8b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6793d176dd48e6131c4468a31f4b28beba674b22213b5f2807d61890c95dc131
MD5 624ad3d3675ad461b6fe91003b51b3f6
BLAKE2b-256 67fa92b1d74005d8c22a80820d0f8eae0df81fc792beb7aef4fed4c4b1754c41

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 49d51c281ced9a2f185474e24fb9c73a36339a22db2fd9813a5617758a184c05
MD5 7ce47abff90c963371f95393a26cc9d4
BLAKE2b-256 682fdd1cf107c37f7201e7cc23792777978c9f5de7f15ed235d94c4a49879657

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ccfd86c2abc39e1629c5f1423fade1c6a930442872b0edd65015465413e1e235
MD5 d85009b1b7d7c9be402926daee01c5e4
BLAKE2b-256 70c6f1fd8ecb62fd5661a45514fab46d24fbed5afc25dd11368b45c928c811da

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6034972419dfc7e73dc8d901dd47b6ae99a33b270c1c3736f59927c78d4c8e2f
MD5 aa463a7fd688c2468afcbf8856e8cb55
BLAKE2b-256 f7a778b0a679569a93bb4b933e46a8ff03d3acdb9548e0ccc1fa0251920726f7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ef50260aeb9585d6ce4d4d5f9fdb33d3933f5768feeb82e31971d97823a393aa
MD5 1ee721a4e7d1a0f46f06017ca08fdf48
BLAKE2b-256 d17104af17fcaded6c659fe00153bcc4de0c93cadd36c9986b4438b08c9162ed

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e6595f3a161b056750f558ba02749fa0c3c3cfb410c9cc0cce756232a38f388
MD5 3b368f93e9548996a927ce24011c5fa8
BLAKE2b-256 d81f97c7a3e0cd0df429ab75d6cabdfb2a76fa992e0614f15517ebb4a6fbaa73

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a70051c361b763a8389b89c2cbd1c5f555924ed01e5a113bb0554ac9cc7377e9
MD5 4b03c9a840b1062d8f3530dbb2b2b81c
BLAKE2b-256 b8b0e1ed933e871d9a76b41c8112bb5bbefc035aab1bccce50bd855d52fed78a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f65a06464eb6f932daf82c275e76b6e9406fe1025cdc31ece5dbc310da37ab98
MD5 ae89fcf6d3c109ee5787554f40b769c9
BLAKE2b-256 16448d27984fae74bb8ebbaa6b06157cf94c97ef0ce764e2497c21ce4329bc9e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3f2583f0906dfbcf55f44db7a5a90f7471b88924ae99f414c9c2d64c8bd8156d
MD5 dd88aaf065450b28f06955a3329e491e
BLAKE2b-256 6ee9a1b3548c82b90f8ed190b3c05b3c9995c4260ac0f0a644c6002c584ce980

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87b45ac248af8fa977f2a8b86826edbf63badcbdbc76f20d87af2edbadd7512d
MD5 aff3713c03004e9943eb95a1e28c5d92
BLAKE2b-256 dc50976976c3c99cee28a0b63d08406b83e49189c6a430adbbc202c20d900e2a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1f50df40e79f7fc09454dc6d562fad76c7ac6d2f93359f61e2155530f899cb0b
MD5 3e299f26c84905c553364288a0c3733e
BLAKE2b-256 9efe9743f3f9d74e0a9c5c5719563895e9df58c8646c95c956cf4fab667b9290

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa545b5865ab879725eb61b7170be079901577a16996a01825e2b8617ad217aa
MD5 3712fe3c527481a8ada61a09059e8a24
BLAKE2b-256 2d1b67dc64e9f97b6e6103d80409dfa105b8a40d2bb87feacd0e06da392fb75a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9fd8e98222d10650038117a4d44bba463ebfdf341dd0e23434da82364f44d91b
MD5 e85e490a8c1209909f64bbaa567e14b5
BLAKE2b-256 e649fe1c897a1a51c7ff7a70c20ab532945fb663e3c23ea5adbad5c49465a2dc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 60ffdecfcbeaa2cecef267ed5a88c2589d62d19347dc8c2d9cc72a29ff5bd0a0
MD5 0a1eed3dee0b7845e296546a1db7f27e
BLAKE2b-256 cb3b88ccd09ca3fe40feb1db0ea42dcd4fdee90ccc1b9d352b8226454d551950

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 adc98263049b268dbc81a40713e472fe1a9b3bc2a19c25e4416e393a3cbbfa08
MD5 a0ce19afe0e0504b03d6dea5fd842f3f
BLAKE2b-256 528090566e8ecc181af896bb41c8839bed2a066faf0a80d9c3689a983fb95d6c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ba257f67b3988cdcab3c142678dace39f4ece395753b4b5af787afdc811fc258
MD5 0514597e1179e5cc7a05e8905437e2d9
BLAKE2b-256 3fb8637e499f762850af9976594c643797e008634575f4523c63791653bc4b1d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6a93960a07dcdc8f543f3d4d12cf2c54c5c212d1b082d837bac3b6b7171fa64
MD5 9ca537cc011aab711eda7ad0c6da7740
BLAKE2b-256 7eacc907e7549a6baac70576dfdf7836444e3be630e13087b320f8de817bb348

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cc33796b0542f9ab58b12315f5619a19429230921bff0cd3cbbbb8f91f1f7958
MD5 87ebf95d7f822ee650fb65cf2f30dc7d
BLAKE2b-256 78827570326e6a58292209c55a39b0def5f7a5a49090198a1ba3a46b5a201432

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 356e07162c524014735e708f3046390ea775af076fb22bdc21c2b1dff3030f43
MD5 b948cc691d7391899d49d2ddf4fdd24e
BLAKE2b-256 55486b16298fbd1643d6363bc8f0e70558f6d62f93980f868725274e5ef644f4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8f92e33fd8f74f1ad4dac902d96e74a15cf43c4dfd0466f5530bdc93b303d5be
MD5 73cd496ba65d0015e16114d621b32c9a
BLAKE2b-256 c81aff83561d97814af0e39a7924233a5cc4d5874ffba135bad1923a8365bd7a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b6c23b614246ae9322f259e4d99e5e90dc69fdbc5e2b81fc4bad69b81ad9a54f
MD5 a829219798923fd0a5b17a864175de4b
BLAKE2b-256 b97559d9a2f6a2037c170aedd86075ba214016a993a2f84b6ea10dae0eaf822a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0cdfa341cfd63118dfc83eb43125fc9a12e0dd5293e159a8b8b0202ee72d0f07
MD5 26b878f9824f81a262de246a179697f8
BLAKE2b-256 1459a1a54f8d54ee4efbf1fe151843a013dbda3e28a7c136a5786399190506da

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a435634eea5c06ee30478dd277af4a0037171a53e2cf3269a748eee36ba24009
MD5 7045fe6a33c66a420ccbdd5d052684ad
BLAKE2b-256 a7c4d802f7032af83b26e2d4d92149a5823b5e96285da9978bd0292fbdf4d83e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a1b06c694b4b3d34211e24cff1f56e8aa500840d6c40ad6970055467d58a916
MD5 39643dfa1e390c9525c84b87dc7fa14e
BLAKE2b-256 ea984e03d97b40a975e6bb03949f0662c3ed54c7886841d3f1fd98293ed9d4d4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 dae5544347fc0a676a51ae3d569ba1e80390b11e5f69399b312c8c4642fb9a31
MD5 d525782ababe93be5532b01cd557fc98
BLAKE2b-256 27d3520c2a6b6926d80a02ec09464825f4759cf43e789f12e24f250afeecb1ee

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5f9f52cb88f92c6ffd9937dc6d1512c0bb18d7fdbce891d008de99cd965a954c
MD5 aaa99b0f022344a1e0dc934e47d81bfd
BLAKE2b-256 906dcb4966d1a563f5711e896466c519ee8c6d86ae6df0cd77f8a2c307a35b36

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bc725c1e52e4dbe024da4c8da997cbda80f9f9c3ce78459bef817a83fb4dfb6f
MD5 e6ed95bd43e88ddb09dda13f35ba2366
BLAKE2b-256 f06ad92da6eb1921846c48c08d4afb7ee8d135452ccddbbfeb7798fdb7bbaaa0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36a05cd7ac5e93c50f2f02d18b4ff935ed57fac25e603785cc45e23fb6ee042a
MD5 62f1802f67826802d37be07f8b5029a4
BLAKE2b-256 a344a6cdc1baad780dcb33c8c1b84d6d0943a8a8e414e7bf48128344b0fd0b92

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8694dcc230b8c7c080a412bb6e8919345abbb1c340a2b788a30180c80fd09399
MD5 827ebc8dee7279c4604ae2e0dca977fb
BLAKE2b-256 8f80e687290e1f4729944de92ac0f58da3b4932ada8b8fa051e97d6b882558ad

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0040ab266e3843cfdabfebc18baaffceb216c9c497fcb2baa10420c0f3204e4e
MD5 ef6992d5a0c89341a87b846384d6c36e
BLAKE2b-256 4c78a65aa7cf73e1a85cfe91c565b91010da790b815668e15845b0f41c650da8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8a8d400ec623ee3bbc731a29b57c22d4a2c9e14b2500b70f02956f4443d59e4f
MD5 9de4164e6f846c74f14254f274ebce99
BLAKE2b-256 ca2fab70f3c1a81855d304d4e45e5313714777cc41448a33b057355c56fcb3aa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e569f04c6ecd3f2b20e7fd1534ec6094a060fe3e87b35b1dad60616e8082b4b
MD5 60ead1250c2c5d39e840a45e500583e8
BLAKE2b-256 c1ed948650b713ee39f8c703d3a3dceea4cbc68af2c8997716c5ffcc373643a1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 875afc419b3f07d2cf1d2aef563ae06c519c0805858347449b3fabe197e1d9e7
MD5 ff7403c688182a5b09ea212231bacfb2
BLAKE2b-256 239e776dfd19700e672ec9db20439fbfa5767f0f72d71ef0e45eac2b161563da

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa555df285877461fa512c40f115036d1f04ecba414484c1361b619ea3988716
MD5 841a3eaaa752fb0251f48e5594fdd6f3
BLAKE2b-256 20a33790746bd865393e816fc166e9ad80469fa6abb9051cc1aae6f0147c2509

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ced0e655bc441172825c18bfbbe09066670edd41aca5d490460ba7ec8e7897a1
MD5 694c295bda25cdf7d5192ccbe6ce7002
BLAKE2b-256 16ccc269d03212a78b18418ba134e396c61c92ead3b1d91acd84163a212278a4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 61770fc183cd72bf2539657e68962b0e5a668d5e407b4b1b7c6e712398d12042
MD5 18ff1b064e351beecbaa95dacb2ef307
BLAKE2b-256 ebc2aac4181f58b78681e4fb0d2cebd452a7b5a5180bff6017516db811c925c9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4787539e02a89e8faa37748787fd27b8c9d8d747aad21eae5a420334ae261043
MD5 981060c54980a543c5707a6bf42ad367
BLAKE2b-256 22aba0a8bcb23f39871166242c0b677734fc55f016c9bbc56cdc7e9ef5a786e9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.3.0rc2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 825083e87f0f54df4e65bc85e24e58e945ce6b6db7e159d58a7a6a73f6cd679f
MD5 79bd74073748e2400eea63bb9349eb07
BLAKE2b-256 4ca249b2d5bd8f879e2aa3aa95bb99cf473e2c22e029cdeb7056d0835cf8a512

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfa0bcfa364259c4c06f927fa3161b9952a053f2c12852c045c1b2117e70abb6
MD5 122eb08db5cf04df9213811c1a22515c
BLAKE2b-256 9c41aefb0573baed82a3da12393fe7de9675f348982db08baa9b492c953ce232

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e635e4a5e2a8602683da6c35cb7efc76568f50b7f2eedd4ab340c76dfb30ea34
MD5 b85786d217885658356bc669527888c4
BLAKE2b-256 34f9abbaeff962eeb958310acffe6bf09f8bb16d41774611b3e6b087d4e44aa2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b9ebc7da3aed5e77198136066b1b621d6cad13a4b2a05c6bcf6fe0fc6c0b09a
MD5 6d7e38748af660e20d31a42ba6401209
BLAKE2b-256 794a4d3d65de03114fb045dcd47ee77f57bb47b9ac574a915ee47ce545b53885

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 95a62c065d5d975e44ecec05f6b14e021787d0fe9bb2bb68d50550113a0e7c09
MD5 7cd7866f33d54508c0f6e5a59f894700
BLAKE2b-256 2d1e841251b212fd8b8871a0ff6ee077a4a9f273d0f4b5dc696a6efe3f623062

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c471641f0efc3efb7bbb20418b4484d8997f20ef08d09401ed2e12c32a121259
MD5 c1b7a77ad2702d49a05470a84e93e8d7
BLAKE2b-256 12ee92273ca57dad99203d19e7e808f170916adde1f51093f9fce64f6694ced5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 39ec66e654e341723f9694aa4c315c04fcbf4610b08fc1c70bbba6bd1bd952f7
MD5 abf30993c72c75615bef80481539cd6b
BLAKE2b-256 03a64f83ea8175358e51752a5b619496e070a0b9413d304a065eae76d33180b4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f161d64e94923a3c63a89572ad9f46bf476c77632f86ba00d1ae400b2f59a29
MD5 4be04506185b9c768967b2650424d768
BLAKE2b-256 26a2e0a951a7f4db8a2f2263ba3fa4d5e4f60de17f18fe276f1bb71569219919

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for wrapt-2.3.0rc2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ceda09f77f23f93c5b1174faaa0d47d4f10125d890167cf7dbb91cd2b31942c9
MD5 c1b69f371cc48704137c091cef9eda5e
BLAKE2b-256 ef8352c47e21b2ba58d6d55f7f34acc1b49622c10b72afa12996380d8b3beca2

See more details on using hashes here.

Provenance

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