Skip to main content

Modern datetime library for Python

Project description

⏰ Whenever

Typed and DST-safe datetimes for Python, available in Rust or pure Python.

Do you cross your fingers every time you work with Python's datetime—hoping that you didn't mix naive and aware? or that you avoided its other pitfalls? There’s no way to be sure...

✨ Until now! ✨

Whenever helps you write correct and type checked datetime code, using well-established concepts from modern libraries in other languages. It's also way faster than other third-party libraries, and usually the standard library as well. Don't buy the Rust hype?—don't worry: a pure Python version is available as well.

Shows a bar chart with benchmark results.

Parse, normalize, compare to now, shift, change timezone, and format (1M times)

⚠️ Note: Holding off on 1.0 a little longer so we can get the API just right for the long term—feedback (especially on durations) is still very welcome. Leave a ⭐️ on GitHub if you'd like to see how this project develops!

Why not the standard library?

Over 20+ years, Python's datetime has grown out of step with what you'd expect from a modern datetime library. Two points stand out:

  1. It doesn't always account for Daylight Saving Time (DST). Here is a simple example:

    bedtime = datetime(2023, 3, 25, 22, tzinfo=ZoneInfo("Europe/Paris"))
    full_rest = bedtime + timedelta(hours=8)
    # It returns 6am, but should be 7am—because we skipped an hour due to DST!
    

    Note this isn't a bug, but a design decision that DST is only considered when calculations involve two timezones. If you think this is surprising, you are not alone.

  2. Typing can't distinguish between naive and aware datetimes. Your code probably only works with one or the other, but there's no way to enforce this in the type system!

    # Does this expect naive or aware? Can't tell!
    def schedule_meeting(at: datetime) -> None: ...
    

Why not other libraries?

There are two other popular third-party libraries, but they don't (fully) address these issues. Here's how they compare to whenever and the standard library:

Whenever datetime Arrow Pendulum
DST-safe ⚠️
Typed aware/naive
Fast

Arrow is probably the most historically popular 3rd party datetime library. It attempts to provide a more "friendly" API than the standard library, but doesn't address the core issues: it keeps the same footguns, and its decision to reduce the number of types to just one (arrow.Arrow) means that it's even harder for typecheckers to catch mistakes.

Pendulum arrived on the scene in 2016, promising better DST-handling, as well as improved performance. However, it only fixes some DST-related pitfalls, and its performance has significantly degraded over time. Additionally, it's in a long maintenance slump with only two releases in the last four years, while many serious and long-standing issues remain unaddressed.

Why use whenever?

  • 🌐 DST-safe arithmetic
  • 🛡️ Typesafe API prevents common bugs
  • ✅ Fixes issues arrow/pendulum don't
  • ⚖️ Based on proven and familiar concepts
  • ⚡️ Unmatched performance
  • 💎 Thoroughly tested and documented
  • 📆 Support for date arithmetic
  • ⏱️ Nanosecond precision
  • 🗄️ SQLAlchemy support
  • 🪃 Pydantic support (beta)
  • 🦀 Rust!—but with a pure-Python option
  • 🧵 Free-threading support (beta)
  • 🚀 Supports per-interpreter GIL

Quickstart

>>> from whenever import (
...    # Explicit types for different use cases
...    Instant,
...    ZonedDateTime,
...    PlainDateTime,
... )

# Identify moments in time, without timezone/calendar complexity
>>> now = Instant.now()
Instant("2024-07-04 10:36:56Z")

# Simple, explicit conversions
>>> now.to_tz("Europe/Paris")
ZonedDateTime("2024-07-04 12:36:56+02:00[Europe/Paris]")

# A 'naive' datetime can't accidentally mix with other types.
# You need to explicitly convert it and handle ambiguity.
>>> party_invite = PlainDateTime("2023-10-28 22:00")
>>> party_invite.add(hours=6)
  NaiveArithmeticWarning: Adjusting a local time ignores DST [...]
PlainDateTime("2023-10-29 04:00")
>>> party_starts = party_invite.assume_tz("Europe/Amsterdam")
ZonedDateTime("2023-10-28 22:00:00+02:00[Europe/Amsterdam]")

# DST-safe arithmetic
>>> party_starts.add(hours=6)
ZonedDateTime("2023-10-29 03:00:00+01:00[Europe/Amsterdam]")

# Comparison and equality
>>> now > party_starts
True

# Rounding and truncation
>>> now.round("minute", increment=15)
Instant("2024-07-04 10:30:00Z")

# Formatting & parsing common formats (ISO8601, RFC3339, RFC2822)
>>> now.format_rfc2822()
"Thu, 04 Jul 2024 10:36:56 GMT"
# Custom pattern formatting and parsing
>>> party_starts.format("MMM DD, hh:mm zz")
"Oct 28, 22:00 CEST"

# If you must: you can convert to/from the standard lib
>>> now.to_stdlib()
datetime.datetime(2024, 7, 4, 10, 36, 56, tzinfo=datetime.timezone.utc)

Read more in the feature overview or API reference.

