Skip to main content

Python compat PyPi GHA Status Coverage Documentation Status


Documentation: https://tamp.readthedocs.io/en/latest/

Source Code: https://github.com/BrianPugh/tamp

Online Demo: https://brianpugh.github.io/tamp

Tamp is a low-memory, DEFLATE-inspired lossless compression library optimized for embedded and resource-constrained environments.

Tamp delivers the highest data compression ratios, while using the least amount of RAM and firmware storage.

Features

  • Various language implementations available:
    • Pure Python reference:
      • tamp/__init__.py, tamp/compressor.py, tamp/decompressor.py
      • pip install tamp will use a python-bound C implementation optimized for speed.
    • Micropython:
      • Native Module.
        • mpy_bindings/
    • C library:
      • tamp/_c_src/
    • Javascript/Typescript via Emscripten WASM.
      • wasm/
    • Unofficial rust bindings.
      • See documentation here.
  • High compression ratios, low memory use, and fast.
  • Compact compression and decompression implementations.
    • Compiled C library is <5KB (compressor + decompressor).
  • Mid-stream flushing.
    • Allows for submission of messages while continuing to compress subsequent data.
  • Customizable dictionary for greater compression of small messages.
  • Fuzz tested with libFuzzer + AddressSanitizer/UBSan.
  • Convenient CLI interface.

Installation

Tamp contains several implementations:

  1. A reference desktop CPython implementation that is optimized for readability (and not speed).
  2. A Micropython Native Module implementation (fast).
  3. A C implementation (with python bindings) for accelerated desktop use and to be used in C projects (very fast).
  4. A JavaScript/TypeScript implementation via Emscripten WASM (see wasm/).

This section instructs how to install each implementation.

Desktop Python

The Tamp library requires Python >=3.9 and can be installed via:

pip install tamp

To also install the tamp command line tool:

pip install tamp[cli]

MicroPython

MicroPython Native Module

Tamp provides pre-compiled [native modules]{.title-ref} that are easy to install, are small, and are incredibly fast.

Download the appropriate .mpy file from the release page.

  • Match the micropython version.
  • Match the architecture to the microcontroller (e.g. armv6m for a pi pico).

Rename the file to tamp.mpy and transfer it to your board. If using Belay, tamp can be installed by adding the following to pyproject.toml.

[tool.belay.dependencies]
tamp = "https://github.com/BrianPugh/tamp/releases/download/v1.7.0/tamp-1.7.0-mpy1.23-armv6m.mpy"

C

Copy the tamp/_c_src/tamp folder into your project. For more information, see the documentation.

Usage

Tamp works on desktop python and micropython. On desktop, Tamp can be bundled with the tamp command line tool for compressing and decompressing tamp files. Install with pip install tamp[cli].

CLI

Compression

Use tamp compress to compress a file or stream. If no input file is specified, data from stdin will be read. If no output is specified, the compressed output stream will be written to stdout.

$ tamp compress --help
Usage: tamp compress [ARGS] [OPTIONS]

Compress an input file or stream.

╭─ Parameters ───────────────────────────────────────────────────────────────────────────────╮
│ INPUT,--input    -i  Input file to compress. Defaults to stdin.                            │
│ OUTPUT,--output  -o  Output compressed file. Defaults to stdout.                           │
│ --window         -w  Number of bits used to represent the dictionary window. [default: 10] │
│ --literal        -l  Number of bits used to represent a literal. [default: 8]              │
╰────────────────────────────────────────────────────────────────────────────────────────────╯

Example usage:

tamp compress enwik8 -o enwik8.tamp  # Compress a file
echo "hello world" | tamp compress | wc -c  # Compress a stream and print the compressed size.

The following options can impact compression ratios and memory usage:

  • window - 2^window plaintext bytes to look back to try and find a pattern. A larger window size will increase the chance of finding a longer pattern match, but will use more memory, increase compression time, and cause each pattern-token to take up more space. Try smaller window values if compressing highly repetitive data, or short messages.
  • literal - Number of bits used in each plaintext byte. For example, if all input data is 7-bit ASCII, then setting this to 7 will improve literal compression ratios by 11.1%. The default, 8-bits, can encode any binary data.

Decompression

Use tamp decompress to decompress a file or stream. If no input file is specified, data from stdin will be read. If no output is specified, the compressed output stream will be written to stdout.

$ tamp decompress --help
Usage: tamp decompress [ARGS] [OPTIONS]

Decompress an input file or stream.

╭─ Parameters ───────────────────────────────────────────────────────────────────────────────╮
│ INPUT,--input    -i  Input file to decompress. Defaults to stdin.                          │
│ OUTPUT,--output  -o  Output decompressed file. Defaults to stdout.                         │
╰────────────────────────────────────────────────────────────────────────────────────────────╯

Example usage:

tamp decompress enwik8.tamp -o enwik8
echo "hello world" | tamp compress | tamp decompress

Python

The python library can perform one-shot compression, as well as operate on files/streams.

import tamp

# One-shot compression
string = b"I scream, you scream, we all scream for ice cream."
compressed_data = tamp.compress(string)
reconstructed = tamp.decompress(compressed_data)
assert reconstructed == string

# Streaming compression
with tamp.open("output.tamp", "wb") as f:
    for _ in range(10):
        f.write(string)

# Streaming decompression
with tamp.open("output.tamp", "rb") as f:
    reconstructed = f.read()

Benchmark

In the following section, we compare Tamp against:

  • zlib, a python builtin gzip-compatible DEFLATE compression library.
  • heatshrink, a data compression library for embedded/real-time systems. Heatshrink has similar goals as Tamp.

