Skip to main content

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.

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.4.0.tar.gz (161.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.4.0-py3-none-any.whl (73.7 kB view details)

Uploaded Python 3

wrapt-2.4.0-cp315-cp315t-win_arm64.whl (96.0 kB view details)

Uploaded CPython 3.15tWindows ARM64

wrapt-2.4.0-cp315-cp315t-win_amd64.whl (99.9 kB view details)

Uploaded CPython 3.15tWindows x86-64

wrapt-2.4.0-cp315-cp315t-win32.whl (93.8 kB view details)

Uploaded CPython 3.15tWindows x86

wrapt-2.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl (264.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0-cp315-cp315t-musllinux_1_2_riscv64.whl (248.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl (275.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (250.4 kB view details)

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

wrapt-2.4.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (281.5 kB view details)

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

wrapt-2.4.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (269.4 kB view details)

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

wrapt-2.4.0-cp315-cp315t-macosx_11_0_arm64.whl (100.1 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

wrapt-2.4.0-cp315-cp315t-macosx_10_15_x86_64.whl (99.6 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

wrapt-2.4.0-cp315-cp315-win_arm64.whl (93.7 kB view details)

Uploaded CPython 3.15Windows ARM64

wrapt-2.4.0-cp315-cp315-win_amd64.whl (96.5 kB view details)

Uploaded CPython 3.15Windows x86-64

wrapt-2.4.0-cp315-cp315-win32.whl (91.6 kB view details)

Uploaded CPython 3.15Windows x86

wrapt-2.4.0-cp315-cp315-musllinux_1_2_x86_64.whl (217.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

wrapt-2.4.0-cp315-cp315-musllinux_1_2_riscv64.whl (210.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

wrapt-2.4.0-cp315-cp315-musllinux_1_2_aarch64.whl (227.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

wrapt-2.4.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (212.5 kB view details)

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

wrapt-2.4.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (229.4 kB view details)

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

wrapt-2.4.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (229.2 kB view details)

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

wrapt-2.4.0-cp315-cp315-macosx_11_0_arm64.whl (96.6 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

wrapt-2.4.0-cp315-cp315-macosx_10_15_x86_64.whl (96.4 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

wrapt-2.4.0-cp314-cp314t-win_arm64.whl (96.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.4.0-cp314-cp314t-win_amd64.whl (99.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.4.0-cp314-cp314t-win32.whl (93.8 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (264.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0-cp314-cp314t-musllinux_1_2_riscv64.whl (247.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (275.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (249.6 kB view details)

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

wrapt-2.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (281.1 kB view details)

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

wrapt-2.4.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (269.4 kB view details)

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

wrapt-2.4.0-cp314-cp314t-macosx_11_0_arm64.whl (100.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.4.0-cp314-cp314t-macosx_10_15_x86_64.whl (99.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.4.0-cp314-cp314-win_arm64.whl (93.6 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.4.0-cp314-cp314-win_amd64.whl (96.5 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.4.0-cp314-cp314-win32.whl (91.6 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (216.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.4.0-cp314-cp314-musllinux_1_2_riscv64.whl (208.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (226.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.4.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (210.4 kB view details)

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

wrapt-2.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (229.0 kB view details)

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

wrapt-2.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.8 kB view details)

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

wrapt-2.4.0-cp314-cp314-macosx_11_0_arm64.whl (96.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl (96.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.4.0-cp313-cp313-win_arm64.whl (92.9 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.4.0-cp313-cp313-win_amd64.whl (96.2 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.4.0-cp313-cp313-win32.whl (91.2 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (214.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.4.0-cp313-cp313-musllinux_1_2_riscv64.whl (205.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (223.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.4.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (206.8 kB view details)

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

wrapt-2.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (226.6 kB view details)

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

wrapt-2.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (225.8 kB view details)

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

wrapt-2.4.0-cp313-cp313-macosx_11_0_arm64.whl (96.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl (96.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.4.0-cp312-cp312-win_arm64.whl (93.0 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.4.0-cp312-cp312-win_amd64.whl (96.4 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.4.0-cp312-cp312-win32.whl (91.2 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (216.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.4.0-cp312-cp312-musllinux_1_2_riscv64.whl (207.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (225.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.4.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (208.9 kB view details)

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

wrapt-2.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (229.0 kB view details)

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

wrapt-2.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (227.8 kB view details)

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

wrapt-2.4.0-cp312-cp312-macosx_11_0_arm64.whl (96.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl (96.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.4.0-cp311-cp311-win_arm64.whl (92.8 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.4.0-cp311-cp311-win_amd64.whl (96.3 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.4.0-cp311-cp311-win32.whl (91.3 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (207.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.4.0-cp311-cp311-musllinux_1_2_riscv64.whl (203.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (217.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.4.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (205.8 kB view details)

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

wrapt-2.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.9 kB view details)

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

wrapt-2.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (217.8 kB view details)

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

wrapt-2.4.0-cp311-cp311-macosx_11_0_arm64.whl (95.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl (95.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.4.0-cp310-cp310-win_arm64.whl (93.0 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.4.0-cp310-cp310-win_amd64.whl (96.1 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.4.0-cp310-cp310-win32.whl (91.2 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (199.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.4.0-cp310-cp310-musllinux_1_2_riscv64.whl (199.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (210.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.4.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (201.6 kB view details)

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

wrapt-2.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (212.3 kB view details)

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

wrapt-2.4.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (209.6 kB view details)

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

wrapt-2.4.0-cp310-cp310-macosx_11_0_arm64.whl (95.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl (95.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.4.0-cp39-cp39-win_arm64.whl (93.0 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.4.0-cp39-cp39-win_amd64.whl (96.1 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.4.0-cp39-cp39-win32.whl (91.2 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (199.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.4.0-cp39-cp39-musllinux_1_2_riscv64.whl (199.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (210.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.4.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (201.5 kB view details)

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

wrapt-2.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (212.1 kB view details)

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

wrapt-2.4.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (209.4 kB view details)

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

wrapt-2.4.0-cp39-cp39-macosx_11_0_arm64.whl (95.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.4.0-cp39-cp39-macosx_10_9_x86_64.whl (95.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file wrapt-2.4.0.tar.gz.

File metadata

  • Download URL: wrapt-2.4.0.tar.gz
  • Upload date:
  • Size: 161.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.tar.gz
Algorithm Hash digest
SHA256 7082fc1f94b020ac275870c4af71b09cff22876fe6e9c4c0ad01ea21d217b288
MD5 96ce16d7bc4c2ff3764f5fec984ddfdf
BLAKE2b-256 65ba8dc25478ed234dacc7d83c671634f347d0bdfb65bf0502f41879cf2f15a9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-py3-none-any.whl
  • Upload date:
  • Size: 73.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 18aabd9301d06026f5900538051773d6f87f65ae02cdc60de482df978513dc0a
MD5 4cb8663667417e326e48db0e49d78a33
BLAKE2b-256 79c8fafe0002f572ced999c792cfe8b05d39269c63d8193d15d25bd828bcad7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-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.4.0-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 96.0 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 36b56a4fba13b34ed8ff307557325fff215de0a58b5dbaef2c50e4d8aa39dbd1
MD5 6f1c2372a4504ff42156b4291aaf84d6
BLAKE2b-256 6864d15740c763dd0ddea2338ad42e3bd4a84f8702e16083e7ff61674c504a13

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315t-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.4.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 99.9 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 85ed3c67fd39e8d9a36c224758cb6f2f4eb277d07ea677930caa0008c18ec002
MD5 5f43f9d26762043371a72efb4d870632
BLAKE2b-256 09504e7ef58c4eb058861ceddc0d1f94a6ed87f62e1cb27783c60b2897ef7e58

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315t-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.4.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 93.8 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 d8e6e1e5dc684dfce7c33fc8b67a08ba2af94f3a45cfc70d5c1d6a839d2caf97
MD5 ad6fc64492b926a11817491c175318b1
BLAKE2b-256 6ea2de7b1de1702667b4a048318e301e26887268c17b07c8b9797cea06b10aee

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315t-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.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1656de3835f760781c9b974bce07d8c04edb9c9ad7ad67264aee69cd68a1db09
MD5 582c056b77513f9bdfd9e45eaa6b2635
BLAKE2b-256 a5363b84d9e1ac8393bf2c94272760a2d361dc394ac30301e6d6dbd6583ade2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315t-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.4.0-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c246aaed719dcdb62eeb7b8d9306a6237777226ef3baad35919c4ae134c91ce7
MD5 01882865b18ad41270eaacb1c52c5a90
BLAKE2b-256 337f9347b2e236346b1ba4cb28b82b205b8a377bb2da9417cb81bbe3d25816d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315t-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.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0972cd025f4c86fa2d8abd953d9f875779935343af58b4ce019ff89573fc65bd
MD5 77a5866a04da5fb7a71280753a2b7cc8
BLAKE2b-256 780bf2e576de5bf53ef5b578470104ea93f33e273a704c825131bc1719fffc42

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315t-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.4.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a112a1bfdd2621e4344cb0a32dbaab80636b32dac1b055d03fbb2a67d806d1db
MD5 84173d4f854db4966987bc252719fae8
BLAKE2b-256 a357673168e00aa03725148ce621ed201b75df4e787a57acd48fecefd2725600

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315t-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.4.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 648d1d4f94e8a0a1656675c755f40d2f0ee5fe92c449ab45326f4ecc2738cbe8
MD5 a6b27fba11fa7791a43622911f61016b
BLAKE2b-256 c6d0c98d6548dc4c7d12ab9baa192234ca1a57e141afd283252b448faddbd9ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315t-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.4.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 75944792cf6b99262d649d55710bf5901f7013fbb212c7a1d736b97a20517607
MD5 7b2c5451e04e076094d0255d1ee1b52b
BLAKE2b-256 0be1e2437f17f2a1ec292056e2fcafe1248269ebc39502f2ffe79424bf86f8a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315t-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.4.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 413e757dce7a43fcda8bb8441994b1127492ffac6a5803af777d44516df8c6e2
MD5 fce835e8b28f40e49c3ce45fd5d03ca2
BLAKE2b-256 4bc2f9a3c40901a36c6bb7ecaff8e1e54af78fa7fa0b95a0e54d13d3a24c8a0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315t-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.4.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8828369b7d3e93c547cc8ad931b5a57b4e8d174035c82762fb1091e7d05ac9f5
MD5 31ca4fb9f1616dd4b5842183171443b3
BLAKE2b-256 3589f08ff45d7646de29750932805cc3b1e86b6ac3128015b293ed45fa8efe86

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315t-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.4.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 93.7 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 e9e7e94472f0e3f1447caf27e1939eb384d0e87972a35a05f5c2e0968e9c01af
MD5 576edda23f81f0d2738d9265aa49cec2
BLAKE2b-256 96847c5e52e450f80ba76fd0282dccf7c79cd004ebd8ccabd0903064d3d2c56e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315-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.4.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 e8df31a126a0a247c1aa379e30873839de03912dea09ca360c680f3625d815df
MD5 550d9af76f01e69c851bc41d6de2be89
BLAKE2b-256 fdd36ebd944041cea0ac4a108a4739510ed2dc891a3f3216e4f7bf0650f5b5a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315-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.4.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 91.6 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 0191d717dfbb8e519e7bfd4775e5b9bd57e359b3a09ab5db1ea47f6025b4d845
MD5 c3958ce121a1c3a35a980d48370aadc9
BLAKE2b-256 3b0b021c9d6ce64c639894bffdaa7a895ddd4187abfefb2873ce55e536cd9d56

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315-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.4.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d294576fddac636589e4deccfe782e8f429da10f167c1985c4d51071de3672b7
MD5 56cf1acc914c4f48497c7444c64f8065
BLAKE2b-256 4bbf89db9d5a80a9f2af52b24bdfdb5392be80bc0f0fd39fc39d1aab72afd0bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315-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.4.0-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d5f45bead708e2c0014be5e98531ce7202916b098a208c7be83c6ceb0a2559fa
MD5 ce1683235a2b8ec480833cbcc306921c
BLAKE2b-256 0e20124b40bfd9585848db5a5aa6741d0c8dbf378dd995c6c2d95f090d9cf540

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315-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.4.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f3bdfc35c83b562fcaebc0f24593045e5ed9f3b633adafd35222718a0ec38fa
MD5 8bff58220ca25473e6ed200ae74a68da
BLAKE2b-256 ee3b8b5b57d0ff24edcd3421dbaeb4e94c89be3616824e47708f4e13f25ae3d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315-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.4.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 66e7512c0d324cc37bba1def2be1fc365cbb685d3aa393a8f6f4d2d00202881d
MD5 68a85051ad1ceec3992409cbe243029e
BLAKE2b-256 e79ea92c049371a2675f98a0381ab2951f984866d1ba4de0e0771d6a31fdaa2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315-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.4.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75529a2fb569a671cf162f762c1b576f569f571b55ec7f3481258ca842ba507f
MD5 54259dbc382f1a00c7aea09f62086d28
BLAKE2b-256 782e0cab15fcaec56096a5734feace3620bc01edc885653be04bd756f84a6784

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315-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.4.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 efd9a4be6785295e471f71efdf5682bd11d5b822b9665e6e1b4844917cf2f7ac
MD5 bb1c88525c34ae049db81f8ae96e6fb1
BLAKE2b-256 aae846571e1218d0494604a7aadc4c898c738c4b179052327ee1e57e278cebd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315-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.4.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d28f8f35a02d49f75f57fa4e755db4ba33f65841c0de64cd65b253916f5bf06
MD5 1dadab40a2b1ef261d36e486ec80e229
BLAKE2b-256 ea6f803b0d0e14de11781f0e938e6f7d6e29e79652139fe70d7513460357ac78

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-cp315-cp315-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.4.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 430fde1a116df3ceb5c29035de1da6609b70e680d9b8ce3ee624422f3fe0978c
MD5 5e994195aa17dcac8344edbab2e7b7a0
BLAKE2b-256 a0df3a0b6225ab88bd47090df70391c059a3308057638f8fc0ae32e8ac9d1886

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 96.0 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f43af38a642c3d6062e9740d8f5cc0feb5dbe0da516702df892147393b8cb14d
MD5 d4b5e48aba2feef20d8846c03150048f
BLAKE2b-256 a3af4a10c9a6d3b7ae41f830978c28d33a59ceb29537bd6875d2abfe78db4b41

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 99.9 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6d57264c9dfcf37d2bf0b0fbec68d0f6184fc5617267619ada04d03e8b0231f3
MD5 2ad7e1ec956ca67e6789264cdef4a176
BLAKE2b-256 3f87ced171220935c696b157207385fa6be5675558a74655479f071d95a00f1d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 93.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 332d9bad7e9b718974bb2a576504c4956f45b4a0fcd7b3bb7827279167550464
MD5 031e73f54358990699c4a0529c3087d4
BLAKE2b-256 d7fd0db9ba03e08a7663f52455e95520c723f567bc037bffc6699950fcc456c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 694005fdc3002ade0f21641408c588028abde03c85961f3ba7727d8bead3ed6b
MD5 53e1ccecb9941a5aded4e08a70dfafd1
BLAKE2b-256 a22067b2968fa9200458446c51b36a435adb6906083428b70fafb4caf92d4dc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c4fca1e63af6675af3df7cdfcd5a0c878b5e655c7e48611ced9dc8d62183a11d
MD5 d9e2c38e5c2c8e8328a18249d1ee6b02
BLAKE2b-256 c48204f4228eb3fb348d660dd1ea7225e53665b1809df2273ff4861d4d33b741

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3367a5212212c9393e0d3ca6ae029b3a8fa40c5896e4a985d43fe8a4b8322f0d
MD5 84e1963ab5078ba1c13bf0036933ace5
BLAKE2b-256 3e27bdd82044d7503c2bfa78afcc89881f82a1b82b5d2013aabab853d339ce2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7a057d376d994da6bd1bbf955ecfda699aa7353826f98847f5605e1801abdfd4
MD5 35e89536a94114f9713464f97cb1936a
BLAKE2b-256 c724dfaf53dd3bdb0703524a9367b48e2a64ea86433fcc854b5f14be6a8e0e39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 328eb2d978ca3a6ae25f8d8fe560bf8f4bc9778b5932e7b142664eef05b92e8f
MD5 da52cd2721cd23cf5bf00b194a719736
BLAKE2b-256 14b5a0ae1b431cc1f49a545d32b8b678a5788c50583ecf0ecb85dc0c7f95b4f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-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.4.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e9f8017443595870aa31f46125553a5c55ce95a26a267b96261baee6ba566d83
MD5 0988f603439ea7dbf1eaf0baaac9a062
BLAKE2b-256 84468ec4941d0abbb010df7caf0a34840ca0128177389843b0f5ef2f9ee48ac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f8ddff4bbb75916be36da5169b8b9d475b59a1bd24acdb7551bb2c71be9aaac
MD5 42586b9752ce6ffd53c1d6b766cba3b1
BLAKE2b-256 b2dac1d3245abb911a42584f8f7e9781995bdc41345c7affba75cf7e376c85ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 09064c7be688c38c3ff125ce86bc26b69b5d78dd56062c3ddd9c814b2a25f1e1
MD5 1867de5fe948f3a46258a35cb7f922e9
BLAKE2b-256 ac9080cf6a09e9599a11249775928df9bb790b82471e4312b847a861ffb2c2ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 93.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6b3e082d43f592fcd381aee46354a11ce887a813ce5bbcedd9766fd681723c09
MD5 dab3e5d1565ef741daba87525118823d
BLAKE2b-256 4d3b3415a18b91221261eeac85bf8ee23dfb0e2a39d76b9703a797efca177439

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 63b94f401d7ae3a9a3027472fd3a3ff38afd2ed293b2f0b3b84a6d133a9f99a3
MD5 51853012be28abe374d3d7ee40675dea
BLAKE2b-256 a4f8b642f3184619adde676ad449030bcbeae6cc78ea07a92f0b5fddeec4c4e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 91.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0eca69c9e93518240abe8801fb9b2726116a6e48172e4564c2651a2e14521747
MD5 0346171aa3181e42cf3f85a20945860d
BLAKE2b-256 2019cd6bd5050381a541b44be97c4e0994eed60c5f439f4314f95eb5777d6c1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72826910a1cf5a081234720fd43011304b899acfee219af49148155b4d795533
MD5 e5b9fa3172b839b139630974bed9c308
BLAKE2b-256 10161de84402bb7a0916e10739bf6586e031244172b299e87c8cff2a04baf9ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5cc2e7c7b6032e11a2b367a9baadaf0c5241feff2d8205260d87f1aa6dbdf84b
MD5 895e95180cb958d1afc2ddfc0e3200c7
BLAKE2b-256 816c7e5f2143228635ec139ef6df733dc477049f7d96a0c49deb23944a73ed6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7fed45dbadf5d98a52bfff9624d3cca00affeb9543d493c9632b7a53cdd35c9
MD5 cc947b4ce977530c7d319f728db877a3
BLAKE2b-256 de90e0cbc43f435fd39df25460e9f173e7b96f3dac5c7f66be41c7227166f021

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5f041ed6a4d571010944bd6cfad9072db463e1851877b6d3227467a44af37456
MD5 7320da7561ac6cec51c6d6bbae293f85
BLAKE2b-256 c9c58a3608311a02faf3e5c072da38d06a7c623150fc258e29f18fe377d91703

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0536f5d85ff6a157ebe7e0fe08c5479943742cf1ce59569075a66159efcbc495
MD5 bb544cbb6569ca21e9130226e44e80cc
BLAKE2b-256 f4774ac5882abfb29bf9821c5fa5cf9f30241a194e0f47faa2682b9b29765278

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-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.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3a69161cae7f0dca44c89c1d14146b4a0508a0c3cad98b3f2db1f4e9016c94ba
MD5 f6cba7147e8a37338b4d17987503a853
BLAKE2b-256 c2e38fdc9eba0e6cbbfe8303e1e807d734691309a27970b2ea458d099f1a46b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 947bd4b3438167b3638bf5477cb83a068a586ffb6d331ac427f39839c2b93b3c
MD5 37610908322e21b7a7d13c4df94b8783
BLAKE2b-256 be427ecef06d33c0121c68d66a8a695efe67ebaa57218c1c61c585eca2a6117a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 788e473d1a6786d29d577b1e2bd95e214c09cdafde84907c522c31069c9acfac
MD5 7c033c76923355a7465473a0276c4674
BLAKE2b-256 1fdd1f269e4daf0c992f675e1ca2de6b1683b761c6d0aeb6c7b4b412486823ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 92.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f1e9e088094f4895f84ab043e7d59401df137d663efbf1e80c82144882960830
MD5 8025bdb04834965ccb122343ad5d2c4c
BLAKE2b-256 9f62095ba31123fa5dd482d6183c05200b061314aabbd5442c010aba4b03ff1c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 96.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b1737f46b1e4a81eb93500a7f2854319e1c7a86e8863fb050b7b4daadd5a4178
MD5 d960c82bb4f9ca75bfc0e39ae0e9c9fc
BLAKE2b-256 fe1ee782b511c680dbe7369c92e7d981484aacca0cda584da1f28a84cd9a8e1a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 91.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 49bb5a572469e0e18163a8ec2aa972135a0929899ecbe627665f274506e1b5b4
MD5 5bc9fe0a7376b68de353f3bdb4c92acb
BLAKE2b-256 cc5a8b2db70206db0a4246758e0472ce344cb9636217113ef70640fc8d2ce874

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d5e5eb76fb87e62752af751d2dcd9d1cd986b12037d2e1363d109ba716029e8
MD5 b19228beb4fe8a9933149e107190c531
BLAKE2b-256 1c0e974a60672ad507d39a3d8a1c6351ef37fe65b07240d000ceba5d2b83e9e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 93180c2199784dd6a1075b33f9ed636bd0966821edbece6b3d5379b1c4f0bb7d
MD5 bd4f44e4faf44198d77a6fd888490b82
BLAKE2b-256 40abd198eebdb39f0d7e182e771e590a36673489cd58cebdad8aa273dcf28e04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08d8378c4514ac8dcc0ace76044cf87a873e6a52b5e6109834c8fb9037f4441b
MD5 7717a5d97decb430630bb1856e2910d3
BLAKE2b-256 b9c540d355552bd3eb6c5186e26051c19b573d24d7896de42caa7937d6b5ca9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e78c947e18fadfd690c9420c30a96d221feeb93fc8f1cc00509b370ac16c3114
MD5 cd19873ae6fb6e75978965fbe19a797a
BLAKE2b-256 52c63af8df515d5d7e92306957536f3468c6bdfecbe3659f99dbf09a468c2c4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e084558fbd112d2e1e34b0f5c71e45a3405bdad51a17150368a959bcf6697964
MD5 cb72f0e5e6d431a99c53dcd263194dc9
BLAKE2b-256 cbf7d100f6c348b7669f19119cf890dcd4764623e2233af065586d110e0cd99e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-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.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6436e2bda993a3eb69a1b317fc831c8ebcafb5704c390859ebd49f81218c4bbb
MD5 129e33b6dafa641e9ce7c42e56afc500
BLAKE2b-256 cba3a3b5cde1cd06e04b6e95134eb3187a0a7da607a530e7795b221d4e4fa819

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7de5b8d94417e55c02be50cc226e0ae1209bbc73813bf691dff3979c94438115
MD5 a89fc9c1ad61bd38020fa479e4dcaf5d
BLAKE2b-256 c3ab1dbf50802bea3b46192fd0dc39bb0eb2e77a064c813b2bbd88d2888ad49f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5c5c4c728cd22a36e4b8bb5df4a7d3bccaa865d27725b36eeb3b6f18fb2e1bc2
MD5 dde3c111d405385a1131f0ba72534047
BLAKE2b-256 1986f9de4e11582ff96ad2199eeeceaa17faa27bbdc599243f520070c4f3de07

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 93.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 db1285071ea09a7767fac608e7b5c7b03c09833b06186875a359905fbc659d29
MD5 474ec728d6a7e42609a9363a097dc4f1
BLAKE2b-256 837ae838ac6463a1a1a1817b2f184ee2aa20c54692b80368c5063403c8d2461c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 96.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8b464316489fb2fca0669ea0f8f07290054a0f26fc72982d3e4cf95469628ba9
MD5 1fc66a9ac0c3f19066777eb38fbfc238
BLAKE2b-256 adeca7b10705172bdb669b9687a8ff68bbe5f566437d2a49ad6d976af48b6d10

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 91.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a9ca1cdb3f7facb4990c7739ea5afbaceeb6728d066feedde03a4cfe83b29b03
MD5 aae29eed1f91569109ac18709f44ae8e
BLAKE2b-256 9293cc9fc8fef1d3d25edaa1c2dc2337b556dc1d0613ddc1c4a6fe9ee08ad705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28f5de1526831b8f173889a436e289fe181ede8c66c9feb669d1aca8fd602eaf
MD5 3aa2a9469a75be2fc12b9ebdcc8884b1
BLAKE2b-256 6d0cd8a5c6dbcc2d221308223bcea4130c6332454a855cb4dbd5dcb2360b13b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9125c6dbe8b88c00dd8ef4fc1e55757e8eb4720b6b2b2cc610a45bd32bd28c57
MD5 8a088ccc216f18edfba17e3c537a4ca7
BLAKE2b-256 01373b357bc90530d510ae59ae7ac48265c482ae899e47637ca4436645688b40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8763ad01e3725b7751a4575f38bbcc19c0aa0822fec91c5c5bd21ce3ce7e1d2b
MD5 c44fa170cef183337eab7cae57b9560f
BLAKE2b-256 a36623d0e8de9b411fd198af5121627587563657370c8d509fbe5ea8adb3df79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2a9f1a2f75bb95257cc5744e255e10a5a86e923f328b40ad3dbf9d8d03430013
MD5 888e960642e6935c81ec528ff15997f2
BLAKE2b-256 4205d4853fbd33e5860b10d5aec690f563547a92a82e61fb8bb2d4ece1ce3570

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39cd68df4dff79f5336f9c745c06259d204bcb42d504040c9c91eac9e2abb39c
MD5 d6eb42888cd771f8a38a2fcc9d2fda69
BLAKE2b-256 0875c8dfba5e0caf17cd0718a0cbbe76cb85e637a2d65183fb728232419f6fca

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-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.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d7dbbdbfdacb85c2d962fa52db791c77943fd777d600d74c95af2d53b32f5a94
MD5 9cba131912b083b8fe45a0cb4b0dcec1
BLAKE2b-256 f8fdb20e3cb3cab35131b515edf18e8cd777dff680fc76fc00919481f4e536af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b9b32d5e4f0a179cef5075cc79b79d6d3482c44c434c12969e48c6719e06d95
MD5 46921ff548443c62645b5d8a8335f1bd
BLAKE2b-256 5d90095984648cec62a786bb27c0b50f6cfa5856d1e073ba1006fe148d190084

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ef4e2d6e399ce6eecc80179a6b9ef6544f121288f95fc132bc36c9d9503903af
MD5 f1cd6f329e95941fdbbfc65b5819e618
BLAKE2b-256 f022581a0b44349d5babe526c958f365b8126e0fbd8fc2810e80446c47358050

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 92.8 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 637fd6a18bb668a0c27b4767dcbc2fa93119c90da735bd2669fdde2d7b59fab3
MD5 ecbdb2c09b7d675e39a73102f3493669
BLAKE2b-256 6e8968d6c10590e74c496046f9fcbbb6ef80a2eca823f924305bf79acb65cccd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 96.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a1117c63a39ba4d1b884e658089e512412d5174217ea1b4fe570977e42a5b129
MD5 de0ffccb07269bcf34f6559083b3dfd8
BLAKE2b-256 c655c9fd1bf55e144082da6d62313d38f1449707bca16b76af4abbd5492f91e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 91.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 be535bdfbedda84cb8ebc6a80955dfd03d46840c13470486bd038f089e38b172
MD5 15381cbfd6d6c6b4597040e038102dbd
BLAKE2b-256 bca2db3b55e29d04b685c761b1d6aca9f84a9c4f7e1c93543f23ba8a180a2a3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b33df90f3d1e5b1c8811830b11a3e718b4f3a2823b748fa9be1688cb82b193f1
MD5 1116baa948592c5e6519d1ccf1c8b5dc
BLAKE2b-256 fe4534c1b0172f0c36305c26c2ffddc8f0bae7a43d78d6b32b00b1b043f77fec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 811a36628d8b76724b980d508d576e5c5ecae1073b6ec4b4eb21646921906fe6
MD5 a1beef31e864946e8518713ac59d0bf5
BLAKE2b-256 c2e8ff294f964325a6451ff413aa918f5d55a197303b813d0ee0a16ecf3c9bd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52f01626f1d2bc54585954cd8b4931f81003b0ac8dad61c741f43014bc9a0f0b
MD5 cbb224350a36321f120e1d6f27f8803b
BLAKE2b-256 715914ea2e24c2546da9a08cf9da8fcb2a8ada40ddca0c9a4f26f6a559e49efb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 abc347e92f9202c8ac1d5c1626a800fd5e56e13433f0651b26dddda5b421ac79
MD5 18dfe6abe8224f7c88144c51ba64118c
BLAKE2b-256 4995a599d1095b6a271ef91ebb6852f7b4cfc7462d0aff7f4cc1fc3e6437193d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9905bceb7b2833559518574ad6259d2ec9ffd111a0aa330ca685db74478e1ae3
MD5 51b4d947be5f81988fe6d93ed1297730
BLAKE2b-256 2fe9373bc7c86eb41f6ab2e5608afac0bda11130b870c4dff4f4d1f25ffafe8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-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.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e52c6a5be3284719e53b629ccfa565c146e604e861de35e861c94f7622806eb5
MD5 5c155b8651a21e9b207ece514c058adb
BLAKE2b-256 ff8163c2fde1f11d008596ef86631afb37a8cb250eec62382003b7d12efd0071

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc1b2cebd6d8db9b4ac0adc817c08b4901922e85604ae2a69aecb5217b2c09d8
MD5 a3781ac717c6830264c44022e518678d
BLAKE2b-256 81298e1d699fd15591e58f375e1eb5ce444aa955645edc53d09d86cf41d8aa2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a67ec80d15ac199d4a9a04a33f3039a1c219c9bf1c07b1b0422497613f167fb9
MD5 d349f9d5c3cfd995111e3e39db79545a
BLAKE2b-256 44f0f2f25fe8d516e63354ce4b027d4dc8d824bbf1f5f173f0bb83ce1bcbf706

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 93.0 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 11ccb5f3de2047ef91408464abdc04682e40e7d7bc9614885d2abcaa7e2ef149
MD5 7ca9611948e9cbd04e0838b104c8e403
BLAKE2b-256 fb054295a347b2f8772cead2b45f0d4049902242fcb46a5f4488c0e8b0951681

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 96.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ef9797bf7c6f9ad9d294538c4f9a64ef3dbbadb63590a9a067393fd49ba28b0f
MD5 a49f5f9390304c4ca32bd482d0d43b95
BLAKE2b-256 a267fab3ec749a0bb831ab0993d3eff2ca90032b858ab9e0c0b1932f663e7e43

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 91.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 07daab5babb7edaf89413f5c8bd638474540fb2643b5dfb685bdc0680c96803a
MD5 bd99cd705f25a8adfcb1af245086f72c
BLAKE2b-256 b007820553cbd7a94abf1fb3d324f19c09e7bcd73d8f36fca6164f6997c9130c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37ba372e9ae71ec43e165b5db05f52e71f7c07dafb9d6a254ef7128112dce751
MD5 7e8bec0bd6e687485b9c39ffc69fd328
BLAKE2b-256 b5fe38c3d26493869740aec6f4f5eebd51df0781ee703d554310e4e4d12ea2ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9c884240e7415d3a384e70a15ceea0e884cc9289bcc254afd6412d4e7cf99c47
MD5 d20195a334299e869d052ba50980c319
BLAKE2b-256 459deb138df0a2d85953885a6b14768d3416e55f94728bb45b1fc7fa3dcde246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a27d9653e0f88aa06598954337a545fc3f75bc811df897157a8614846d18d9c
MD5 2f0d2fb49ecef057ae86544d20fe24db
BLAKE2b-256 a398e8d30eaef0f531831c91e6ec6cf9c2c95ada3f8111463a393bf395445c78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5b8fff692f74782de89ba9d7b526a7cc398569b6a988ddc848159cc033c86237
MD5 42568bcdcf2cbbcc6d4612e58b877f6e
BLAKE2b-256 a3ecbda24f3b18046274dde04feb56fd80ae1bf85f89110ddc86ad45d0dd2f06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 932a8892265df7b71257c30e5752635bc1f06a8c4e264024ff031bdf9bb10918
MD5 575bdf179dc2dc6bd5522ef871a0414e
BLAKE2b-256 a583d5bf17b460fcf280f22ddfdfb8b674f5c213e46cad048d4bb2cfd43ce58d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-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.4.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 635cc171ddfd72edff10e295a02daa65edaa1c0ba619ad11eeed15cd2258c5df
MD5 a4dd1f4b11bdb0ceeb3910a2c9314553
BLAKE2b-256 b7e6ce8d8da15f825d55523ef1af03763de15d62c559c826516726fcafa072b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4597d19904b4aa97331d8bb651ac626d9397727e717942cf11bd7699ff97aa45
MD5 7303587bf24945811714357b20bbcaf0
BLAKE2b-256 c03ca4620a03518eb133131aa54ae6973ba273a6f7244f2f771002be5f2db938

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 643e45aa88698c8aae938c50e61940985d4ab9e53ea666d3e8e4eb86a4820d0f
MD5 c79290a8f522522f409d6d4b9a3d7764
BLAKE2b-256 fd518698f7646b9e6f4deca78995c59df25760c047eacfa595262205497b0b07

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 93.0 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 6a48bc764deb585d3b8862544ca12df417109984e018767b4ac9aa46bbb55ccd
MD5 16ef57072af9d71479ff4ce94581b0dd
BLAKE2b-256 e514776805b12e732b3083b63e944275cd3305c94d8e1d48fb6a1672c4120ae0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 96.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d7c496a966d70f8caf215faddc00de9931a5bf652664221b785a73b20229a696
MD5 0b4b3366bd3e6a5075ec1d4d427e7325
BLAKE2b-256 6fe47513d8283cc384ebfffb74b38a08dd81fb7c943098d9f560dfe828e56943

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 91.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 325c24cfddb46f93c931cf37fa3a9929ac94e70a5627efccd51283f9fd69c6db
MD5 050f03a0e384ef24d0873c9bf825ad2a
BLAKE2b-256 df79512d78334699fa2c349409c55d77f187f701ae76a8f25445835cd9de13ad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 199.5 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b8851a54b137eec9a8480d73cc1a309613e6a465d6f157300f1eb6b5b7c0505
MD5 0ca8630a8ecfd8b9df7bdde58b19bfaf
BLAKE2b-256 4a036e6c32b881d771ae4473abca535b45acdefb76738240190b5c4230b722b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4a1d591386ec4aa99780f672232868620f4f3b63401e2ceb529762580ef8c54e
MD5 2b35a2dd55cf670b854060015ed587fc
BLAKE2b-256 46bb2379f422e8c2e5b585fa300f7616190fa50832f308921e7c16de0d82da92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f53837b56ca834f381d300621f8c9525b9da517331ce0f4b805ed08f63bedcd7
MD5 d94a129d7cb979a002a592a9f23dec71
BLAKE2b-256 d58b6293b2c2a959af3d7497432791380f1737607519f1614915ed1ae117859c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 174f3576dacf55c8a7c21719d4b7c8088efb991888db5728cfc891b80b28853f
MD5 4332bdab324e36493f20aee1d19dc443
BLAKE2b-256 1e63d8bee2536c9c0fec5d6496b0ba2854cf8b2abafdf1aed2397360f8fc69a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 717dd7ef439863933664951f89902b7e0ee3652293543cb9917c2e16bbde1949
MD5 24491fa20ce396ef1bb161c4f983f13a
BLAKE2b-256 1e35b5c98259bef4f05b3675a9a8eeaf47d18e4f32f45c1c4319d473046f703a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0-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.4.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2dc0f6412aaf5fc7e6a3abf119b7c671dbd026303daccac20112c046a48b68b9
MD5 08d8706ed7bbc757c5c3e91eafa08b34
BLAKE2b-256 39433d45f463929c65fe884b9269750c922b2eb832e8717ea7447b6ab8d537b5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 95.9 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15bb88c0a6c6312244917bb0a094368746fefb92663209363e16f20972a57b34
MD5 cf8db7decd9fb332174191fe36f6812a
BLAKE2b-256 26ae8e3efd6f6fae1de18acb9efc44d9e5a11ac8112853c27218315f539218ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4b42c92df24a986da7e2b5b44fb142504d858c54a276f9f366983ca4482dfda
MD5 ad4390fe66a08d242a83b338ac3ab12d
BLAKE2b-256 f0d9aeca9512f0bfe897eb4d6a3a3617c4fae43ee8511a596cbb1fc67de469d3

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

2.4.0 This release

101 files

2.3.0

90 files

2.2.2

90 files

2.2.1

90 files

2.2.0

90 files

2.1.2

90 files

2.1.1

74 files

2.1.0

74 files

2.0.1

107 files

2.0.0

107 files

1.17.3

81 files

1.17.2

79 files

1.17.1

72 files

1.17.0

65 files

1.16.0

70 files

1.15.0

75 files

1.14.2

30 files

1.14.1

74 files

1.14.0

64 files

1.13.3

51 files

1.13.2

44 files

1.13.1

45 files

1.13.0

45 files

1.12.1

1 file

1.12.0

1 file

1.11.2

1 file

1.11.1

1 file

1.11.0

1 file

1.10.11

1 file

1.10.10

1 file

1.10.9

1 file

1.10.8

1 file

1.10.7

1 file

1.10.6

1 file

1.10.5

1 file

1.10.4

1 file

1.10.3

1.10.2

1 file

1.10.1

1 file

1.10.0

1 file

1.9.0

1 file

1.8.0

1 file

1.7.0

1 file

1.6.0

1 file

1.5.1

1 file

1.5.0

1 file

1.4.2

1 file

1.4.1

1 file

1.4.0

1 file

1.3.1

1 file

1.3.0

1 file

1.2.1

1 file

1.2.0

1 file

1.1.4

1 file

1.1.3

1 file

1.1.2

1 file

1.1.1

1 file

1.1.0

1 file

1.0.0

1 file

0.0.0

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page