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.4.tar.gz (437.4 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.4-py3-none-any.whl (129.3 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

whenever-0.10.4-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.4-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.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (625.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.4-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.4-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.4-cp314-cp314t-macosx_11_0_arm64.whl (572.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

whenever-0.10.4-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.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (625.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

whenever-0.10.4-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.4-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.4-cp314-cp314-macosx_11_0_arm64.whl (571.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

whenever-0.10.4-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.4-cp313-cp313-musllinux_1_2_i686.whl (900.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

whenever-0.10.4-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.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (623.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

whenever-0.10.4-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.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (586.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

whenever-0.10.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (569.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

whenever-0.10.4-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.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (624.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

whenever-0.10.4-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.4-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.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (688.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

whenever-0.10.4-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.4-cp311-cp311-musllinux_1_2_i686.whl (901.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

whenever-0.10.4-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.4-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.4-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.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (571.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

whenever-0.10.4-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.4-cp310-cp310-musllinux_1_2_i686.whl (902.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

whenever-0.10.4-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.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (640.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.10.4-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.4-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.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (589.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

whenever-0.10.4-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.4.tar.gz.

File metadata

  • Download URL: whenever-0.10.4.tar.gz
  • Upload date:
  • Size: 437.4 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.4.tar.gz
Algorithm Hash digest
SHA256 561e739fdd814b52adafcd6a0efeb472eb1987921fd7e1283fe61dd0d3864891
MD5 a260d35f9290d1fe97c46785a4737159
BLAKE2b-256 c402fd9940c83c79c3a377f6220ea5d5545ba3a89db3d87c38ff0394556d4672

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4.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.4-py3-none-any.whl.

File metadata

  • Download URL: whenever-0.10.4-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.4-py3-none-any.whl
Algorithm Hash digest
SHA256 b52cc0d99d0df873230689b11efe7385427d4928905aed11a080be4e733ec549
MD5 037f8e58f679e23dc64496acdd94d2f8
BLAKE2b-256 08270f2296993fac39c9002cb3019a8a6dd1f2f2de2ff1d9e071f59f16c4323d

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fc68cfbab96f016a1cb07b68fa85299a22b0a0478099c995ee3453f7acbd45bd
MD5 08669299b268d738b4263ff467807cb0
BLAKE2b-256 9e0b2a16d1d151bf01430ea25ccf2ce0448ba8628c630769f49c6a52d859001a

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-win32.whl.

File metadata

  • Download URL: whenever-0.10.4-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.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cd4abb2624c20a4f839e4b18fc6add4e2ecf489a7fe7894543046ec8c072b343
MD5 ffd2597b5a1edc2389560ea885eb3b14
BLAKE2b-256 593f0fd4031a506bb44d4ec2add697831fc472b4aad047c230374eeb40889d82

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74b1d82e5ec0029df827204295ba1c62192ee24789eb20828beea6b6a0cf912d
MD5 6a7e5b9750afae15d28770ce2edc2ac2
BLAKE2b-256 a84d24f7fec9240ed0a80265794a7057e60858a2d1c3bcd46072c85e397f8e35

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a50772312f7b24f12fe929542c6a0e17bf669c966c755cbb1c955543de50a1e4
MD5 36028d46a69d38cba0fa9470f363a1fc
BLAKE2b-256 2973af63520b5847a3b759207310a4afeb34f6abfb56986e8641be39fcf54a49

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07a2b95175695633d541b1d61011925d01fa8066c07b15aa2c5c65ad902b1377
MD5 0dd2c1f11adb3d35549b907a12ca179b
BLAKE2b-256 954df8ee9515c8028cbd1eac858754a8f81cbecd5d48e246646b0f1f7e602efe

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 792a46c36ba486fb47336833af0ca7146a430d3fcf975cf4ce2f5f808e59a2ff
MD5 9415b87ac14962777158e486e8c1fc39
BLAKE2b-256 7222decd5e4e372652d7b7535cd3a4f0dbf5093ff4ee92a49339e474057d937d

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1d447945d3ab807061d3655e65f6ee6c1b19da47458b5f545b0e7b3cae38285
MD5 b96d015e5cf296978b80ecda12c304c4
BLAKE2b-256 c098373ed9305e943384bc12199aa791143becf8f24fa2a9d3d1c3c233a59bf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7446a61a3c36cdc0753cbbf1a74ac7d373175b1f9acc20c162380246f1766c27
MD5 ac455c3c699b5f24ef763a44b51e7269
BLAKE2b-256 5961ed7742e39e81e2f0ffc796480e745d76f9a5396ba166f6787a6fbffd3b91

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 01619f458807e9b6c479e1102ac8c24ef04cac8db472e31f710448c6262f1cb1
MD5 02e2a07e3be13c05e87f185ad11451da
BLAKE2b-256 02339040196d2c09fc2e81f5a562271e87b3bcd4a390a1ca92db67c8f4f2711d

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c5052663149074a32e5c954182ce5ba6a2fb79dec9e7f061c95eedf84f73398
MD5 a407d480de3a5509466586a5be3e3a0f
BLAKE2b-256 ce03a086ec04a70f082af9073ed8894186be1e2cfc9c81d4afd20cc3c6dbd667

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 089495382c27b9574c5211666bfc7d0087711e72345389815061a47c26765bbc
MD5 1f0d240e5496d68881bb4ca78a14edd6
BLAKE2b-256 5945b0efe6e9df18a866faca10a16b15cc98ae9a54c7978e96fb67cf5fe38115

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c33cd0052cd3f65a75ed969a00d9b50bfc3db3f18dcd0ea03ebf27472573ec8
MD5 0ab157f00a2bad853d7ce92476b590af
BLAKE2b-256 bf4af3af62030acff08649f40e354f04317a61c8215ac49309a94b519986bf08

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b09cad0a848bb6fab85b60fb4dc94174b45c5022161f86e51f36614da69555df
MD5 b8272779a98197b1d371b6ebea89c52a
BLAKE2b-256 90e140e56e87858c397af40f8a786c657b48609624ffa5fdcfc4ab7c76cb7849

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30df93cb241349353b9049826069417b78a3f9d014d0d1e435572efb89c6f1e4
MD5 3c4c6c6287d20cc146cba3e10bb8390d
BLAKE2b-256 5f822243d4fe05e764edf98a402245b508168a2b1885b379af0ee57500e738eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: whenever-0.10.4-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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0d8239eb7d7649aa1bb0ab1e947c636b8c721b4e6eb31e6fc21f755c2f227232
MD5 de25b43439be5dfe618d61ff35c48b3c
BLAKE2b-256 697502255917418a001dedb8e9c01c5ec0675d95541cf1c36b3dc43194647622

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-win32.whl.

File metadata

  • Download URL: whenever-0.10.4-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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d94f741810811e76621c7c2aba15d0cc928caa9d498f243544081e9d5be58971
MD5 943e3e67d1b2648b5050f34efe63eae8
BLAKE2b-256 76e39ed40b401188f64d05f0325b3bf054ba828d4df360f79d5d6c44f3236db4

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8215d622415d88a9fab375ed6d5a20596302fec2050a5920177975da49ae07c6
MD5 46dcc1897b52d1a39724146af9a77915
BLAKE2b-256 7b59208fc9992b5b1f7c56670295b4f54f8802f64af203cd7113550f5264fe51

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f11dc9784b62118acb4006f24e7aeacf91c5cd70e766b7fccdd5e48d41e64a41
MD5 6b2f85c009e5d97971c1b2431bdec6c2
BLAKE2b-256 5eec0a72a6d8807b2fe5cff4a6e8096dbfe7ce41aa84d2036f295ced55696d14

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 637bb15fe78d82ab80f1c407cdf3d78ba90a0798ed601240fcc5d51aafe3e1d0
MD5 bd87234e4f63daab547913d9c1cf5816
BLAKE2b-256 afa1a0ae4a91779d6b090e16f1cc57f1ed44b6710ff3ec1fe2b5af891da01d65

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58fa96ec183d15a46a86ca3ff450854519f102d467ddb27061cd862cfe880300
MD5 d7b52ccc7144cbba22d9b8fabeefe541
BLAKE2b-256 367f88c91d089d164e71428ca18e087fd51abdc60db64ccf39ee35e4bc2ddca1

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef9407ebbef23724ec290a6619a567b303c0c9c7adb4359ec32a0d14c7d484d8
MD5 1a016058e1b6432f15ffec81232a4a73
BLAKE2b-256 78e7c2c87cae729b208bfa46c8b66fe70bda8864385ba69ae45842028968161b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8d41881553602b3bc727e7bbcbb9e20b5381d3b56c8f220ccc0a477ab0d2df1
MD5 248bdb82c14f314c1188288c1228e71f
BLAKE2b-256 0714412070f0707c347b305118fa811b24d9e12cdce00e50f4955df65e80d1f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3be09d524ebd90fd327cd54ab311c0c87fd0308cb6fed0420f9b12c5e0e920c
MD5 4994910324cfd30321c6ceff6ca0d6df
BLAKE2b-256 414453df6a9d6902ad7c30cf7b5d7899bf72db2b1a4e1223567f013016491bea

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e9cac57a313523df5517944c7c3f8e2efcdf6773397573175aad07c53800014
MD5 e9d37adc6cc7b507e013e1caf86f4ce2
BLAKE2b-256 d8e65d91ca82c39e807e8580d96314336d02c0528b9e4aadcdede9fb83a306cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a171a5fa083f2093c8f3af774916006e6bdd4af611d248a83d5a088b7f9b08d0
MD5 162edafb2eecb826a960b9d318733fbb
BLAKE2b-256 514be35f7b280f106cd15c7bb49a0acbd261a13cad9f7f83330666316018504b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8bf6544b6c256e6a109253d2f3cff5844c0f1bc15d8d65ea066d95e8d695370d
MD5 9a32a026d05f81f18a5cfe0e2e3c3b1b
BLAKE2b-256 e06d04910a982f77a0842acad469b9c78429d48efd26be746d8f7bd2a7d20bdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89f241d52b493600a9faa5b582059ab953030da97664db5aa647df77a74880d6
MD5 ddad4f5a2cdfb62291a446f31776aee3
BLAKE2b-256 c6338d2fb1e87eedb979ce8b7a83ada6e67ea0589a66168a830698599e33cee5

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe43a47be22be53383027f4ddf595686eecd05c87c680947a340fdf688be406b
MD5 8187c6486da963209f68373c2033f989
BLAKE2b-256 74346fb775165a692a1851ebc59f40836ffc89ba396f4309989dff139b8bd5f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: whenever-0.10.4-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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e15789ba318d4cce335a25304f5633c3475b33998f4713f7e8228895da9016aa
MD5 3694c10dc4d5b0091e6476a24f08fc27
BLAKE2b-256 2ba2e6c9b882c2f56bdf6433159622473283a882b172bbfc5954feb26a48b7e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: whenever-0.10.4-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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fee7ca910ef85b4a2335c43c768d9172c4cfb62a8ce4a8a1f467d6d4a6ca968f
MD5 873ba2cc0a32d7f95cfe3edb4529a588
BLAKE2b-256 360e0083b1251ef4a41c6333c82b3c5c3b1564ff13556a2aa6540b28e34f31fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1495e54a19e9b13428e348c13003ffafc56992cb03a4f541fd5f9952d99a1bb1
MD5 f88ed82bcd68113f301df984110d2478
BLAKE2b-256 6451595ea58100209104821a923cf190b1e7538aa08d1c802334baa69f5d9f84

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d142f99cafd4439517354953d3906b9e10f21a0c2a884c09f0080ae36f760b18
MD5 d89e1213820d788d63644ccb1f815cdd
BLAKE2b-256 69849d474d602f3512f956ffd4bc944d31a1ec7fb9e23f8eeabe5db9a9b0a0db

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 23690a0842f0f915a10d1cc8c5e7b2e3a36e8889292581ee225f5dd7f9eecd13
MD5 c9b2d341099688c67bdb96883c314bd5
BLAKE2b-256 4ec8ac753ace23b843328dbd1a26aa5bc0b35ac759ae2837293db3c204ab072f

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8573a13f2febe281b309202b8a2ce44cc811f83c0f0c9504e811af82681fc992
MD5 46ec2017a855aaafe57c9eb120ee3357
BLAKE2b-256 487605ad2ab78a0cfac4a53c8351dbd2e907e0c2a834d7829469c679604b9186

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2281e659cca3ed0f30599b910d81ee836f380859c8dd60d6b3b6b2e2a63e37b7
MD5 3dacfb56ad188b87aad89d49221e2400
BLAKE2b-256 401cf00a47e10bbcec35326c4e6eca9bcb2f69634bfb9b9e442f48cb8a4b4189

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34fed1119accff50bbcfedbe78f088591b51cef22d62e200c58376ce9b12c2e5
MD5 a4631dc30f0f135f0b64d295fbb75db2
BLAKE2b-256 58c53110da9f0c619c52057b9b1a77b1eb65ddbf7480f91109c59b04183448ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50584ebcf2a4a65f7ab1062aa192e1a2d7a6c3499e449755b49e37e40f7ee40d
MD5 44f630259a07c9e3837d3ed2ca237885
BLAKE2b-256 e3128b286aba36b74fa3e1f4ae240b148521ccfe91e2282bb4c4c47b3a9886ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5bc8206094140b103975a3426d4d109f432fe09c04e2d53950346e7c5597d73
MD5 15cf322ac057b59384a2117ba7abd9e6
BLAKE2b-256 27b258839ea24670ec7df98755d3935c66822f7c74b468008d4b3aeab5b5520e

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2c99c98fdfff656dd5ee182ff0e0943390b34d9332d3111ed31da783c34c3f4
MD5 05c89abb2829b83289bc4714bdc1b145
BLAKE2b-256 1d8f697202a49acb7e43743b700904a5293535af41e95d7428b4c434dc0ad537

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a15dbbb15091b521a760a32e5cf443d7f61c8272cd7e4f73959cae5e5ffd0c93
MD5 5ae0481160aa763620a43ec08873f8f8
BLAKE2b-256 9e61d845bc1353b5ff70fad18fe83cdd200f0e677d4a799dac990f6e1c098c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e73aa6ba93a0f4a6dcbece3ff68a74733888c817107980bb4aa38e7c54c36051
MD5 713c792f241c39a924ccf4a9f00caa2d
BLAKE2b-256 059f0fb80b2ceed9ae32b344ced3bebc1c7e81e96ae528880e594d14a309fde3

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b7ef1362a0185b13dcd8c93ed8da32acb822c96afa5892a8a3410c5008c3e396
MD5 1036c3b484b7a1e65d8131e5b76c4a64
BLAKE2b-256 ab8397bab865ca1b83eff8bf28a954e3335520f2949a3d8ad60fb45fb6aa40cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: whenever-0.10.4-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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2bce69f08bc5ec589a916a1b5d1e0b1237e90a4609716416ec4e5f694c52f420
MD5 a70d3654737a1b1b114e2f6311fcd76e
BLAKE2b-256 b8b334ee6093b48f6553727bb098d587e56d9cb5d6a88d8a66e577d504071780

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: whenever-0.10.4-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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1fdae0c90718092e34e454fb9522e420ee64c24bba74bf8da08ac815e766b212
MD5 6fb307bac3e3309b7213ad019f0bc74b
BLAKE2b-256 d978381efb3cc44f077e3148235ad472d8dfbee2c3bdbbcf5cb29ed0df84638b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed04d65b4b81faa4db71deb5235e76719ecfe501c81635cedb26853231c5ba1d
MD5 a966481d2291027dff3cb7776c3a76f9
BLAKE2b-256 51f22e13c6e513e96477898df436c2628b55a2534504b8ff3cd96b08335092e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 595055d9dd420fec4f361be06d218e5693609a8e2adab41392726df29bfbb3a4
MD5 8f3d97d04d0baa01cb38b4aae6362646
BLAKE2b-256 ff536f30c1ea08a076b42632fa293ffd20cc577d4c73034c95399051ca7df812

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 063e5071ea13acf5eb78771501c8d94cb533123c60d7976d72197e0c3a7fa10a
MD5 c11c539321b2cefd857feaa508ea03f0
BLAKE2b-256 9f90ad120b0771bcee1f8c71b43a8e0e79862e8987c8ec97429a37aa8ff336f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c26f59b31799d4c20e3c69a9e89be21b505c84a18c002bf76ec94078ae4a280c
MD5 97d4812ed481cf2e1568d5a7fe331b09
BLAKE2b-256 d70872e1a431ed9adeee35afb4b3677fbeeaa53cbcd5f26cee46f57949ccf06c

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffba892bb7391a34c3254c28ce40b1a727a8446a73f9288ead66b6b13f6f2991
MD5 6fd2e9920826456d38c3b466105b9b15
BLAKE2b-256 42ee30c6f54eaaa445938d3814532ad2ef2966b3c5daeaf7c454ec9ba401b827

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce3cc3d02375829a4de0e9adb7c06fe8b5b0f70021040a117bba1ea3a7668891
MD5 cb866abcefe3e15dadf39f2fb5b208b7
BLAKE2b-256 772033dd6ec876813fcf0ff00c1d05507ccad39c23f73e1331ece1aa40852267

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1871a45a245a5bccb2227750690cc60c8527c6adae694b07dcc7667749a24af6
MD5 56e24e149680c8c2c624d48709545faf
BLAKE2b-256 f5d93f41487868bb2efae4498fb550b0ffa97eb4f6ffbc046d1f59ee0cf6cd1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab832959d0813d35764bc417a8a849f5da386b76e973afabfb3115ef5a56d67d
MD5 90e554da31d28a6c10a724360e244818
BLAKE2b-256 e4f82ba0e8254a7f8427a31ea8deca39b0741100436dc0aafa8ed676e3881747

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1120de690d271ea43159227514c42be37a4d6fb8eceffc4e40db08ba5d3b420d
MD5 7b174f4a4e34fae84c71261314d4fbcf
BLAKE2b-256 35e4bc43e5f567775988d5b7ac8b54a7eb55d049f527bf2b07289e4c49e32cdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aae8fac87a422d713def21aeb28ba8addd3400d2a189980b89e2edbef735b7e8
MD5 d3bb1c6700926387bc5528f080bfc16f
BLAKE2b-256 71f31506c90b68cccef665fbc0dc72e791412d1145a9239cbdcda568a49dc57d

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdb3067b1dd1956407f9427ea9ca755053540beab75f14979fd580e91dc22b14
MD5 edda5cc4f9499b986ca741b2855b51f3
BLAKE2b-256 5b599a4ad40394044fd8e7d956faa0547b6d5f6556a729ff5a1ec83360bf5bda

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d0efba49f456d29656053e0ee54a3f89660a57cc7e7bcbfd554f3e30e9c8159b
MD5 0c647c48547a7c02e21c63986763db9a
BLAKE2b-256 9d8522549dfc13856f4df8c65af97101a784c4c261fedb339f50986f91978147

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: whenever-0.10.4-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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d826a6b5793a8b4746a830a2bf450f0b384bd0cf74998ed67f6bdade8123a939
MD5 494c77cba31275c804c658dd5f8b352d
BLAKE2b-256 aa6cb017b38fa551d94def22583e07d775069128cca54025af98d763bde6f2da

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: whenever-0.10.4-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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0af970c6b4359f60bdeaf0468946b992efcad2b5ca7d8d93d3d2e39253061163
MD5 c3d60117824c30f68915dd2e8c873c73
BLAKE2b-256 3eb13158136bb370434f9dd62c3692c9fbb627e65b8da14ff7ae1c8f3cdc724f

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 651e4a133c4fa87404f992c383176e092527859905b2436ad2474b4b7d900394
MD5 82ee9138b689c651ef0ea09e1c584313
BLAKE2b-256 e48d47dcf81bd35c531ab105ef99fa0db66ecc85226611e1e02b99ad43b07ad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 103416952f5cf699ece241fb7c582b434c6313818b524fd49c20acb5ad128537
MD5 c691b7fa9605831bb47bb090214fba6d
BLAKE2b-256 59f1464f5353589789cab164c08a4429af976ea0ab111c42aa4f7ca8985c3d7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb25d5838dd8b48f400a4cbe1bd160f6c51c7efddac21d1e73cba90974faafff
MD5 6187f2c5bbb6f35cf1506d7c3f41250d
BLAKE2b-256 a82b987a656c9ee63a7428d560a35bfc5eb4c364dd2db2ff8654a8929ad45667

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5a079936109ebdfaf96c4290639e00b635ed8a77003cc5c51fd3c6adf77fc68
MD5 62dc9225a07b9b882db41671e9f91b9c
BLAKE2b-256 ff4b22c07befe3fbd41b3f3efba287bd449f84b0ca222b21f93c4ef8f8438406

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f0f55e9707737ab3e758a9964b66aee633fe8c63440f05f70df3d8a57e464b3
MD5 8ceb10b32b4d6f3422263e6d57985650
BLAKE2b-256 48f269beb4743a482ae9909a4bc683e764abd8c5ae337a6b55c7c77dd8cf07e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f86121efc258c9621eef24864fa4045c74b14313819929b2350a576d3db3e3aa
MD5 cc5a228a273956ebd933d946c7c7190d
BLAKE2b-256 dfd372fcc04bc1bf85037c09f350a7c8c22a4cc130757de6c834286babccf6eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4953c770783c3f8c362c742dd709b1dae2d9be86709d0bc28606a3d9510effa
MD5 044451cdb0e60fbcea244c71c0a390ee
BLAKE2b-256 c85eb6d09dd814f1a77f5ce620c6a4ef3eb3f9d4908d55881726f318eb2d7dcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 84cf3dc704cb9dc3c974aea4317936afac59b8d5e27389071f4d581519075ee7
MD5 9eb04784b1e2a407132c891c049e69bf
BLAKE2b-256 8cf2c074cf268299d7e1526581da36e275a2975737db2e222b93234c0f1dd0cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a61ecc5fafb07c223c321f1600c56d8993a263af9c9818c2da983a0d9258712b
MD5 5cd57833276362f924b4c91f6bdeda9d
BLAKE2b-256 6b709a2f9d185a062f6a2e60a9daddf6349b7644c6b703a1073770df8c693f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0612b4252400643d4ce4192e8e04f7cafad2ebaef61cea867f33e209b4d15d4d
MD5 3df890d05e907e7f56174df03a30aaab
BLAKE2b-256 a140585874e83eb23eebdad1644bb4521072e034dfcb360398ff285a89037cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0e2836b246849ef826725acf03673d892340ea02e4988c1ebed12e912d0d3d5
MD5 bb1ae982da54d72e25d370c12e832cc6
BLAKE2b-256 c2795d7c0b3e5c2213a134c0bab9658c08d3195dc7abd6f5b7f02fc8f0ca0690

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd15d5af834d8b1f4be3b7ee3435c7b647e944d16a891798bc5b4f1369fcaf47
MD5 ae1c464eff2c72b024d6781b9fec4a8d
BLAKE2b-256 df75694e9de1976c51d77e6a60bc6e00db3a794fd8d90bbfb4e00e8d34a569fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: whenever-0.10.4-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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e34d128c2fa45037dd47c45905a516cd6e5a7ef20bbffafbccf689ffe1175cd2
MD5 73f4b24145f5fa8324fc1c3f3d502b5c
BLAKE2b-256 da98b21ad6d8767f782977baa77cbaff5f70dcf234439c3ec655709e8e91ce0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: whenever-0.10.4-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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 02158371c589f47d7a41b27a36f6071725a7482b8360b689a6da66e972c3483a
MD5 120b797ff966e761f850340fda2b78e3
BLAKE2b-256 3e2c660214e779758355f7766fed1af13439524a3c85c21c472059f3a3a539bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6409a6f8fc10295a809f3085fd19fbc8e89cd06f09b20e86531d6b14208413f
MD5 263b30e7b22a642b18d8f0d4b125a126
BLAKE2b-256 9d958071ecfd6c5bbef90e9aab5f6a9cd311e4add7922e2aaa43cd61bd24c4b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d960ffd4f09c3fcc74cccbbd158a7d29a2bc425e95b572570855c0cd3e4598fd
MD5 d8c9cfefdc6f63b0cbfc03e17b9aa0fb
BLAKE2b-256 e7c35be42f5977ee66aef7e61fed16f3a870ab0116ab93a88c3aa37e44676e67

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 185f5b8a8e1321c827deb9447d20f9676db73a533dc925e3dd0f9850910f4f59
MD5 f0b3185a20df5495cb6fc8fd0e773846
BLAKE2b-256 afa202f1a11941c4f953f60d25d87bf792eb2ec8bf9f7aaec84f4a804424f9e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0572c36702f2799c3b443fcb5601c4d56fbbe1bd6ebcb27ea376a2034e8ee7ef
MD5 31560164809ba2fea55baf11e35ecbe4
BLAKE2b-256 23b5bbefb07f54824542d9297e86378fc5f4d626d0655981bcd4ada04fb1cac0

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9ec52c8afbe768c536a9e50d5614f3ebcb6a738df1bebfbfbdc5df03b8fe5bc
MD5 70be0ebb1c716fa9de771fdc7f2605c6
BLAKE2b-256 db65370828edf405f07570468b6a4681f5499df5a2d20263d1b214c2b56880ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed8811fedc9ad2448fe15b3cc58409a07e78f4ddcc7d38b281420d68deade839
MD5 7e197ed0de7576b597a86f321f45bf05
BLAKE2b-256 1fe15d83f4c8511c9ac818285c571f6610fe4ebcd415d2cf94c894188fa129d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b26076f1f18047b69eea4c54f5dab0fd6802ab006ff1184cde544dd8932ece8
MD5 302605be552759586869ba4547023824
BLAKE2b-256 7780ac3be6eaaa3b1f99b7659c52e5d5d281188cf0283f29eb7a864bd67295bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 631468a8ffc154fb328d74f90e1d402eb9918a6315b46b02035e09296a7221ca
MD5 dd4cf64e31e5a2fb90bf3193e5ad9a8f
BLAKE2b-256 c9b0565269c8b75338e3e83dfdf583989afff02e8220ceada32e6eb82ea498b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e8c0d4a58b5ded6e78e428435a3d82d3de5b732ffa1c1f334688d612699cf1a
MD5 224c87fa530043166e6561013523b126
BLAKE2b-256 cc379ef45b99b67d5dea8b5f927c9a566b401b4bf7dde6a08c2a1c3b9ea4ad23

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 874c6d9dabff9b646359c968edc0860ae40c4b9f02d0be4e4c81ca37af084c3b
MD5 f9380025748c1259443d215490c00f70
BLAKE2b-256 6b88455403fb478def46d3e9c4a6f7b1b1831cbcc9947956ec8747297969720a

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a38d96c609469f68b0dca668ef4b79e33470336bea3a221e884131aff03d624e
MD5 aa6b25cdf4e4c7a9e19754576983d0c6
BLAKE2b-256 0b7716668caa99efa64963c9c1728b23fdbbb7d27112b253d2e28e742534897d

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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.4-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a8853c80a1a3e184d8f7ccda60b027660af6cd2f6cfa879e7e6408aba6eb3c3
MD5 4ce73a94ecdf80bb7fcb26ce24d50b9b
BLAKE2b-256 f2b18aed764937e410e6b70051b48c44be11efd58b6c18c8b4ef89a4c5ade1f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.4-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