All of these are LZ-based compression algorithms, and tests were performed using a 1KB (10 bit) window. Since zlib already uses significantly more memory by default, the lowest memory level (memLevel=1) was used in these benchmarks. It should be noted that higher zlib memory levels will having greater compression ratios than Tamp. Currently, there is no micropython-compatible zlib or heatshrink compression implementation, so these numbers are provided simply as a reference.

Compression Ratio

The following table shows compression algorithm performance over a variety of input data sourced from the Silesia Corpus and Enwik8. This should give a general idea of how these algorithms perform over a variety of input data types.

dataset raw tamp tamp (LazyMatching) zlib heatshrink
enwik8 100,000,000 51,016,917 50,625,930 56,205,166 56,110,394
RPI_PICO (.uf2) 667,648 289,454 290,577 303,763 -
silesia/dickens 10,192,446 5,538,353 5,502,834 6,049,169 6,155,768
silesia/mozilla 51,220,480 24,413,362 24,229,925 25,104,966 25,435,908
silesia/mr 9,970,564 4,520,091 4,391,864 4,864,734 5,442,180
silesia/nci 33,553,445 6,824,403 6,772,307 5,765,521 8,247,487
silesia/ooffice 6,152,192 3,773,003 3,755,046 4,077,277 3,994,589
silesia/osdb 10,085,684 8,466,875 8,464,328 8,625,159 8,747,527
silesia/reymont 6,627,202 2,818,554 2,788,774 2,897,661 2,910,251
silesia/samba 21,606,400 8,383,534 8,346,076 8,862,423 9,223,827
silesia/sao 7,251,944 6,136,077 6,100,061 6,506,417 6,400,926
silesia/webster 41,458,703 18,146,641 18,010,981 20,212,235 19,942,817
silesia/x-ray 8,474,240 7,509,449 7,404,794 7,351,750 8,059,723
silesia/xml 5,345,280 1,472,562 1,455,641 1,586,985 1,665,179

Tamp outperforms both heatshrink and zlib on most datasets, winning 12 out of 14 benchmarks. This is while using around 10x less memory than zlib during both compression and decompression (see next section).

Lazy Matching is a simple technique to improve compression ratios at the expense of CPU while requiring very little code. One can expect 50-75% more CPU usage for modest compression gains (around 0.5 - 2.0%). Because of this trade-off, it is disabled by default; however, in applications where we want to compress once on a powerful machine (like a desktop/server) and decompress on an embedded device, it may be worth it to spend a bit more compute. Lazy matched compressed data is the exact same format; it appears no different to the tamp decoder.

Ablation Study

The following table shows the effect of the extended and lazy_matching compression parameters across all benchmark datasets (window=10, literal=8).

dataset raw Baseline +lazy +extended +lazy +extended
enwik8 100,000,000 51,635,633 51,252,694 (−0.7%) 51,016,917 (−1.2%) 50,625,930 (−2.0%)
RPI_PICO (.uf2) 667,648 331,310 329,893 (−0.4%) 289,454 (−12.6%) 290,577 (−12.3%)
silesia/dickens 10,192,446 5,546,761 5,511,681 (−0.6%) 5,538,353 (−0.2%) 5,502,834 (−0.8%)
silesia/mozilla 51,220,480 25,121,385 24,937,036 (−0.7%) 24,413,362 (−2.8%) 24,229,925 (−3.5%)
silesia/mr 9,970,564 5,027,032 4,888,930 (−2.7%) 4,520,091 (−10.1%) 4,391,864 (−12.6%)
silesia/nci 33,553,445 8,643,610 8,645,399 (+0.0%) 6,824,403 (−21.0%) 6,772,307 (−21.6%)
silesia/ooffice 6,152,192 3,814,938 3,798,393 (−0.4%) 3,773,003 (−1.1%) 3,755,046 (−1.6%)
silesia/osdb 10,085,684 8,520,835 8,518,502 (−0.0%) 8,466,875 (−0.6%) 8,464,328 (−0.7%)
silesia/reymont 6,627,202 2,847,981 2,820,948 (−0.9%) 2,818,554 (−1.0%) 2,788,774 (−2.1%)
silesia/samba 21,606,400 9,102,594 9,061,143 (−0.5%) 8,383,534 (−7.9%) 8,346,076 (−8.3%)
silesia/sao 7,251,944 6,137,755 6,101,747 (−0.6%) 6,136,077 (−0.0%) 6,100,061 (−0.6%)
silesia/webster 41,458,703 18,694,172 18,567,618 (−0.7%) 18,146,641 (−2.9%) 18,010,981 (−3.7%)
silesia/x-ray 8,474,240 7,510,606 7,406,001 (−1.4%) 7,509,449 (−0.0%) 7,404,794 (−1.4%)
silesia/xml 5,345,280 1,681,687 1,672,827 (−0.5%) 1,472,562 (−12.4%) 1,455,641 (−13.4%)

The extended parameter enables additional Huffman codes for longer pattern matches, which significantly improves compression on datasets with many long repeating patterns (e.g., nci, samba, xml). Extended support was added in v2.0.0.

Memory Usage

The following table shows approximately how much memory each algorithm uses during compression and decompression.

Compression Decompression
Tamp (1 << windowBits) (1 << windowBits)
ZLib (1 << (windowBits + 2)) + 7KB (1 << windowBits) + 7KB
Heatshrink (1 << (windowBits + 1)) (1 << (windowBits + 1))
Deflate (micropython) (1 << windowBits) (1 << windowBits)