Limitations

  • Supports the proleptic Gregorian calendar between 1 and 9999 AD
  • Timezone offsets are limited to whole seconds (consistent with IANA TZ DB)

Stability policy

Whenever follows semantic versioning. Until the 1.0 version, the API may change with minor releases. Breaking changes will be meticulously explained in the changelog. Since the API is fully typed, your typechecker and/or IDE will help you adjust to any API changes.

License

Whenever is licensed under the MIT License. The binary wheels contain Rust dependencies which are licensed under similarly permissive licenses (MIT, Apache-2.0, and others). For more details, see the licenses included in the distribution.

Acknowledgements

Whenever draws from decades of datetime library design across multiple languages:

  • Noda Time and Joda Time pioneered the concept-per-type approach that makes whenever possible. Noda Time's type hierarchy directly inspired whenever's design.

  • Temporal (JavaScript proposal) provided inspiration for handling complex cases around DST ambiguity and rounding. After years of TC39 design work, Temporal's API is extraordinarily thorough. Whenever benefits from those hard-won insights.

  • Python's datetime module is used extensively in whenever's pure-Python implementation for low-level date/time handling.

  • Whenever also borrows a few nifty ideas from Jiff: A modern datetime library in Rust which takes inspiration from Temporal.

  • The benchmark comparison graph is adapted from the Ruff project.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

whenever-0.10.4b0.tar.gz (437.5 kB view details)

Uploaded Source

Built Distributions

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

whenever-0.10.4b0-py3-none-any.whl (129.3 kB view details)

Uploaded Python 3

