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.3.tar.gz (435.9 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.3-py3-none-any.whl (121.7 kB view details)

Uploaded Python 3

whenever-0.10.3-cp314-cp314t-win_amd64.whl (565.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

whenever-0.10.3-cp314-cp314t-win32.whl (613.8 kB view details)

Uploaded CPython 3.14tWindows x86

whenever-0.10.3-cp314-cp314t-musllinux_1_2_x86_64.whl (833.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

whenever-0.10.3-cp314-cp314t-musllinux_1_2_i686.whl (936.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

whenever-0.10.3-cp314-cp314t-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.3-cp314-cp314t-musllinux_1_2_aarch64.whl (781.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

whenever-0.10.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (620.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

whenever-0.10.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (670.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

whenever-0.10.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (652.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (730.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

whenever-0.10.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (730.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

whenever-0.10.3-cp314-cp314t-macosx_11_0_arm64.whl (587.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

whenever-0.10.3-cp314-cp314t-macosx_10_12_x86_64.whl (605.2 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

whenever-0.10.3-cp314-cp314-win_amd64.whl (575.8 kB view details)

Uploaded CPython 3.14Windows x86-64

whenever-0.10.3-cp314-cp314-win32.whl (620.4 kB view details)

Uploaded CPython 3.14Windows x86

whenever-0.10.3-cp314-cp314-musllinux_1_2_x86_64.whl (844.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

whenever-0.10.3-cp314-cp314-musllinux_1_2_i686.whl (946.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

whenever-0.10.3-cp314-cp314-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

whenever-0.10.3-cp314-cp314-musllinux_1_2_aarch64.whl (792.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

whenever-0.10.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (631.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

whenever-0.10.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (671.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

whenever-0.10.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (652.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

whenever-0.10.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (731.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

whenever-0.10.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

whenever-0.10.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (739.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

whenever-0.10.3-cp314-cp314-macosx_11_0_arm64.whl (596.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

whenever-0.10.3-cp314-cp314-macosx_10_12_x86_64.whl (613.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

whenever-0.10.3-cp313-cp313-win_amd64.whl (573.4 kB view details)

Uploaded CPython 3.13Windows x86-64

whenever-0.10.3-cp313-cp313-win32.whl (618.3 kB view details)

Uploaded CPython 3.13Windows x86

whenever-0.10.3-cp313-cp313-musllinux_1_2_x86_64.whl (841.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

whenever-0.10.3-cp313-cp313-musllinux_1_2_i686.whl (942.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

whenever-0.10.3-cp313-cp313-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

whenever-0.10.3-cp313-cp313-musllinux_1_2_aarch64.whl (790.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

whenever-0.10.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

whenever-0.10.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (670.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

whenever-0.10.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (651.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

whenever-0.10.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (728.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

whenever-0.10.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

whenever-0.10.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (737.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

whenever-0.10.3-cp313-cp313-macosx_11_0_arm64.whl (593.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

whenever-0.10.3-cp313-cp313-macosx_10_12_x86_64.whl (610.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

whenever-0.10.3-cp312-cp312-win_amd64.whl (573.3 kB view details)

Uploaded CPython 3.12Windows x86-64

whenever-0.10.3-cp312-cp312-win32.whl (617.8 kB view details)

Uploaded CPython 3.12Windows x86

whenever-0.10.3-cp312-cp312-musllinux_1_2_x86_64.whl (841.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

whenever-0.10.3-cp312-cp312-musllinux_1_2_i686.whl (942.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

whenever-0.10.3-cp312-cp312-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

whenever-0.10.3-cp312-cp312-musllinux_1_2_aarch64.whl (790.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

whenever-0.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

whenever-0.10.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (670.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

whenever-0.10.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (651.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

whenever-0.10.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (728.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

whenever-0.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

whenever-0.10.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (738.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

whenever-0.10.3-cp312-cp312-macosx_11_0_arm64.whl (593.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

whenever-0.10.3-cp312-cp312-macosx_10_12_x86_64.whl (610.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

whenever-0.10.3-cp311-cp311-win_amd64.whl (565.3 kB view details)

Uploaded CPython 3.11Windows x86-64

whenever-0.10.3-cp311-cp311-win32.whl (614.3 kB view details)

Uploaded CPython 3.11Windows x86

whenever-0.10.3-cp311-cp311-musllinux_1_2_x86_64.whl (831.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

whenever-0.10.3-cp311-cp311-musllinux_1_2_i686.whl (935.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

whenever-0.10.3-cp311-cp311-musllinux_1_2_armv7l.whl (995.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

whenever-0.10.3-cp311-cp311-musllinux_1_2_aarch64.whl (781.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

whenever-0.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

whenever-0.10.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (659.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

whenever-0.10.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (640.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

whenever-0.10.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (719.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

whenever-0.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

whenever-0.10.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (730.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

whenever-0.10.3-cp311-cp311-macosx_11_0_arm64.whl (585.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

whenever-0.10.3-cp311-cp311-macosx_10_12_x86_64.whl (602.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

whenever-0.10.3-cp310-cp310-win_amd64.whl (566.0 kB view details)

Uploaded CPython 3.10Windows x86-64

whenever-0.10.3-cp310-cp310-win32.whl (615.1 kB view details)

Uploaded CPython 3.10Windows x86

whenever-0.10.3-cp310-cp310-musllinux_1_2_x86_64.whl (832.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

whenever-0.10.3-cp310-cp310-musllinux_1_2_i686.whl (935.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

whenever-0.10.3-cp310-cp310-musllinux_1_2_armv7l.whl (996.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

whenever-0.10.3-cp310-cp310-musllinux_1_2_aarch64.whl (781.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

whenever-0.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

whenever-0.10.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (660.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.10.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (641.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

whenever-0.10.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (719.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

whenever-0.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

whenever-0.10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (730.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

whenever-0.10.3-cp310-cp310-macosx_11_0_arm64.whl (586.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

whenever-0.10.3-cp310-cp310-macosx_10_12_x86_64.whl (603.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file whenever-0.10.3.tar.gz.

File metadata

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

File hashes

Hashes for whenever-0.10.3.tar.gz
Algorithm Hash digest
SHA256 af8958c870bd178742f0089c3552d5702241cab1f4b6bdfd3b03111db4bc2150
MD5 6b48efd388e146ccb26af618263f7fb9
BLAKE2b-256 6d4094856fe2439c4b8162d1a23b4cf3a48bb00bed0ed7b8d10add40988fa555

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d35778c88db6d0229c436014a4704180520315a1d5ed3b71ee6ba120cbfb9b3e
MD5 5de0f12cae4bc6b4ea49f79132c997e5
BLAKE2b-256 180050e9b44b080813feb958b31e9e370a430444e8676d451a35f28bc638074c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2a761adc97ced36455c8b94d39cee43f45c009cd2870d246e518072fd3f2730b
MD5 3a3239dff19fa6ca46210889cee8d817
BLAKE2b-256 c121d43cfdb655638f008e349a4ad62b5d45dde5322f45146262a0aba55ee130

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b4589ce90fe5018c55b70460706119068d7a087bb860c6cbee2e9176578c829c
MD5 a0875e4a8fd2f46d6e7d447c49ed2542
BLAKE2b-256 0f844e2b32b3e5d20bc164da50d5b9d169f3d7b00d2bfd095ae01406623663d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64aac5a14d10cb02967b27775c8033a5bc8d70dbd613dbf8e5811417b5655aff
MD5 3ac230c1e179afd6cb9dbdbe82077958
BLAKE2b-256 3939400bd77ba48dbe35353bc7201e1fe6f9289117d702e0d9ca20d86f805c5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 274b894be0cf4d3167d3d55ad5521ed35c79dd531b7bf08b4d6aa76f88c2bda0
MD5 588ac2cadedd249b06288c5507d337c3
BLAKE2b-256 995df42f62f6713ad005d4e3f67f75278f9c59c4da8608442346542944e4b802

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 12b53025d7c28b7ff7f0d0c1d9cbecdc46ef93a67eecb162914fc968a6b25ef4
MD5 734b1e883129bdcc64e2f35b47426845
BLAKE2b-256 f872800855df931f910c10303b510f3c47a5ffad51512a47a8505b703d1a60d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7679c441528bd38f7b8ff4542209b54c563d8fb748f2263aafe6dda39b13acc5
MD5 972ad95d74130a98f40277e1f0f3fc1e
BLAKE2b-256 ceba6f25da7fa960c4b193a862307451ce74ed1fadd127b2c58ecd8f26c86bf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27ba23ff052904a66d5a2ba8361e728385bc6e3a44d43298d26784068402094c
MD5 09da7dec3b87c7b94106459b4f69cf50
BLAKE2b-256 563ee89cb3cb7d08a0344131a8179bf3474b8df944fe7bf443635574968385e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0cec3d19399b6986728c25a3465f6d176e8f93e6f2d7f53563eb605d8d01a82c
MD5 b7f42122a1aa4d197fad92bf6a105ffc
BLAKE2b-256 1055213c39c7bd4a46b989a7548000543f090954753a13d5b084319eb3b94643

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6978d74305e244a30eadab227624c439fdc242905e7069571477a2d5a052e4d6
MD5 139133f5fa9b1b41754e8866a1905f04
BLAKE2b-256 24c44c9549c2c79702e902611f5361b77cbb5b8c58ab10a040101f18a4049fe9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e245a4bde91ced79a5f6f09a1ff4d2d5688f1f523cd81353d9a0a68d53e30385
MD5 f824437f34a32eaa6541859d481b1044
BLAKE2b-256 796cb1995aecba751bd56017dea6f3104135e253679b6ba1fdd96474b6f5b498

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a86ac6faa2e29e76ce8c335b32b467d9617c0c99bb25e950e6a7f06dbaeea212
MD5 03ce2484fef05cebff11d8b4e66b69fe
BLAKE2b-256 ed5312e1d7410e12715f6523aaf9599ce7c62a739dbd39cdd6a89ffeaf4253e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 35ce45c760a700f3e39979929bcc60a30704886147a9271d25936de9271c2d67
MD5 9636d2953401c4320199a1d7c39f8503
BLAKE2b-256 45f98bedf9fdc4e214eed729e6bec2b2592883a061604b9568bbf537786f1e79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45530d5229dc80820eea7ec520f2290a326b3af05dbfdc9c2fedf09aa7a6710d
MD5 b932a913b886744a1b89e31e2b67098b
BLAKE2b-256 cdf6ef6c57426c9578962ea05ba0efe667b21c4ac42b516a50b8b3026b4b35f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b27b8225b8a76b44c181d3af883387a079766d6c0e3ceddc54bfd0b53a20e7fd
MD5 1baf6bd1a93e4be92a4cbf564d06fa5e
BLAKE2b-256 3481b7e02c68a51d5a629b47dbf082006c1651c79a85fb659dc4006891048f1a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8ebfac236f641b20363b86227c710a6d04e03a082b7438789874a2e96d54ee57
MD5 98710fd80ede758a15f705263e64f068
BLAKE2b-256 4134dc8cf6f3f6d02dcb71eba279f93ab1a68cb636699344a77ea65c98f4d03b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9d1cb33a3ecdd59365de36d316daf8a0369cf69ed79a28aefdb027fe7e886028
MD5 acb167c2033c4d3175dcef6aee9587b7
BLAKE2b-256 b6da4d4bd34a7336a1d19b79da56d106ff402d41d0e0e43dea2ffb3a476d1b76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 210b09d6beaf79e3dcb644bc4a656fcda4ce678aa97607db73a6a8e1fabe146e
MD5 719f98ee24be8664d494b97096c8b299
BLAKE2b-256 444f9ee913152b5eaf6de437e500f7680649c8158541294a50b2fb45283970a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b4c9a1f1d709745db0a90cee319a7fb4990b41bce036959caf38d9c289fe5ce
MD5 22d9b68836be1e059e5b0abc6cbb9965
BLAKE2b-256 eaaaf8ef6e423844bf0455ac078c2c3592edba4c40b1beac3c236f1197eeff16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4fd4fa5be94eae3bedb78677a8cc1ee2191a65c7895a03adf0e997c34ed22ae3
MD5 a2ca106e843540d396fc3a81a08197d5
BLAKE2b-256 d061cb7281660253d2450ce9638885e1ced8d243501be022421fe7ce1ff5eca7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66b7bbdf17fca6b60946e8bb3f4ce87e2b0821ad220d0ed2cf6c98b1ca50d0fa
MD5 4fecb817c4b833371d614c1a72deb1f9
BLAKE2b-256 aaaaa17853efcfe1152b9327179d0beb8519d36a98c9405d99b3dbcedcc24d88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0278c260bd125dd83c3605ce4aeaef6e84356b73bb18df409d60afdc9d923052
MD5 bc893d75ec67f4c58fe519f426143820
BLAKE2b-256 3d365baa820486e9b671523105a45b71f466690f3f72450c805c66b17b4c265e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf576747d4ceca14edc20e125766f44498cdffbbe6d7870ce3b8cec1d8284d76
MD5 6f938f2a96fe237c601aa5a4bbae755e
BLAKE2b-256 cb7bed3a993140043d0f4e539131dce7efc0377212b075375f56e2d222b6cb13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 52ff7d3064cf4d918b9078cfdaf47d2c24e56f19179a57c42e42db8863930e14
MD5 b79610ad0698f99a7799b493c18322da
BLAKE2b-256 351784995804c4ae42ad7b284186de4111f7833cf8bf7b353d6c620d4cc290ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8fc72814ebb5458f66eb4cd60be1645d7922880f1af97301ea2695f1bec1bfe
MD5 b19766d9255f8b50f6256a45450f16d4
BLAKE2b-256 533ed91ecc0a2022043393cf14737cb0772aaf9e4b4601a13c9908ec32af907d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27133d3197ec244730d6ea327f80e8f51bfa19e0c7d2f663f679ac03dd793283
MD5 951bbb3262e5302e3124c3d1101593d6
BLAKE2b-256 27effeee6990d2ab70a442933c55392c1f6c4fcdaa9931f0ff431c6a57430dee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 608ba733262f1bcef9cb5820acc5eb496048f3014e08ab0a6f84a0f9ec98d0a8
MD5 17c873105edbb64ac88ddff66a6e4bc3
BLAKE2b-256 df29f714b73232177ef11c27a000a243d5a9e75ed2610d98da75f9e573bf0934

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5a70afe144314e17e42344e1e6c57897d7df387469dca256d5cea5bd1d8d950
MD5 1647210e249642d1423f28a54a26a0b8
BLAKE2b-256 0434f25c6ec3e96b6be8fd35b4a71ea93d64e91ed2e63498bdfd33a4ca5065bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 09fc2cfc7352bb0b6e13e390803a010084d38fa633438f596c6959ef82fb9453
MD5 27142b8b17be043c04a95b044af8e85e
BLAKE2b-256 acbdeeb2921a39872eaae016cf81fe046183df936d0528a34a155551e8355ef8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0f7078c6119d5df8c292829bf7a0ac51e52346c8988c8bb7b7e852980c491f5b
MD5 30b6997f611be699b07dfc1d9686dc69
BLAKE2b-256 beb62ab0264d2e53888ad329337acffdd76da221ccbbbf4f391a2ff3591af950

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8488045413cbf4983d4b3e2bf56e49c5ae74cec9143a25bec172bda1ef1c4291
MD5 0c1f76a1c4ca897fcf5b22e71dfd39e2
BLAKE2b-256 fecaf69cb9b8ed0593e5c405d676496b7e01c665d7839aa2ce51fdb53cc3a542

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 214c6accd92a98de027c88c3246ab1a5398a8408ebea59c8299a3464080023e4
MD5 71c15b695fb9c6c01d0684fc4d28fce6
BLAKE2b-256 5eabaa97eef13dc1cc4ef80535b4d3c6bcfe35a31df676866183becdd84e0474

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d3bcc8f66e0292d2fc1b22024c4ec92f01835c2b5a75e15d2633c8d640bb7cf
MD5 788a339a7f987af9f5dbbcd8a8f55d0e
BLAKE2b-256 c70197a13f69cc31e8d3b5c011667b600d0d1d2eb44791632e6b5ec1ce70ed8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b2a7b60723ff9100731b4ed60ed14dbe8c0128a58028caeec21c78d5fae74ed
MD5 a6b4e617682b48730df506bf3582ee90
BLAKE2b-256 2b2c37ed2019ddfb2ea9e0bc4875dc065dd6ed8f525fada317042d94458d644a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11a003b768374f5bd29a7a486c1bca68241175dd6ef74c9007873d2d90ccf6e7
MD5 e4a41406d99c3d34565ae515f09803d9
BLAKE2b-256 04275f30db0f93aabb9681de979c988604f3754a159de25f3fa56459457501c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c33c65dc5489ca2a61a33769cc58badd3cdaf0b497884d627e7fe020fbe3c96e
MD5 5b43a382512d891fa1adc07a7f0e2bfa
BLAKE2b-256 a86b13206e5287130d69c5dc2bd1c377197f2755e65a44e76a467dc026750828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6e4d7a2fc2b80c65eb0f0310669f5cf79c6d8f745cc2df4fa1fb3e8f534cd22
MD5 d87e0e82b22448e77f46c10906ba5fb9
BLAKE2b-256 0bb7b17069141fd30e42fe32dacdd9a550fe1adda4f09410a9fcdde67c473643

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8a429e6431243d5317d7bb16f9a061d6e301efaf6498714180bde9a65c578ba
MD5 5cc04033af10936a7a65a5ba9d0de309
BLAKE2b-256 70008394bcae1ba8c9912280c2bbee90179f76d623a7b1da4b679bcce49dcede

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4aef14f67d4151272e9cc62700e1df0c8932da3ee74cbaf9a6d540d9796d4e3c
MD5 c260dc4b1a01e5d0bf00642567420cb5
BLAKE2b-256 4d66b6e4ce1452dda7e860a523b2e046151625404c98157486362fe978ba0f90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7eb90201b0a3681f38f58c82db12427476fcab85088a4292b119aab32fef5f6b
MD5 896837111167e6f0de1405335e31319d
BLAKE2b-256 3c613f8a500f3e74e7367f1205b32d21a7b7714d2d701ce755458fbbc835c4c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c81c5507586dad7fb1370575d16d6b5e8e470f5f80a0fdbbe8d3ec2a6be67d7c
MD5 7424169f04faee2de1d601e75780a3ac
BLAKE2b-256 32dd30eeffe9091cfec929b286f220b27ddc779e11ff42411851c94d7f2c5fd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffdca19003048aa5b93df35eda8fe7bf6c059b3788026b3276b09cb7a2838e6c
MD5 7d7e7a170c55ac09d8bae382aca5b295
BLAKE2b-256 54e1bd9a5e1ce72c0568ff3bfb662d32d41a6dbe2215a2c2a7fe2d4a0b8bf01f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 63f5d6de4690c69929d9f11ae53aa6907fdbe8a390ee22f001576b268b22d5bb
MD5 1eb7720739000c19ecd903b0aa856a77
BLAKE2b-256 526c035f5b2c14e4eb4d820fbfcd0f66c6612b4a9e763b32556d237fd747c579

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b61a35fd6bbd4f2bc16f831304194bab8891295b006abbfba859825b9cbaddb1
MD5 75da06c4df3c45374a7e90c24864fd28
BLAKE2b-256 cdb02fdc06490383f55e2627fec672256c4430f8a5a6c9cb37735f067258a8d1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a25e3245fb2aad53f52f9fdb81dbee7aabd86a496e3e0b45c69a80d22518524e
MD5 f8645287221636bcb6060f153d13257d
BLAKE2b-256 f66c94de1fd66e2dec6c63be92d84aa03789df860ba7765bc0b0a8117981969f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cd4985663cdcd1005700cfc8e1ab5ecd38ba6d43e9052784100e1311307cf2e
MD5 e42bfd91ff1f1cd460c0d555b5cbe850
BLAKE2b-256 d421252b0800ee34fc3cd6d3e1429fa0d2e23f5c925e7df4517e59432a08d033

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3504671935043750dd655716f5c8d2d3ec4e331a840c1d6f116bba73759b9e6a
MD5 2df2d9152959696aeb4ad7e008fdc2a6
BLAKE2b-256 c58c63bcce272fa92802118134f523281bd4f139ac318a2df5c28796c6bbe343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a86a6f749dcb5e22c42456375d54eee36ac406b8bc97ab1e40dc7bb6aedb79d4
MD5 fd588abffdcbc82d566c79308572403f
BLAKE2b-256 86c184fa4ce905fb9d3bc1508982bf605d6b820439dd49f2237b613696af8087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c872c444d50e4858fff004164c2b32ae760f30da577422d41146fd6e838aa6e8
MD5 5bf86cb1966ad021409c9e667fc036a4
BLAKE2b-256 9bf0e875dd1784f4a2e8abc80c88b93324a3ddcc05cb8c0e10a60547d0bd724f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 444129d7da3c7af6bf2b8204d57935243a11c721e811678352e6183b3475685d
MD5 5fea749a7cd0b7e847855368cf5bab33
BLAKE2b-256 bc124cc8be0f2a7eed497853ad0f4510d4a4301b17ffb77807912fdbd746519a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2433707fe8638b9804dace2bac830f4a40f00d4157bdb7ee89aaa1ded8d308d9
MD5 98ae30e363efd142304e8ff95d56229b
BLAKE2b-256 6ad1b4d8bf37bf8beb7b93f71c7dca9daa28c28f4c88069a00c8d47d9b4475f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e8a157afc07ffd3f26886e2e2ba068a3d7382f79617a450aaf71c0242e9e6b5
MD5 123018ea631522e4fe8070aaf57f8981
BLAKE2b-256 879bc8f3e85dfd9d7d64a04e24657dfa231a48b9b44f37257573c0b24ceabf6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a2655f8debf3c96a7a2e2a687d2bd1175944aa4c6f596cb0fa5cad582f9865d
MD5 eaaaf3a8b6b51163c321c98f116de129
BLAKE2b-256 3b375e68ba7406217d5fb2d1fe2e118f3157525959de652da5b26a2889e97603

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd004e32913ea915193ab733481d20cd0fb837934de1a49948332b63345b4d64
MD5 f9ce0b93ab1dcccfebfb9c6aade03645
BLAKE2b-256 61b5df5898f3f790552271ba044bff58b741ffed8ff475eaf245c8ade7901ed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f97c8bd35feacc17c3cd9b0b46ed39308a6e1c319c3fe8bc621dc658dce6043f
MD5 ad4f7fcb1a3bc8c6767274cebed08862
BLAKE2b-256 da254ef27dd88618c6a2fe6fb03f64534dcd3e6663531bae138d93d74b87896b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8df732c98620feb2e547c8569176d20075191d12126bc3d623c427cc17969918
MD5 4c7f113e1a93e3094ee2d831c38082e4
BLAKE2b-256 cdbcd70b0d975597e75c379fe836fd6fb72c59241885a2bbfc6b3bb30e5e7801

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9503c112bc9eaa3a25b630576db983bca363ea410acbd84255a2872c27a56f2e
MD5 e756ea8b5166be020522569d04131c2e
BLAKE2b-256 e1489e94222c81af15f7cd61efdb1675cb47f5270b9c1972a6082ea03df28d93

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b8add9d862fc190bd256804e23bfd4d5992064b4782950121fc0e6b54343ae04
MD5 ab6dc9ce787a774965a9a28bd717ed99
BLAKE2b-256 35ca40049f775b12906cd22912b92b66a374883e796c0ca653d0aa6b4f2b24b2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f5e3e67ab029eb24c5b7eba668d900dbc48543abf9028b591a985bffdd907d8a
MD5 a5aab7b335739b951f4162a50310deb9
BLAKE2b-256 4d3abc0f5ae204494c47e46776e16f24592a6bbf700e98933b96967b228a46f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f15ceff2f39753d1a0d7d8e2695ae688fb171f0744d32a4ba05daef13e097686
MD5 30f5b16624d860147b4e04c9e3991970
BLAKE2b-256 56c6f2cbc40cf0a4eca202f7fcace67ccb226932b8ddb605300a54ff086e0fc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbf9a0c07b4d3c1b4f417d67932e8b82edd9f7ba4824581f90ecf15ef5a50558
MD5 d4eacde363af5d7eb31a4a9361e30a87
BLAKE2b-256 76aeef99628f657083c7df3a7aaae47eadf28d63140b16d1ab7ed28a7af12070

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 95b93b83c2fc777c803724fb600032d14ca2cb1264c5eb9d8fd61fd935664282
MD5 1de40aeae3df58d8df0e63e8b22147ba
BLAKE2b-256 9a80c72a8d4df606f20b94c612fc09f3bb4b40bef15f982fc5d761f3ad33ba5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7074967c9453d33e2a7fdb303ad99073bc224cb9e97cfbb9d6939e612c7cf78f
MD5 85d6201849bb09841ba312b80dbffc28
BLAKE2b-256 7afe207c6c60259d4b59b3a3ae66e25312067141cc920f6c48770c3ca2dac21b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24e3b7e0ab8aebd678ac777bac386e7fb67bd9b81063f678f4bd84da51247ec4
MD5 278966415c0bf4039ec185ab4f5adbdd
BLAKE2b-256 a313e36a4a7cd421b0165cb7ca65aecccf16ad4a2c59fba22dc59cd3a5a627c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 00a9bde975466aef2369ee1b78c727bdbcfc5a60443264c6124d96f60f0e07b3
MD5 825613166b7f66414f178c820914b9bb
BLAKE2b-256 57b911907246e776844d730fecd3ebc01ea0fb0824b1e715d910c1fbbbc69ea9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 371e2e880efaa7dd8d4556467b67ac538d954782b7d2008dfd10609a706a184a
MD5 8e45265554ffeb15c55fcaeaebe4df07
BLAKE2b-256 c752aff3be0affa8982eac4afc66c227cacd036fe0fe262db8374ff389a9f460

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70e3a315c098038c6d38fc46a4b5b62a1773425b1f7fff72c9690b07fd336218
MD5 2949b0403ba715ffe226a86d75fb14e1
BLAKE2b-256 1bd6f49e6ee57dc34ed6c624c4e582b924a3ec3e43fec094ed6d292560c8f667

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff5d6750307fded074c43b8a2ffab7edfe0a3137fd2a4e1b68888a02d38a0a75
MD5 cba4124b5cde5b92b5245b2d40349703
BLAKE2b-256 ccf5a47fba0dee3d9ec3127b35d3f27d0c07b407c64c359f22f826b43c020ad5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 19f2f994cb8c55c0abb5e29ba0a4b6aeb3bdce205fef726a82fb7e8ffe98c030
MD5 f0912fdbf646ee8ef54aacebfdaab4b6
BLAKE2b-256 75e7656d0ff73f48e259dac41a436ca99e8ce073a50fd1a42021892cec1984db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b625440641c93c5574c06c720ce2d28cc20a6f07a5dfcf5cff4607ddd2c434a0
MD5 616ade09472d49ef1a4c95bca46ad239
BLAKE2b-256 f895a7cd3ae6596438f580cf8a1f196b8b8b44619265028a7b2e63712d4d5c8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94303c122249ae40b70486fd99c384949f757898424613412c338ee794a56332
MD5 a69d4831115f13ca0ae4bc3cbc582c23
BLAKE2b-256 d62941eb6945633f7215b8c3d3081469d3365b6b9bb912c9e2c8568b1b15d08e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 938c1dfa79767c849ae6cd79062d3796efb1040652fddbab43018484e99c2ee6
MD5 5502f922e32b22a8b810a9a87c623a47
BLAKE2b-256 ecfdb53ae65d0f2201232819caac2d9caaa1ddddc05f695b65a177b453a60365

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 12c0bf283313a859c5c9ff1379eaeaf80c7280b366ae78badeb198698fc704b8
MD5 1c064f6c4fb03fae179cfe394da5801f
BLAKE2b-256 e1ea63e4acedd88f0119bdbb3f909e81b24c08fa086098a10ef4b089ec10d37b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b16e37402cd413b4465c456b5614a804615b36eac6fd0bdf07973672ced3e95
MD5 ac9056d114473794c5550f1b2d2b358c
BLAKE2b-256 481c9ceb123ab91ecd0d78829a91d624dd594f956ca9e4b81f6c005d62f00b6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbf658bb254518dac123bd7d143045ed0d348406482a95f8df2343c93bf3b1a7
MD5 fb969e362d8239819c258740f870d441
BLAKE2b-256 49dbcbf55d56be74471e501ff6d224e9eb30e047cf9949a132330b4e1c8645b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d883f20c5568d86ff4aca402bf2e4ebc963fefeb4bcdbfadf3d15d657318702c
MD5 7c3585626fc5626a61a814df31c556d5
BLAKE2b-256 c0342ab87e12f37c18b0ac2d8b37998f7e2de32391485a2acfe4562948fb9e4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6756aa4ea2a9fecdd904d62ed2956b9be75d344dd77f03ef43f32086e1a2a06
MD5 0649c1ae9d04e5278921088c7155bcff
BLAKE2b-256 d0cbfea97b4951298175c55dd3dee0609f365ac23f821ad505388cc8247a5893

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 586f5a17215b02b5271d4250b583907a2cd7ba2676c6165eab1ffd2bb62c99a6
MD5 4e65cab7aab9aba50f8e95d57cb6706d
BLAKE2b-256 d2498985b312df03a104e7b94715720748723ddd9fa2006e82a7051078a5b226

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da007debee81580b81b18f7a157d5040d1cf9d2cccb77b00a7c91b2719db6ca3
MD5 54ccc7ef4df0234bcb9987374b3df42a
BLAKE2b-256 56f60b2e62bde5cb73fd745f748d72822368aaa40e0891b74670edd51e007a5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ad7c8359e670467e579964cfb6eb6dd96b4a266ce0f2ccfb18beca3d77a08c4
MD5 5312db7a09957611779db609a06a3be8
BLAKE2b-256 3223507251807365ae04aa1464917e474f7e52c65af5abd36211719461506510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da9af811f186a0611ac6fadae754cedb0c3d907e658a4ec1c592b20fa67f162f
MD5 dec4a941cad2fb5dbfd6e26d11ba63ff
BLAKE2b-256 396cc4532b16b63d130c9963ac69ffe752574c3d60fa671c88400cf150fb401b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb1121234426d66679fad6e4f5c95776604849f69ba4c3cb1a4fb8bd795ef907
MD5 d8e5dd1e8b1168a78ba13f1475f83a94
BLAKE2b-256 e28f1670f258f5c0ba9acb7035833dbc9adb823c5632a944ee6a81363f69f89c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 86b2044de8d9458d5416305193942b674bf01d388a6e2d44cdfbb9fb7c6f1a26
MD5 fcb1e08b6588e5306a5f185a0243e34c
BLAKE2b-256 6434e4288bcbff4283b191ad809937fdf94e86ede98f46774003717b59ce1c63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 909b7b6ea93e068cca78f359850efb614aead5ab12ff5a03fbb63aac29ed3532
MD5 df9e2e5d896a5bdde9e6119bb9f104d9
BLAKE2b-256 d86099d807f5a1cd55c88b5075d8d11f8cde8a180ed727a98dfccb0a2b32ac08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95701e4f0485d85b43eca585b8d4e3bf566bbe550bd62162e1e530b2e924b7a7
MD5 45185777cc3c7a5d51ddf4979b3727b8
BLAKE2b-256 6672012764da670e4ff3b9acb69c88b7edb6898f7481b2810ce1052631052559

See more details on using hashes here.

Provenance

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