All libraries have a few dozen bytes of overhead in addition to the primary window buffer, but are implementation-specific and ignored for clarity here. Tamp uses significantly less memory than ZLib, and half the memory of Heatshrink.

Runtime

As a rough benchmark, here is the performance (in seconds) of these different compression algorithms on the 100MB enwik8 dataset. These tests were performed on an M3 Macbook Air.

Compression (s) Decompression (s)
Tamp (Pure Python Reference) 136.2 105.0
Tamp (C bindings) 5.45 0.544
ZLib 3.65 0.578
Heatshrink (with index) 4.42 0.67
Heatshrink (without index) 27.40 0.67

Heatshrink v0.4.1 was used in these benchmarks. When heathshrink uses an index, an additional (1 << (windowBits + 1)) bytes of memory are used, resulting in 4x more memory-usage than Tamp. Tamp could use a similar indexing to increase compression speed, but has chosen not to to focus on the primary goal of a low-memory compressor.

To give an idea of Tamp's speed on an embedded device, the following table shows compression/decompression in bytes/second of the first 100KB of enwik8 on a pi pico (rp2040) at the default 125MHz clock rate, with native-module measurements taken on MicroPython v1.26.1 firmware. The C benchmark does not use a filesystem nor dynamic memory allocation, so it represents the maximum speed Tamp can achieve. In all tests, a 1KB window (10 bit) was used.

Compression (bytes/s) Decompression (bytes/s)
Tamp (Micropython Native Module) 34,510 980,392
Tamp (C) 36,127 1,400,600
Deflate (micropython builtin) 6,885 294,985

Tamp resulted in a 50841 byte archive, while Micropython's builtin deflate resulted in a larger, 59442 byte archive.

Binary Size

To give an idea on the resulting binary sizes, Tamp and other libraries were compiled for the Pi Pico (armv6m). All libraries were compiled with -O3. Numbers reported in bytes. Tamp sizes were measured using arm-none-eabi-gcc 15.2.1 and MicroPython v1.27, and can be regenerated with make binary-size.

Compressor Decompressor Compressor + Decompressor
Tamp (MicroPython Native) 5469 4725 9125
Tamp (C, no extended, no stream) 1932 1634 3328
Tamp (C, no extended) 2214 1872 3848
Tamp (C, extended, no stream) 3120 2452 5334
Tamp (C, extended) 3402 2690 5854
Heatshrink (C) 2956 3876 6832
uzlib (C) 2355 3963 6318

Tamp C "extended" includes tamp_compressor_compress_and_flush. Tamp C includes a high-level stream API by default. Even with no stream, Tamp includes buffer-looping functions (like tamp_compressor_compress) that Heatshrink lacks (Heatshrink only provides poll/sink primitives).

Acknowledgement

  • Thanks @BitsForPeople for the esp32-optimized compressor implementation.

Download files

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

Source Distribution

tamp-2.3.0.tar.gz (83.2 kB view details)

Uploaded Source

Built Distributions

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

tamp-2.3.0-cp314-cp314-win_arm64.whl (225.3 kB view details)

Uploaded CPython 3.14Windows ARM64

tamp-2.3.0-cp314-cp314-win_amd64.whl (241.9 kB view details)

Uploaded CPython 3.14Windows x86-64

tamp-2.3.0-cp314-cp314-win32.whl (222.7 kB view details)

Uploaded CPython 3.14Windows x86

tamp-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

tamp-2.3.0-cp314-cp314-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

tamp-2.3.0-cp314-cp314-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

tamp-2.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

tamp-2.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

tamp-2.3.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

tamp-2.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

tamp-2.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