whenever-0.10.4b0-cp314-cp314t-win_amd64.whl (544.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

whenever-0.10.4b0-cp314-cp314t-win32.whl (580.4 kB view details)

Uploaded CPython 3.14tWindows x86

whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_x86_64.whl (815.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_i686.whl (900.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_armv7l.whl (957.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_aarch64.whl (765.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (602.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (640.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (625.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (681.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (588.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

whenever-0.10.4b0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (689.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

whenever-0.10.4b0-cp314-cp314t-macosx_11_0_arm64.whl (573.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

whenever-0.10.4b0-cp314-cp314t-macosx_10_12_x86_64.whl (589.8 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

whenever-0.10.4b0-cp314-cp314-win_amd64.whl (544.9 kB view details)

Uploaded CPython 3.14Windows x86-64

whenever-0.10.4b0-cp314-cp314-win32.whl (580.3 kB view details)

Uploaded CPython 3.14Windows x86

whenever-0.10.4b0-cp314-cp314-musllinux_1_2_x86_64.whl (815.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

whenever-0.10.4b0-cp314-cp314-musllinux_1_2_i686.whl (900.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

whenever-0.10.4b0-cp314-cp314-musllinux_1_2_armv7l.whl (957.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

whenever-0.10.4b0-cp314-cp314-musllinux_1_2_aarch64.whl (764.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

whenever-0.10.4b0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (603.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

whenever-0.10.4b0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (641.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

whenever-0.10.4b0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (625.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

whenever-0.10.4b0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (681.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

whenever-0.10.4b0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (587.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

whenever-0.10.4b0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (689.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

whenever-0.10.4b0-cp314-cp314-macosx_11_0_arm64.whl (571.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

whenever-0.10.4b0-cp314-cp314-macosx_10_12_x86_64.whl (588.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

whenever-0.10.4b0-cp313-cp313-win_amd64.whl (542.6 kB view details)

Uploaded CPython 3.13Windows x86-64

whenever-0.10.4b0-cp313-cp313-win32.whl (580.9 kB view details)

Uploaded CPython 3.13Windows x86

whenever-0.10.4b0-cp313-cp313-musllinux_1_2_x86_64.whl (812.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

whenever-0.10.4b0-cp313-cp313-musllinux_1_2_i686.whl (900.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

whenever-0.10.4b0-cp313-cp313-musllinux_1_2_armv7l.whl (956.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

whenever-0.10.4b0-cp313-cp313-musllinux_1_2_aarch64.whl (763.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

whenever-0.10.4b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (600.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

whenever-0.10.4b0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (639.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

whenever-0.10.4b0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (624.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

whenever-0.10.4b0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (679.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

whenever-0.10.4b0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (586.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

whenever-0.10.4b0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (689.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

whenever-0.10.4b0-cp313-cp313-macosx_11_0_arm64.whl (569.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

whenever-0.10.4b0-cp313-cp313-macosx_10_12_x86_64.whl (586.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

whenever-0.10.4b0-cp312-cp312-win_amd64.whl (543.0 kB view details)

Uploaded CPython 3.12Windows x86-64

whenever-0.10.4b0-cp312-cp312-win32.whl (580.5 kB view details)

Uploaded CPython 3.12Windows x86

whenever-0.10.4b0-cp312-cp312-musllinux_1_2_x86_64.whl (812.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

whenever-0.10.4b0-cp312-cp312-musllinux_1_2_i686.whl (899.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

whenever-0.10.4b0-cp312-cp312-musllinux_1_2_armv7l.whl (956.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

whenever-0.10.4b0-cp312-cp312-musllinux_1_2_aarch64.whl (763.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

whenever-0.10.4b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (600.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

whenever-0.10.4b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (639.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

whenever-0.10.4b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (624.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

whenever-0.10.4b0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (679.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

whenever-0.10.4b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (586.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

whenever-0.10.4b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (689.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

whenever-0.10.4b0-cp312-cp312-macosx_11_0_arm64.whl (569.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

whenever-0.10.4b0-cp312-cp312-macosx_10_12_x86_64.whl (585.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

whenever-0.10.4b0-cp311-cp311-win_amd64.whl (543.7 kB view details)

Uploaded CPython 3.11Windows x86-64

whenever-0.10.4b0-cp311-cp311-win32.whl (582.0 kB view details)

Uploaded CPython 3.11Windows x86

whenever-0.10.4b0-cp311-cp311-musllinux_1_2_x86_64.whl (813.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

whenever-0.10.4b0-cp311-cp311-musllinux_1_2_i686.whl (901.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

whenever-0.10.4b0-cp311-cp311-musllinux_1_2_armv7l.whl (954.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

whenever-0.10.4b0-cp311-cp311-musllinux_1_2_aarch64.whl (765.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

whenever-0.10.4b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (601.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

whenever-0.10.4b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (639.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

whenever-0.10.4b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (622.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

whenever-0.10.4b0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (678.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

whenever-0.10.4b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (588.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

whenever-0.10.4b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (689.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

whenever-0.10.4b0-cp311-cp311-macosx_11_0_arm64.whl (571.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

whenever-0.10.4b0-cp311-cp311-macosx_10_12_x86_64.whl (587.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

whenever-0.10.4b0-cp310-cp310-win_amd64.whl (545.3 kB view details)

Uploaded CPython 3.10Windows x86-64

whenever-0.10.4b0-cp310-cp310-win32.whl (583.4 kB view details)

Uploaded CPython 3.10Windows x86

whenever-0.10.4b0-cp310-cp310-musllinux_1_2_x86_64.whl (814.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

whenever-0.10.4b0-cp310-cp310-musllinux_1_2_i686.whl (902.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

whenever-0.10.4b0-cp310-cp310-musllinux_1_2_armv7l.whl (955.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

whenever-0.10.4b0-cp310-cp310-musllinux_1_2_aarch64.whl (766.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

whenever-0.10.4b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (602.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

whenever-0.10.4b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (640.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.10.4b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (623.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

whenever-0.10.4b0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (679.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

whenever-0.10.4b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (589.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

whenever-0.10.4b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (690.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

whenever-0.10.4b0-cp310-cp310-macosx_11_0_arm64.whl (572.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

whenever-0.10.4b0-cp310-cp310-macosx_10_12_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file whenever-0.10.4b0.tar.gz.

File metadata

  • Download URL: whenever-0.10.4b0.tar.gz
  • Upload date:
  • Size: 437.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.4b0.tar.gz
Algorithm Hash digest
SHA256 fc54fcfeef694470d50d68b201a928af70e0f2a032fbb4509b0ab9fba192ab63
MD5 c6fd60f983a43d7e1f258e870ee9c4cc
BLAKE2b-256 cc1eea4c87a97dcb798629d16092b436a564db86422f1e6ef7eb518431c0fb76

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0.tar.gz:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-py3-none-any.whl.

File metadata

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

File hashes

Hashes for whenever-0.10.4b0-py3-none-any.whl
Algorithm Hash digest
SHA256 3ff2a151603d9abf1315eede57f1c07d5d81ddc779cc26816b67cfa4fb68c671
MD5 5541d3eecba509c14ac4d5d34c59c024
BLAKE2b-256 1bebc9d5c42871af3bbb62749ef23a4e721e9e25f52474c46fb8d5214e33dfe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-py3-none-any.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2a0748dc434fc9c33489258ff27f813b75b44c9147b325545942fe5863a3beec
MD5 f58a4aa16198490bfa918c72836b245b
BLAKE2b-256 5e5e5c665fbf788dc9177d110f6b6ba3cf89967b0c4af735451f38ca1a9ef497

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: whenever-0.10.4b0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 580.4 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 whenever-0.10.4b0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 dc0701a7829888b7c047dafcb5394592f2758da95073a29fb85b2c319fa8f6ac
MD5 aa77b0e8fae5ddf99936be11e9fcdec6
BLAKE2b-256 03909b637732e56555fe5ff96233d76c76a221efdca8396859cd17f48cb025ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-win32.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdaf01b062ee34ffcb504323a023b8f79752c6a2221f1a40170e77be3a3574f1
MD5 907b2ad67b504a301c6ebc41a8cbcce3
BLAKE2b-256 9538c0329a928c6c263ee709bf107f28ba862559e1890ad60cacf32a2a99bfb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e091536eb8eecc591a3f7d542f4c4abfa88983a6f4ddc6c2e900ff6a9da5b64
MD5 a2140f3c3de324757e5886e353c756b6
BLAKE2b-256 1078bb52e586435b63ec0bd7f696a67289c057d8c1265eb379e7341c8f9667b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 20228c9c296c9a30fb9a0772f41612dd78f3955369277d6012b31c0a9a8f7c85
MD5 70eb990e29a131c26dbf219bfe2fde52
BLAKE2b-256 32af41d153021657c72881fd7736ba6318d3086c620fb5152c6ae3f90d7fc109

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7ef213038c172a7f4794aa8b675e4db7d0440b99353613551132887c5d56939
MD5 97c64134210ea6b5a7954a932fd37e0f
BLAKE2b-256 80c3fee69c0fa730e84c01d30f670e688d6f84e3ed81b9b0838848155bb1709b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83b560d25583ca7c2a3be5e7c60dba6443ffc976a8f1bfd8c67500fde6070f23
MD5 91ef261c69bffbcd906de65fd49bcfd0
BLAKE2b-256 aaa225c59c1643930b70fa09cb2adafdd6e36028f6f2a670f52c952b994a85f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80979d9891f4a2ee2ab32cb97a4063ce54d856815d29f9a62725df6a034fad9f
MD5 3fb2a595f91da0e49980460dce768020
BLAKE2b-256 4accdc35b67f2dda212dcd65c70a34f0210270830fe720611541b0a305e9e840

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c95645303d60fb20cf1c35507d1ea9dbf6cc55946288e513aefe42eaabff6d6
MD5 402c9a6bae09c022e8d809244838a6af
BLAKE2b-256 a810bb1850232f47b55bad5dcb868ebb30b2229c0026cec7e156a4c1f5bf8d25

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9966016c96abd4fb13d8cb625b1db8076031c95103de83a620d3218c8ef782da
MD5 d01d0599d99b030c637d8b6f7e7bbd25
BLAKE2b-256 6bafd352bbb6c2b2746fd62dda00e1fec3e7a0129704069c9eab0b27ec704f12

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d96fe606a8baed5aee9b1199e23bb5e6f4defc1ea4dd643a56086cb3429cca8e
MD5 62245e1dda4a8174fa047f7c0fe83eb4
BLAKE2b-256 76e73b7ee10b9e7f40a8daed4455702d11c347e7400b22c8fcf6999cab86144f

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a0b1984c358d7fbbb83ec8d63ee0a205dcf2c5463c6d12db43b8cc099c2264f
MD5 8fd79977bbd97394a7e740cc92efdb97
BLAKE2b-256 64cbad7b42b1724d29ff1ca7dff2598c31fa3251fc41051def424095e413eb3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e0016f3a8709d840f1055994f24a5e7aced2700967cf390dcc6e5fad8464ddc
MD5 49aac913c83248c52850c8c65ee68887
BLAKE2b-256 2f0429ab6688252f0aa6afce7924bdd12e40a5f11e58c726f537b07e53e1dd50

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2b776fc79d316163f9cca2cd097cc3c680500ca1cbbccb216d6bb5191da7d3e
MD5 4de9432aa7dd7d89d7f9940a109c2d3a
BLAKE2b-256 2eac2c57d99d8a9d97efb9ab12ad2eb18c8244aabde233fd658929cdf4f3d1ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: whenever-0.10.4b0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 544.9 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 whenever-0.10.4b0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e2d20ae89339a56b9a43339f9687ae6385b6d12c174e30db1e72a6bd297d4e87
MD5 67fab215b769ad07aa0845f70322f478
BLAKE2b-256 3ca333a422a68b566de6941e9fc1312b8585d2af94061d0c3ff11c9ea5fecd84

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-win32.whl.

File metadata

  • Download URL: whenever-0.10.4b0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 580.3 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 whenever-0.10.4b0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 54e31737eca79b99688f7e5066c1898c6dece3c0f76d1711bce1c0f46f38c09a
MD5 ec1e78a288b9e5d790c09dcee3e1ed6f
BLAKE2b-256 8e9fe3bace1079354acbd1dd48e650c6c4449a4c0d6876db299996b964261a2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-win32.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f1e031e1c0de1da766f6dbf920d078dd3eb4230a0b850cfc669e39d66ddd404
MD5 22715bd2c61a976d7f9c393e686a8fa4
BLAKE2b-256 ee1ed4be83f2f3a1a580c0c61de94b5c97b18b557b84d78701c6d98bdfe97ff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c2070674a46975ec81bd29c91692f4fe41d46bd4a311fffd3391b6d87b5ad42
MD5 b5acbc642d8739ad8a05371ea73e88fa
BLAKE2b-256 f4cec7deb367d57cfa3fd01ce1fd28e533385cdc26263b5982f5ff69e39b27a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0fe3cbef2772098bcc5586f4187484abc57b00cc6c819db05595cf530ab9cbf4
MD5 b39f0f2cf0560d52bb8b6391695b17de
BLAKE2b-256 52c82cab6f825d02e701def96de788d191d1af32cac115e7ea79d9dfe6b091fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a6c58abef6603365ce8db277d1b94a60128058bf0f656c5ee011b324a699322
MD5 25fdaa04d4fd3442b7d13f5c516d12ef
BLAKE2b-256 fb949817c57202d8c67cba80ec6d9c6b1ccfc44a0d97f70525a59e6764618321

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9e1ae90ecd76612aa0a64bb2c1cfec3a2d2e3fbd2fa2209dd41e74e7a8241b1
MD5 a16430a445eb6f2e0f6c2152a10cb1d2
BLAKE2b-256 a87c00e0ad5ceea48efdc986827c6af04a170ed46c2d48ae942bcb6feeafaeeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a43252bb357b1fe1e385ee58c35506da008d727d0f1d7932b6dec1c5be8dd60
MD5 d7173293c5039b16938b0e2690445460
BLAKE2b-256 8aca2ff57c52c53425752ce90ca0db788aa6fcbc88f981ce627210f359e408d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 020849bf0f5f722b29f31d1bcf79e5024aa8f93571037a5fa5e3816068d6e1ec
MD5 e87cffb4b52316ccf53c132cc91f0581
BLAKE2b-256 5c36beccd3e25229a324e52052e68928b63d1c35fab93d3e83a125959f84ee8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ae1515793c1239fae3b1f9910efccc649edacbb6e0bdad6a7aae140f74f67f1
MD5 06ba854cb2bbbe5703b8bca6c785a06d
BLAKE2b-256 d7cbb551a7e1af3be4c9691a42a4987c30c817ccaa66d14792c6db02cb88b234

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a3fc8c262db60ea94c5de77a2f1ad89735f040a9ec57cd0ea84683f6f531912
MD5 f1cbb88dabc0fb9f5a748ade1c035d9c
BLAKE2b-256 6e33ca8176b5a01c6912978d88085c13a27a008f12e73a3a447b5b042c929b3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 94bcdaa8f240f45a3e6919b1977aa61f7019fc133b7f1500a12508a1fa80f537
MD5 5c254da652f6faab5518d22e279a7c97
BLAKE2b-256 06963082f47ec8fc6b40367ad2a029196fe19882a205fb85d7611bfc9abe7490

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8f037dac2f79bc5da660fa8e05bbe3bb3ec3eafc5a3a2541347137d0befd87d
MD5 72964750fa30a40d897bbd5f9439cc0d
BLAKE2b-256 12ef6851de1afa44d3500e0b6e4877d640b6c29d81fb9f7855b307ac9aef3b28

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da9b6e9d8ea8bc4353fab0a90502ba0a8d5765f4fa4ca744d5c35273b896694f
MD5 a9b04e960a9d1a0aed35e2d423227cbb
BLAKE2b-256 79ccd865d4d04728374f2ab45a72b1dabc886447cba396853f530e625d913c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: whenever-0.10.4b0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 542.6 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 whenever-0.10.4b0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a3c940fc4fa8df31470c9e421aa5361d6569b58c2cf615fee561dbc92734479c
MD5 d187f341ded7665aba2623df30343af2
BLAKE2b-256 a1a8abaf9b67330bb16bf72d5676fb0dc1d9c07c7d5956a6f898b584fb717d7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-win32.whl.

File metadata

  • Download URL: whenever-0.10.4b0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 580.9 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 whenever-0.10.4b0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ecebc914bf75ca92944abf5f4c43e2383d2ac55604171cefeec96ec529e4b159
MD5 10e0d298b7a36139386fe0707fb0db7c
BLAKE2b-256 2e58059e017fd6427452a27e8b7b56ee5441c84f61cbf7a92570696ab2900eb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-win32.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d954268607f8a22bdbadba651417a076309c687c71e57df379ffa932cf713457
MD5 96c6050a22de46e3542d130b5c6b075a
BLAKE2b-256 158c1a630303ccffd897813c032a347009a3bc193dae0498f3e006bde51c587c

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b02570ffb651baa8c44b48511c43aa18a1d542f8c6f6fa6067c24834b7315fe
MD5 c80ef04e4328dbe618e934d8614edecf
BLAKE2b-256 c987616d2e7c30ee9c08d9858fa928be8e1c1ab3d32797e1c6aba5f31e3e90fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 99757a38ec7707d476c66c4d9a501be917ff3bc54f671c5f672f6aff88a27595
MD5 3ee54daed409e41e6c389fc35c623357
BLAKE2b-256 6754a4bc3992fdff91d2b19ba7a8767a2f345ce91f8603644a9f25d51eac7223

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 841ea916071c9d91dc33ced123b8f137613a8c70e8d69526db1150aa864c1b31
MD5 19523342e36d38b130ac11620bbdce71
BLAKE2b-256 d39734e2efa548aabe89c0a68428f27632cd26f3a3ebc83e25a15db9a3320b07

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd886f7e63b555dea2e9abe1b74d44a020ae9a1d3d3af64078a583b2fa6ad90f
MD5 7783ff32e907784169fda038747949af
BLAKE2b-256 89e52619fad68878289d08a921333c1f4a4fd2d71a59a1f833d3b8607cb658c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab57b1cbbfdadfa9c5fe69ffa061546e4e091e54e5839ef48b4a95ead45611d2
MD5 09cf56b785e6cbb886dd7bec324af9b6
BLAKE2b-256 0bf7c8b4c6a18abc0a08c47b8da95271ecc138efe38e6bcc0c113492e14b785a

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8be32441fec36e4fd4643bb00d1e1927d8efe39d96d5ca5a70f8ef89877ea91d
MD5 26f17220147ae6d38a96916e03e09715
BLAKE2b-256 6ad376f5f79ff42d22aa0ac85e416b8054a76aadc6e364b902750ea6555175d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04e5587ea8cf0047f94e1a29a4608f650976f83d063dff4f638764da984bee8f
MD5 87019e6afed7b184ce8aedb3f2a40e6b
BLAKE2b-256 356dbc6326d28bb022bb1397d83d5c84615eac59ddd5ce8ddda64e9e6a07566d

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d92148ec0ee3f0742345f1acb9a43816f1eb451d161b5bdce7b1e225994f77b8
MD5 31eb2ce452e73e27936d80507077f095
BLAKE2b-256 314c25d28e9b0a19e75e2efe28cc24dfd169dd51cb325dd657fc2fe8a00911cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ff9409ad99b1dc18b72b217ec15e9e9f1c07268f41ff18c0d713b7845d2f107
MD5 e563d78de09be0dc831593f4709cdd61
BLAKE2b-256 497e6c2e20c506846256bdc521e474a29bfd468536ee950c6af700e8fa496354

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bb1d5e65fb5494b4097560fc0bb9c660f9d6550c107b361929db1bd88d8d906
MD5 7dc4101d90ad615a11c6c795ede34b11
BLAKE2b-256 1320927711540533d6db28c732f5965bc7fcdf94d1242f7eaa328d4eb9ad506b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a5467798ba94107aae2cbb1926e65370eeb96a621023e17cc79a67b37a23b1f1
MD5 efc193e487d94ba8a28238ee61987eb4
BLAKE2b-256 d2d546d3beda01a986bcb6a314839dae0422db68868e2c7e9215ba6012ddc4bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: whenever-0.10.4b0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 543.0 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 whenever-0.10.4b0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a99585b0e8bf48492014932d31082d9c1a5506a496dfbfce31a168465198fe91
MD5 5cb1ddd6e66d57fd1afec06fec9a171d
BLAKE2b-256 9dfc7d01e6341f82df9329fdaf4185c53ed371606522e01e0362e43d63065acb

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-win32.whl.

File metadata

  • Download URL: whenever-0.10.4b0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 580.5 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 whenever-0.10.4b0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d828dc14020545e267c71b2ab1b015f0949680cf1a56c9006efb2476b8e98f91
MD5 284373b95496928994ebb46bab8370c2
BLAKE2b-256 33c5a55b65cdf17fe0b889c00758219ad0569cf62804d5df423fedefe28ea751

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-win32.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b75821deaf965f698ea7bf73e639a42df883b043ebe5341ed2c0e3c43eba78c
MD5 abf6d428bd8c146c03c3ed3338a560e6
BLAKE2b-256 f1b84f5684b3b0928af0a51f64882d8f2e1fce7954eb781d9d6299e798f36da8

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 358d4038079f0aa27564c9754de54b6d68a9649697acd3220f3f133c79ca2405
MD5 9ef327f6eee03fac76687b626aa1250a
BLAKE2b-256 aa53d7f7c3e95dfd1e773c8d58b30a9c89c6bec116e609b50aa00bf1f9991bec

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dfcfb102845624f79b531ad05d879340062fcbd64ea4fe1736efaa74fdde79f4
MD5 195f6abdf495f61ba79a18cf29af0939
BLAKE2b-256 e6f38c319f494abf5b242b2c5e6949d526596f3a52f8885853f7f444cf1346ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1169364bdc54faf2fdfb630c40e8ab14f7ae1c93704aba323a5f87858482a69e
MD5 f10a7efb2f5bb313a99e15ae6bb898cc
BLAKE2b-256 ddcc8b013de29fc263fc3a4d5acb63067a7103e22e24ace9e6c3031851233261

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c384a0049c6dd94071d3f3acfd96a12d13df5f61b6f9641c8650c9f25deacfe
MD5 7017da29d35357bc48db23683a6202e1
BLAKE2b-256 73cbd94def480e1dcfad947f1e28b5e4374762015b4e278e6b0dd053059c80a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37b07b785d8fca20d6f7d41e9f2a071db1099df0ea4ae574085e72d6f2fcab69
MD5 2f88e3c41de7cdc4d7c1d659729d5a7d
BLAKE2b-256 5c6112f04748db925a8b6d12ea477c199d5d59d8799368d0a1c17e31f18f4f2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9a2a4cd8bec1ce8e830dcc0fe208f4aeae274779826bb8c1210f4c2fb522070
MD5 05f463446202ba528b507fbf45695af7
BLAKE2b-256 eb815ca470b2d17dd87eabdb2e8d981946c45795735ae42f662dafeb1bcc03b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4e4a4e9be1b5b4682bc19b80e1bb27a1b5d7f2a83edb954a17d52b9335cf1b2
MD5 7ff79be120396c77048c332c512d253f
BLAKE2b-256 28fbb0c0e2248b3ce0edcfb1cbb89bc837db88397b9055a75becfba8c0ea4478

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4b250744c1a5fd4833b502bf147c0214765f01d5fddc0d530975916c55ea19e
MD5 ef9432750031c661634986ec1210f25a
BLAKE2b-256 2e333d9f5b9f37bc8558c823a82446f396883185d3954fa4475ad75dbb1b751e

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8ec0632b07ebb48a83de12e806236c09bb2445bffefa7d7f62124e61441af31c
MD5 74e5f59cf1e09ab2eea0801332b364b2
BLAKE2b-256 ecdf8c1fa014db0a823bb59c3692f4dd1ad4dfd1d4f9cf6090e6211c0ae7bbdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecf118d16ea245baf9d90de3d0b5a33896612e0c9cebaec14a16fad2ef52e4a0
MD5 dd59329498520ab3c82378100c531f97
BLAKE2b-256 8de411217a189aceb5250893c7ef8acd434897b5c16877b0bf0d2ec1bc534fc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b5c5005f8237d15fdedf28ece860bc39a175c120372eda3f95a6138bf0430dc1
MD5 40cb9941d5528b4858569de17ff7c9b4
BLAKE2b-256 f563c55c8b0255cfbd15db7dbedc8d55c0cd3695a69026aef784492ea9bcff7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: whenever-0.10.4b0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 543.7 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 whenever-0.10.4b0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b3eb3bebd7acb369e1def0881c559bef277980962426337d09e1d79b2c471c1e
MD5 b9c02ba6c41aed588aa1ba30827c8404
BLAKE2b-256 9e29bf1028c8c1ae26f719de29df05402b0827f8393de287fe8e4c89629aeb2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-win32.whl.

File metadata

  • Download URL: whenever-0.10.4b0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 582.0 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 whenever-0.10.4b0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d739651923b5556db3cc070b86e42b31937749021becc063b0bc30615d4ccf5d
MD5 dd5dcb37da9179b9c581401731ae79a5
BLAKE2b-256 e1e926281bcfb37c698e850985fe278ff278dde34f4ddf98220d828436159f90

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-win32.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b11497d9f70c94c1c29638ca30ff1bd80104652b0d7ce6330ac25b0072e9d331
MD5 e79d0bf4fe4030c3e13ba27edc248d40
BLAKE2b-256 036899c25fb1b12544f1d192f37e68a1963992abe0de34b2aff24e478ad7ed9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 871c9d2209b48f2055dd193985bdd09d5894bf69cadd7a08bafdabd5fe1c94dd
MD5 6542c0019060400bb9791b95c006a6c8
BLAKE2b-256 c290296bbfadcea043f44480627db7b0e9e2a0f9ef2cf0dc78c04783fc0add0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b8a54c7eb8a2175792a227ea389549fae15742aab5f126ea7a5271d8af1e0a9
MD5 63463a2dedfa83af1880a059f5bf41be
BLAKE2b-256 3bcb4281c54c431de76e47566e6aa841740622a90b47b3a810df123c2ff0649e

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1200d8c800f7bbab23e4ace2909e53597cc7fdefb080d1c970eb55f9af20a315
MD5 8a331b4c455eb646cb36f536397ae90b
BLAKE2b-256 35bcb3a795402bfccf1830b2cc142cbcdbf274a3457ef4d4166f725b9c1b0df1

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a019744226c6b497dc7bbcea27a7af7f0aae01e017cf35da1a188188e19dd183
MD5 3c7b0d2865705f9673b94b8c003e9c5a
BLAKE2b-256 d8f2d872a636da35364f072ff0e299ddf52d8565f36775998b38925dfa0dfd8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bfd5a2cac39b0c30462e0cbb7fbe019f589122abc854f2b0e3e0425aa512a8e5
MD5 eeab32c7949fc10c6f3da51ed36f4c17
BLAKE2b-256 9c18ed440d673c679cb5e5ca38ba8667497bd522c81b677ed0ef7121cf4282ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89fe16c1fb9e8dc4d4a4f3d8e6b86989318404dfe8193180aacf9ac05663519f
MD5 bc3acf73ca26b6232116a7bd788a7254
BLAKE2b-256 76560109709b526cf60a24ebaec8c4c4d96a02910838b162e5ab19dfd3399c04

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 314215b7f0863f5bd4df7278bce34863fce2fc826bee17711af63aaa1c4c8e30
MD5 8f4212782aebb2913879dcbb57602f50
BLAKE2b-256 179f6a230a3763cddaa4a6c7d0d0637b3f10197a54507445852c447557ab0b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7638fffa3c8b487b839e02394c63c87af1336e75cdc3300175345238ffa5d80
MD5 0f5fe8d9d6ec3695424536c018942547
BLAKE2b-256 9b48d628c03aab31a3fe099e756f1bf2ad92d10fca64d1321cebe6078494800b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 949ae5666c8573dc106c3b4c6cad7df9105fce0d8ae5b1e70bf04ab916a90fec
MD5 83f1f5444e142744e6346e87764363e1
BLAKE2b-256 ee661a659fc04867621803ce64b7c736ea2a1527c96b72c531772825e89b87b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49509e39b56e358f51c55a67bca9493d26e348dfd55571626975ca46dd913373
MD5 b46a7f873cd0b674f47bd799fa1c9a96
BLAKE2b-256 f24f7e663c268065398f976f76cad31bd867cc7b97a7eaba12b3b42e001615fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80f7f2e1597c60588b2171ae08ab3f3123ce2f4b0f293875615bca9a49028621
MD5 629eb904e7b7d78ac0e722e0ab77e388
BLAKE2b-256 12f85936b85316e650560ffca4e508c27a12d26bbaa304716c5380e328494eef

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: whenever-0.10.4b0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 545.3 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 whenever-0.10.4b0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a20d722da0001be45f6803b14b0f6c88beb4cf0b690faf96f8913abdd4638a2f
MD5 00e1df2ea229bff13ba7ab7cb0edd97f
BLAKE2b-256 325e79a3b15e9f5b530168c7b4d48af1ee7e87c2f8d31f07b61a37813e1fd29d

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-win32.whl.

File metadata

  • Download URL: whenever-0.10.4b0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 583.4 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 whenever-0.10.4b0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e57b0fe30716c3e74809c1d6de800998475943adcfe5f47fedf1eea84da85a58
MD5 8eced0ca14dd328f0eecc73e77eeac09
BLAKE2b-256 552a0ba9685aba8589f2be2df7062a8377226b12cbfb83a25b537e0983980ca1

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-win32.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 392a174db32d37e1bf98ec9c8ffc01c1b8700a58b2f4d38bf0faffad745fb7d0
MD5 a052461e63a5c801ed5664255924be27
BLAKE2b-256 33849a39fc716288b68c1b858e7b54c5539ecbefa67f59d4932dbb426b49432e

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b01783bc746098c51a76d85f3551e395b8e418124508dcdd53e271e3aacb545
MD5 462725cba4da7f39ae7ef4c3357b5cc0
BLAKE2b-256 fc7fd2ba860559d1901667852f7f303fc78b1857bb938c4494875fbd32e9d75a

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1402fb961e2b4bf0ffa87466e6292b537aead1d6dc8ac4f2c489db737ddcaefb
MD5 1303e919b89d38099805ea18d0862207
BLAKE2b-256 83490cde5e66d237b8c79645a9e65dbd7b5b68846b52939172da0287448c911e

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54ae14a7ea157814312ca25c7d319c64d2a3e1066fb607863a7f2486e014981d
MD5 8ab30f278e67395eeaedca20baf3978b
BLAKE2b-256 ba2f40e329995e687c2567724be2a6167d5e41c1b6bd016f57b5623864266122

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df42f842955549236e21ca7a5bd3d0f2b393224e6a71a19dd26a21f71fe632c6
MD5 9ce5544d0542511a4059175f17cd4237
BLAKE2b-256 d6996cf385e3106c65029b50fe8846d25e50c82d76a900d8f6b3347cf9e37ac6

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f5fb3c42fe458b66ece6e151f93cbf5822c948e967649ea25e90fab5f209dc3
MD5 493ddabfcdedbc3bab69b027304cf6bd
BLAKE2b-256 84d946d6b6e65ed8926b583bcb5d0f207b62f0af1d8f684f49805ee8871538c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1dc90fb8d930bf1ef5a1990c715723bb4e8fcafd715f3345f4046f6c62fdbddc
MD5 ea2d3bd0afe3221521c7b02da7d70a7f
BLAKE2b-256 0e57b08bc510b52769780fb755a375f9191f4e18e862ebfe9b0181073ffddd21

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e39e44a88570e74218e062ba19474719b25c7e9c4e92f4c5826b5a86c982bfd
MD5 a8801ec008a7d93ffb662df8ec394785
BLAKE2b-256 a7730091f9b5c02d449446825eae8dae7b6c13bb1af67d58d915ce0b7cfa3ef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c6b439a19064e05899051d2af5839d45c352109c306fb587850196671350f28
MD5 099cf92e673b9d7eaa892a3e811eafe5
BLAKE2b-256 781e69e3d608874fa2b865ddb037b30e69439e23aaca912f2c02b8762aec59ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 074a83cd9087d5d8c40a1a7c3c538b036a2241832e106b734e153a0294163fc1
MD5 dee4f6af9f36c495e1c6d60626fcce1a
BLAKE2b-256 d8e84f10cb09e5b1928b4604462fcac5d669181d90c99e8918bb70427e702aa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 138f71ba64576790b6bd8d68d52122ca6cd29bb04b0d16d22035c84c4517e84d
MD5 8d5162dde51078e93cfe7c2acfa89b4a
BLAKE2b-256 0b64ad00ea03bf213feb29122748d1281c31bd80664128e7776c04299a6292fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

File details

Details for the file whenever-0.10.4b0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4b0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f95d76b1d9d125c593e942ff577061e1feaff804439dc7ffdc2c2f42044eeac3
MD5 55f8f4b697e8a917dde108dcfc59272a
BLAKE2b-256 295974ab99105f522ee76d1eaeface59b70c0de909bc0baca0a8d180b70705ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4b0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

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

Supported by

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