tamp-2.3.0-cp314-cp314-macosx_11_0_arm64.whl (260.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tamp-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl (262.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

tamp-2.3.0-cp313-cp313-win_arm64.whl (220.1 kB view details)

Uploaded CPython 3.13Windows ARM64

tamp-2.3.0-cp313-cp313-win_amd64.whl (237.9 kB view details)

Uploaded CPython 3.13Windows x86-64

tamp-2.3.0-cp313-cp313-win32.whl (218.2 kB view details)

Uploaded CPython 3.13Windows x86

tamp-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

tamp-2.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

tamp-2.3.0-cp313-cp313-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

tamp-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

tamp-2.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

tamp-2.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

tamp-2.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

tamp-2.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

tamp-2.3.0-cp313-cp313-macosx_11_0_arm64.whl (258.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tamp-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl (261.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

tamp-2.3.0-cp312-cp312-win_arm64.whl (221.5 kB view details)

Uploaded CPython 3.12Windows ARM64

tamp-2.3.0-cp312-cp312-win_amd64.whl (239.6 kB view details)

Uploaded CPython 3.12Windows x86-64

tamp-2.3.0-cp312-cp312-win32.whl (219.4 kB view details)

Uploaded CPython 3.12Windows x86

tamp-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

tamp-2.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

tamp-2.3.0-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

tamp-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

tamp-2.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

tamp-2.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

tamp-2.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

tamp-2.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

tamp-2.3.0-cp312-cp312-macosx_11_0_arm64.whl (260.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tamp-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl (263.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

tamp-2.3.0-cp311-cp311-win_arm64.whl (221.3 kB view details)

Uploaded CPython 3.11Windows ARM64

tamp-2.3.0-cp311-cp311-win_amd64.whl (239.3 kB view details)

Uploaded CPython 3.11Windows x86-64

tamp-2.3.0-cp311-cp311-win32.whl (218.1 kB view details)

Uploaded CPython 3.11Windows x86

tamp-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

tamp-2.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

tamp-2.3.0-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

tamp-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

tamp-2.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

tamp-2.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

tamp-2.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

tamp-2.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

tamp-2.3.0-cp311-cp311-macosx_11_0_arm64.whl (260.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tamp-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl (260.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

tamp-2.3.0-cp310-cp310-win_arm64.whl (221.6 kB view details)

Uploaded CPython 3.10Windows ARM64

tamp-2.3.0-cp310-cp310-win_amd64.whl (240.6 kB view details)

Uploaded CPython 3.10Windows x86-64

tamp-2.3.0-cp310-cp310-win32.whl (219.0 kB view details)

Uploaded CPython 3.10Windows x86

tamp-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

tamp-2.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

tamp-2.3.0-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

tamp-2.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

tamp-2.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

tamp-2.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

tamp-2.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

tamp-2.3.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

tamp-2.3.0-cp310-cp310-macosx_11_0_arm64.whl (260.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tamp-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl (261.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

tamp-2.3.0-cp39-cp39-win_arm64.whl (222.2 kB view details)

Uploaded CPython 3.9Windows ARM64

tamp-2.3.0-cp39-cp39-win_amd64.whl (241.3 kB view details)

Uploaded CPython 3.9Windows x86-64

tamp-2.3.0-cp39-cp39-win32.whl (219.5 kB view details)

Uploaded CPython 3.9Windows x86

tamp-2.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

tamp-2.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

tamp-2.3.0-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

tamp-2.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

tamp-2.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

tamp-2.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

tamp-2.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

tamp-2.3.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

tamp-2.3.0-cp39-cp39-macosx_11_0_arm64.whl (262.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

tamp-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl (262.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file tamp-2.3.0.tar.gz.

File metadata

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

File hashes

Hashes for tamp-2.3.0.tar.gz
Algorithm Hash digest
SHA256 bf5239d3c6dc552df232f9e83a102c9a69756ee77fd43d18e9e030f5b387726c
MD5 4dd87b4a283fdd752e328b23bfd3c36d
BLAKE2b-256 bc2b149bf97ee7e66ced0af1901d3d709a4e3a0e734d4d3e0d099b262217ba62

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 502a1b9923b663143c46aafa0a1d779b4af77c277119ed4d976f6b5f1b4ef296
MD5 e02c2ec21348e54c71a65961e0e86369
BLAKE2b-256 d69052dd1479689393c96e394eaae0120daca1719bd0adcb84a3054aff40e6f1

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6e75e8b6ff06c2a7cb5c33a0b7ae9bd32753b4cb75f9d3b8c2bda90f7291e7af
MD5 0cd4a51cbb7c430b90cb9a9b9af79690
BLAKE2b-256 f2d1655f2ca09152bbc65ed6d55f97efe6b974f2c34207919713984908871885

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 02e86e8c75c7d71d0271e86dba1e808eb7f2c01f99191ae9ec5234b0729201c0
MD5 6cb2c8725f677fdf956834aeb9734afa
BLAKE2b-256 08c7a4f5d23e19bf4cfdf5ecc50e610d6d2933a71afd18209d465a212d683c34

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25b396a5f15363ca804b1e52802378bf98575eab8f8f0f79d701bf75b33aa74d
MD5 dbb55d57442c7cb8d0ec55a17fb1b010
BLAKE2b-256 1c788daf856f44915e6b5afa9618859eed380c5c4314ad18abea82948a871c73

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c01dd4f0e82483c348072d2e0f49dd8e6f2235e599f72ea1752b40735e5cd0c9
MD5 4fd0d7c0ad1ba830062dba73d8f348d8
BLAKE2b-256 b5ee9ca99e8b1588ee6e74e414b37e008008abda11a5855f1c3c687724fc272c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tamp-2.3.0-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 857ddf96ddfa5e7779dd05dc10644355510ade498f7a9be4c49a02022dcfe2b1
MD5 727a2e708b993c766bb8632dd0a49df9
BLAKE2b-256 46c65a198557fe395a72d1ca396e0e8b57621b11a17d43fb9b3ebd2e56c1ecff

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8425cb4a0106758c2be09bf16ca8a66ecb8aeeb1caf8fdce0ebd231c59af1e8
MD5 bfea13477944c2bdef702b5b7ca995c2
BLAKE2b-256 8b3d410e4ba1dee53ce08b4870effb7cb339c7d80bfdfcb96155bf39de84d7f7

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44d486875e8c5f6f52209e83016e6860588062ccfd738483df6a7c85e92041c8
MD5 55c54f58e0790198529a68efc1a676b6
BLAKE2b-256 c3a6bc2d244c98fcee4a19f591a01b803a784d9a1f3d44b2c2cab5a1d681736a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 370eea683df907668c06a4e72bf8d811d1bd3629e53ca0b6df73cb4380d4f361
MD5 f63cee3a540c718d5de5a9f417a24fef
BLAKE2b-256 0db077b8fb0135f6f2eca8986be7183f701a897d9c2f18784870860a0869db9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

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

File metadata

File hashes

Hashes for tamp-2.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ac23344bcb60f78d293d35476d9a80846ee5f5ecc04ac45ee811e5500c9e033
MD5 e5c15c1af2197eef729a60ac3e8a3a97
BLAKE2b-256 eaeae17113433ba2c02ff1cfd4e90263d8fd845c01b4d3e668d80840113bad31

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 30336611f23f061b6f9ad34be3728e01d993a005d9f57cfceeae1f43b170fa6e
MD5 22d2f103868bccdc5c88605e48e9300a
BLAKE2b-256 24f9370c42a2f53a502c1c5735f56a8681266003a2398c298753ea4cc9cad06c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bed76172ff56ec74f6a66e093e7ec4cd8f27ee0e7392ca9cc729fa6ba6e35847
MD5 314f04adf20730feb4fa422b6b625acd
BLAKE2b-256 fd37b3da01ed7ba5eacf5c4438d31e24adabb49589f5634f31a8c1cf93c6bf9c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 26b7e79ec9df48a0519e47e24587bb0b719faa7ac528d56ea4d0c73b0444be32
MD5 37ff87a854dfa4fcf56457020800fd35
BLAKE2b-256 cc7f0a25c163ff1e2d5e55dd023c446499c7677aef654dfd91620709f57f92af

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 272e5c8e6f233bcb3ebf6a6c2c8434f9dcee6efb7cbda83667da70fb65297bb4
MD5 f1a0bfb291d9c8bbbc81d091a3810e5d
BLAKE2b-256 1e4fae33e612afab089ce4f12fdc4e2cdc9eaf02e6b1b68d234e900fc3cf2e0c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b1275224dd5a8133fcf001ca50594dcaffe8814472f66adc058ed5ac177be942
MD5 64db78922223869a66192463ecbd2168
BLAKE2b-256 ba7b819185fe31e4979baf8d03bbe3e5b39ff38ea811ea66c0c174d80effe680

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cbc0c4adf26fb27bb4e38293503d8fb0ffb55a2ae73f46e9ca65a00c2891f694
MD5 f8041b694335135d8029e65048e4577f
BLAKE2b-256 8c9e25dec3ed1b9aaeb04ed1372fc83560d78af811a5b14024f2be8ad94f1096

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad4b0a9bd653ed0854374a4cd2c7efc61a0a9836dcb8eeb823943805f241b055
MD5 0bb222f2688a9ded330d5e1265b38833
BLAKE2b-256 0d9e850310a1d8f9b855a2dab8874f716691bd29455fbc82eb6b54756d4f138c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 12ac829d950ebf98d6669a377a469724c1ee228ebcb23146422bf55706983f48
MD5 dd9aab7713d1757005c1d3b5506bbbfa
BLAKE2b-256 81731aefdf8b8e304147746ccb92462e3bbcf8ff44981b3a725dc059cc1b618c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tamp-2.3.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70e898a1f57a0fbc62211a82d4eed59a9e114228a0f0207b874b9f1d903173ef
MD5 12bbc54a8ac29801ae94f12f926c0202
BLAKE2b-256 d929528bada601418e4b4ff5beb91cb2f511798f40e01cd0a362aecf6c18a851

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dddfc1e28f7dfecc15d3ec7e976f96607543b1f6f14eb6b6d09e550df5ff8924
MD5 83653531b841c3e0acc8e60c75d49683
BLAKE2b-256 ea5ee9d5c09fd795455f49d04ba5bfe918ee17f611e6ebda707667abc1623471

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e74f76d18332539a989395327b76271d982590d2cfa1a679a82adcc2a61311bb
MD5 9847cdbfb2f40680ccf58b7f3fe05b3c
BLAKE2b-256 d110f917c467f1384fe2fbc426156a66e8dc4402ce82bade4814010f1f078c8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9eb25db118715aa2bedb168bc7d6d6ddff66f24105e3bfe85af40429c54fec7d
MD5 e5c4575c8a19e690eadef84af0944e7d
BLAKE2b-256 f06cedeb692f4f14156129a55e095bb29d669e4f0611a73720743e664900008c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

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

File metadata

File hashes

Hashes for tamp-2.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e620b69bf0dfa01241e689f132cc7ffd3cd119e322fbfb53e8588f6f30bb7554
MD5 662d90b800bc873354bb1aba66fa0490
BLAKE2b-256 75592662a81ccd059e196307efeac2c1134e87c02af80df9bcfa72e55f1f8b0f

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 478b4cdcf05a0786410bdde1fff9c54a6f9465b180a323d5a857e3919ba2ab83
MD5 3ceba9ec3d51de70982ca40206d11e35
BLAKE2b-256 6a8c69e3ad81a482731875ecf49809d3afcdcea3b7b9cbf33f3e64ff88e7472e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f53a742964d386983ac97934dc8afe6de5d821aa8a61c731e34a043896dc757
MD5 871eca00cdc4c4886b7d6c0097f87923
BLAKE2b-256 9e31ab5bcd2550c7038adb08611337cfc214bcab60287a47cbfea789b7be499f

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 60c0c8d613117796050e4e5ade714a67532ccd1951c1fbff5299ec8911bb4218
MD5 c210defe6c1d29dbf5e5d81b6d7a7bcc
BLAKE2b-256 86056259e5ac4e31a72fdaef0287ddbaa85c7d98ae1a829c3de296707f5e868b

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9ec2611a2e95fb7a8f999f3c072dc0c4db63f91fd18647fc66c9268937bab52d
MD5 caf1c4972ef2dfaed07efbdfc0429063
BLAKE2b-256 1002a85f71aa13a98c01369134a68cf11c938244ac218e502f3bf4c603f9edab

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1b54ce2f68a6454abb142e23e50eab3ae0f60788c167caf28d3940033d017d37
MD5 c3ed2413bb27b43fa4ebd0d90e5ca58c
BLAKE2b-256 db0554eeee97edbf888fbf33e8d0b0544bc217ace5585718ee3fd7d199ece5ab

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7aca43153dbac37896bc2ec1fe0d5f574a8f98dc07420323cbc7c2eb04c85c84
MD5 c940e57f0d5d6b0d7b76f4a35e2a0ce9
BLAKE2b-256 4971718f16022b513737ca0cf3892b20737f6dd62f831158b8f55780dd201726

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f14c66e0aa7ccdc881baf6c0808d89cfc099fe645f19d0c560f38b7daaf8822d
MD5 70aee48c54489e10db3799ec91b48937
BLAKE2b-256 eed39f01e96f01076900a90ca1d9dac2a3acefb2d1ad48fb27753c1f54014f95

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 61cfd417b498229c991cff5c94efa153e0818461d8af0774d01356e6233fb6af
MD5 ecd0b200906aa7808aa4af0dde896c97
BLAKE2b-256 015e202670ea26f626ccbd7c2cd29a3db6482d2c04462e92ec5d46821c39fbc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tamp-2.3.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb35d05f78cc0cb738b55681dfb718af45b2d3db6fe036e874019ced7beecf10
MD5 a2b91209670a6aa60e787e43c7ab2296
BLAKE2b-256 026706ad40d50b580ae938448bdbfd61ffe3d8aee2bdc098709a320d63e2cf98

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1d0140925d10f4f0542eb46da1632a31dd4fb8420b4cfd1a5dab3aa6a041e2c
MD5 803003061021386691b49ce5a2ab3938
BLAKE2b-256 56b4cfd44f13bc902a476c02851f7042df369576b4e18c5d26916f62261dc35c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a27f3b7da5d6c02008cb927746ed8f509b75cc1b7178d39a2fccb923bc6a93b2
MD5 a82059bba263684f38c9810fb31f3e55
BLAKE2b-256 12578cbebaf91e62a846993edee96af4a1037abd7ab9405801a0e6ebb8765c9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e20e7dc855d981393d327ec6d2f8df4e9f32ae7568982be1c3c245740b40da0f
MD5 16b1635b514620ff9fdcc96010df5f47
BLAKE2b-256 d09c1477dfbee331779ce9970ea50e45e359aff59590e7e6202d6f5abb5e3660

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

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

File metadata

File hashes

Hashes for tamp-2.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea759778178f9ae1c232e57e202cfbec48eaa6ce93afba0a5d80843d9254caaa
MD5 98bab994c8c7f00972f86a4f3237af16
BLAKE2b-256 0d14814e1aa62446ecbe75de0baaef336b3f0447b03823d80ccaafbf84bcd0c9

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3c3c9387f1ec7d7e92c92a4eee8a6f52e1d60f610b90a4972192d584e9655478
MD5 d8056f692df4e66213b112af0b2c0c86
BLAKE2b-256 2a5d7c03c7fa2232cd6be510f0616ebcdbc6e60ce597391bfe8b70b8941f5c44

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd1a3c0f267dda4b03c40aece0e32b7e5acae57b79de954018f9c4dad9275319
MD5 1d8b5e78907f504a878a21250c985dac
BLAKE2b-256 b7b8692b853f8d6e003212bdcf2b43d77c355cf045850f932c4eab33cf6db2ab

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 36b34cac939528e29fbfd72ad1c96ed1836129a605012c5bd08cea0161db8a01
MD5 d2271ee41978e17bb97eb4e600808de3
BLAKE2b-256 48b20a8edacab8b5a31efa341943ebf91257af253bb120cb4cb40c95f7f779ce

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9f3aaad0d1cff9afdc359e1abc621c654830ea6e1b5907edaa221ee923984a59
MD5 f4775b82d39720a14453025c2e9bc08e
BLAKE2b-256 22e37baf37303e80808440cc47df1963e4a0a0e71c5b73cd769d4f6dbfba8f58

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 36db9ba7886cdb12c79bbc3726763af40c3b4d54739a31df5e4fde08127416fb
MD5 d00bdeefd8f34052a24c6460782a265c
BLAKE2b-256 ab7aa8edc424d2b4874b6d664ae48b6c61d44f55a96331aa4f007b024bf0b02f

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2ac573e6563f86e876a0822e040b9b3e41e3ad94f31bd1aa53ab2b017a5431e9
MD5 4f0eedf90bc2a866e9aacbd0a8a76b7b
BLAKE2b-256 cf6294ebe7deaad5dc108327a77dfc805f810a3fed643b724b3d2ecf82474b49

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de6480b0eac1dc2b1d85c2fe326eab7146797b1a7800c3df7194d9c0a7f13eb1
MD5 1232607163573dd633479ea63e36c599
BLAKE2b-256 928583f1a4c45c905a608467fdf02c0a948446a6a2126713308d6fc25dee85ec

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 efbc14513b9d8217a55b43980a0c40ca02a6ad4b8add793ca9a850e86224927f
MD5 fb11a94f215f4e77a968fe0fc337e16b
BLAKE2b-256 a8cdbfb03390197409cd9df832c68e890757e5eeb8f2b510f50c31825862a4fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tamp-2.3.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea8aef993c95e85314d072ac277297a8356fd5869a390831869280288744f89d
MD5 d79d65fe96ba27d79434589412a6c5a8
BLAKE2b-256 4e2dbd1d5b3d6634d45719c92827b0f99301b9e800475918dd31d61b90e0839f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d715f4a1616b91e413747c96d111dbd32b08219759c041299c5f64112c3ff186
MD5 bc3612e56a339d7575d6bf85cbc00652
BLAKE2b-256 d5702981d6f7bfc1c004f0d280af899e19ae785dca5f41fafe66431c00d7b8c2

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8546ac4cb072aa1c08ac3e70bce277264e20e55d61bef71f9e5fa7d0d8efdb7
MD5 73b234cce908c9414de3aee416121ea3
BLAKE2b-256 f99806f6e2b642e454a07f85e2d6be92b6ba72ed32336519abd7b676f94fc004

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 86d480bffd4b8e033744cd7018dec21b4ab3b3e8a5ed635f3fe3c0bc4730569a
MD5 d92664213f5104dc03adb820ebaa946a
BLAKE2b-256 47822a79ddacf74f8decd648c6a3dfb1d33941c6c3b768dbb1c60b4134b0f6c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

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

File metadata

File hashes

Hashes for tamp-2.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 155af9f827c594518f91bb57fbcf6a56438d7c86911f3a410923d7c59ba715b4
MD5 652fde3c1696037dce121b1ce35c4b88
BLAKE2b-256 f849fbbe0457c2461c62d1433783b1a4e141a349d7651752468b5a386e144ec6

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 52513255117db97100edd53f9c87b4457aad8a2ba254c70f141f99c13660445f
MD5 29a9918ef2ac202b21e26f845dff0c3c
BLAKE2b-256 29667b42c721055371510853d1e14d9735ad71dfafdf10837d6504b92b45163e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b8228029382a14736159388ac834d23beadda6283d28959cbf3578bc02b4ca2
MD5 5b283c50e629bd205802d2a1997d485a
BLAKE2b-256 9e002055fef2cccb96409a0bde884d7d34c8f4534b90f1176cc873a580725e1c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83afdc18d4db5057c54ef78d3e1f10dfde8577dd750eb8e14fdbebc087cb8334
MD5 6db2d5278ca919c0fc3ccd607ffb060b
BLAKE2b-256 2b3d5a9ce90bb03e1546767350ec3b75e769122b7193cd915f031441b8f1a55d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7f76e0613d0ed80e57107003cd0174b98149d60f06e75ad7f1a3741550c28be2
MD5 fae99631e8830e0e9f124fb5556a3a24
BLAKE2b-256 d0779d1e9d5164bbda2c95ad450731cedf17ab2d93268212826375b64a277726

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8460d91bbae09737109e9de928f19a39760bdf78a1a5e61a574afb2f306f53c9
MD5 cc9acf113c5dea069d1fdff161631193
BLAKE2b-256 1b130862583538276e7e2825ecba41508279243b699a9a0c918121f84bd54c62

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c7b8e27c7b0d92aa41f0ee968fb09785068a35f6b74cff230edb4fef11a3c947
MD5 4e87eb35e61792178c594ebe566ffaa8
BLAKE2b-256 f4556d8c4fe3c20c04ec5f450fb3565da8d04ebbbbace4513995361a40362236

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10be3c414c392b28f9a2a1a8825761374b31dc2f158cbca18f0d1f8d48749ef8
MD5 9eff40aafb39e73b824c4de53e5071c2
BLAKE2b-256 5b66bfcdf3e86c0b1ea632e805f959c4e012c5e681c006af20d25aec5a338187

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9e56886a969aacd999eed1c35f0d4920e6f7d1c4ab94352233955f49f80bc3ab
MD5 113ea44aa0f943f148a3c453a29ffc91
BLAKE2b-256 4aac65af47498ff927a8e59ed2d8fb5fd67ec1bbddcc91ea94428b7e7ac2f42f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tamp-2.3.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a444798f65326d2655f34b3b516a5a2b2431cfda61ac9e6b365599c89a26c5e6
MD5 cfdc19f6f185911c14a5ff2d59c81d7e
BLAKE2b-256 0003aa88cab6f945a29fb7d632ca6db060f265f5eb53801321489a1410e399bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16ce8acf69c73696c23693e1e702b5033f5a9fea22be1a9e56e2ea3fc4635bcf
MD5 210e627c3bd4ed9c03aab98f454b98d0
BLAKE2b-256 640880eb965f121df3ecfd6b3e4f5b84dd612e9b69829dbd5fa96ef93025c0c8

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3aebd39cee8a3fab6af636cd280958de12391698eb71412a7092674d97eb551
MD5 384cf1559712b18b96e3b440a74e6db4
BLAKE2b-256 5ae9af2d604a82a8516a080f4afba669c323b5e18995a5eb2a045300f629a584

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 21deecefd7d9448f1b272d72ee43a0a3f1c84fe4c034b56ac18f54105aca2816
MD5 bc09c196b24dddffa0a80106eb115145
BLAKE2b-256 6d77f88155847d533723f6ba264fd5ac65bbe1a64cd8da5fd126e405a0b92bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

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

File metadata

File hashes

Hashes for tamp-2.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ccc3a4b815b34967625f5ac682f968477cc374dd8b257aab5d1c55c7fbded0cf
MD5 02d30ddcdcd64b629d477eb381a6eea7
BLAKE2b-256 e7b95d452510312c13fdc072d59c864d93855b4fbbe59a6607fb4be4006e10b0

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3f02e54ca70cf5708fd7312b7b3fb02a33d79eb3d55b50a68e14756e3875b639
MD5 695a1b0aac88a18c338395b6a21493d1
BLAKE2b-256 bbdabe5e8d479e4b9f83f763c8e61c10336164fb3681a449916945a9392d9a2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1adf3e4080ce23d6d9f3ab58581dcb6170bb20f10f95488c35b861999799ebe
MD5 12329fef24f9d328f92b7bfdae339a22
BLAKE2b-256 270aded65ec192bd594793bf346bfa598b8af0f646cfbe10724b0bea16eb0f2d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da27c99b7557f9db536f73c41d19b3360afa94435f23def1a8c67e3b6cca0b9b
MD5 adf2754a6e3651566dce7fdc06bd4465
BLAKE2b-256 83f1278ec45e8714839c59698e3b9869749efc7385689816772b0cf090990fb6

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp39-cp39-win_arm64.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4fe5f7e4497a1bbb6a3a46062516f97ef99f01cc978a07cf4ccea4b0837e35d6
MD5 437a39bc371307bb1b782be0a1fb5dbb
BLAKE2b-256 bf5210cb83a8c733a2a30d15f809ac384496ccccb8ad02829b31de5630a859eb

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4b01ab00e53abb1fc26374fdd0af5980e8f0763e3d899c656edf46bb8ec44056
MD5 2727e2c4388cd9c8f5530d3cb49468ed
BLAKE2b-256 ab61ebad14b83dccad9210e370f146bd23c22de41cff5563150861fa6c971738

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for tamp-2.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d4d388d5e8cc8eda0a3272fc9358dc97b64be778a483fd43ca5938c4a7a1a1be
MD5 df1ebcfd172ab70cabd698eae35d4c70
BLAKE2b-256 d808c71731113cbf9a0f9ce66c46cb3deee6dc82ac7279c8379796a33442b9b2

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tamp-2.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e365c9e0325c0196a191beca2b6b809de4e7a04267c9d3958ba1cfc4cb71ab4
MD5 3ab6828396af85a31a51141ff451f385
BLAKE2b-256 0449a0d4d8837a52c1bb08281ce3262d5571fcf7a9cf53658cdfc454f89a3b32

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2f9b1928a5eb457fe98e3b2558e13f087a117307190edf3f45572696c3ab971e
MD5 7a6673fcfa349af73b54e6c82c0bec00
BLAKE2b-256 07978514c5452f1a2afea7405bda3f9c377e8bee3e8144fdb4968e3531817a8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tamp-2.3.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6425690727ce2bd121c36f29e043b09fd36f533fd7548d850cc5b327e605db39
MD5 a6a566ce7b3b60f1d14df96d381ddaf2
BLAKE2b-256 a3729b60cf5e8d420a540c80cf7164c7b3e2ec5685f9842a9665ec917d878929

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92650cb77abca05d08672091855e63a9db647ca6f0dba623808e0de3e74ebe93
MD5 643e19a05404a07bf330631526e7cbad
BLAKE2b-256 2ddf269ede0c8856f9e5e0d465b6acbe7c5ecd691412595977625cea14072173

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7040f21ef77c3fc15ddcf3bb2545b2bb63d4d5a5d6b8564cf36203987a6c1f05
MD5 a4f1e1e41d31b077950a31fe0e3ed651
BLAKE2b-256 87525a993b5555d8d776c4bec802517ce5a81d6f1ccd30b0477daadc3c159c72

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 45c3646786ef1d33897970297ee24f62500030d0948b5f86c1d092b2394ed50a
MD5 309d6f85266f2a007a3591c03fcb615d
BLAKE2b-256 5f225962df29908db9961d8a679cd7aaaafec821f6ebbac29729fafb7a382015

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

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

File metadata

File hashes

Hashes for tamp-2.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1026404e16f10ba8edc113ea3886ecba3596798a800724c27ea10a46e2356509
MD5 5fe4c8d56d6dd3cba4415a150bb3fcc1
BLAKE2b-256 fdad5ea1503da4a3916d40e77702861139405027348d275cb02e6d67992398e7

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tamp-2.3.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b572ef7a33418a3f47e1414b6f2fbb312f6653555c8c5f7fe9ce63a43b5709dc
MD5 a8da35b12561db9aa69734ca1b0f79e9
BLAKE2b-256 7d8f7f396a31a933181396eec23d0833a976f866d237c1eb8847a6d5a96c933b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tamp-2.3.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 262.1 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58a32a33cf7271b8f28a122fc09cd37581d66d9aaf0fbca2ca4b39ed7fd6d2e6
MD5 ddc4f6128d0795624314555ebd9488de
BLAKE2b-256 065d3306ec84233a824e918f00211f51b7da6199de71490706552bc6be727805

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: tamp-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 262.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aef3dd16843c906b671503fecdd5665363df99b41c13c4556c92198eb8c06889
MD5 fc8839c84cb09e8599792a1af119cd28
BLAKE2b-256 955f9d69f5c0e6d462ff98073ddb38eb51a09bb75b39a37b7203b0285a771afd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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.3.0 This release

79 files

2.2.4

79 files

2.2.3

79 files

2.2.2

79 files

2.2.1

79 files

2.2.0

79 files

2.1.0

79 files

2.0.0

79 files

1.11.1

79 files

1.11.0

79 files

1.10.4

79 files

1.10.3

79 files

1.10.2

61 files

1.10.1

61 files

1.10.0

61 files

1.9.0

61 files

1.8.1

61 files

1.8.0

61 files

1.7.0

61 files

1.6.0

61 files

1.5.0

61 files

1.4.1

61 files

1.4.0

61 files

1.3.1

61 files

1.3.0

61 files

1.2.0

61 files

1.1.6

49 files

1.1.5

49 files

1.1.4

49 files

1.1.3

49 files

1.1.2

49 files

1.1.1

49 files

1.1.0

48 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

0.0.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page