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.1.tar.gz (434.6 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.1-py3-none-any.whl (121.5 kB view details)

Uploaded Python 3

whenever-0.10.1-cp314-cp314t-win_amd64.whl (565.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

whenever-0.10.1-cp314-cp314t-win32.whl (613.3 kB view details)

Uploaded CPython 3.14tWindows x86

whenever-0.10.1-cp314-cp314t-musllinux_1_2_x86_64.whl (832.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

whenever-0.10.1-cp314-cp314t-musllinux_1_2_i686.whl (935.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.1-cp314-cp314t-musllinux_1_2_aarch64.whl (781.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

whenever-0.10.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

whenever-0.10.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (669.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

whenever-0.10.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (651.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (730.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (603.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

whenever-0.10.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (729.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

whenever-0.10.1-cp314-cp314t-macosx_11_0_arm64.whl (587.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

whenever-0.10.1-cp314-cp314t-macosx_10_12_x86_64.whl (604.3 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

whenever-0.10.1-cp314-cp314-win_amd64.whl (575.2 kB view details)

Uploaded CPython 3.14Windows x86-64

whenever-0.10.1-cp314-cp314-win32.whl (619.8 kB view details)

Uploaded CPython 3.14Windows x86

whenever-0.10.1-cp314-cp314-musllinux_1_2_x86_64.whl (843.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

whenever-0.10.1-cp314-cp314-musllinux_1_2_i686.whl (945.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

whenever-0.10.1-cp314-cp314-musllinux_1_2_aarch64.whl (791.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

whenever-0.10.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

whenever-0.10.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (670.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

whenever-0.10.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (651.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (613.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

whenever-0.10.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (739.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

whenever-0.10.1-cp314-cp314-macosx_11_0_arm64.whl (595.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

whenever-0.10.1-cp314-cp314-macosx_10_12_x86_64.whl (612.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

whenever-0.10.1-cp313-cp313-win_amd64.whl (572.9 kB view details)

Uploaded CPython 3.13Windows x86-64

whenever-0.10.1-cp313-cp313-win32.whl (617.9 kB view details)

Uploaded CPython 3.13Windows x86

whenever-0.10.1-cp313-cp313-musllinux_1_2_x86_64.whl (841.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

whenever-0.10.1-cp313-cp313-musllinux_1_2_i686.whl (942.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

whenever-0.10.1-cp313-cp313-musllinux_1_2_aarch64.whl (789.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

whenever-0.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

whenever-0.10.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (669.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

whenever-0.10.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (651.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

whenever-0.10.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (727.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (611.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

whenever-0.10.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (737.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

whenever-0.10.1-cp313-cp313-macosx_11_0_arm64.whl (593.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

whenever-0.10.1-cp313-cp313-macosx_10_12_x86_64.whl (609.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

whenever-0.10.1-cp312-cp312-win_amd64.whl (572.8 kB view details)

Uploaded CPython 3.12Windows x86-64

whenever-0.10.1-cp312-cp312-win32.whl (617.3 kB view details)

Uploaded CPython 3.12Windows x86

whenever-0.10.1-cp312-cp312-musllinux_1_2_x86_64.whl (840.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

whenever-0.10.1-cp312-cp312-musllinux_1_2_i686.whl (942.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

whenever-0.10.1-cp312-cp312-musllinux_1_2_aarch64.whl (789.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

whenever-0.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

whenever-0.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (669.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

whenever-0.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (650.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

whenever-0.10.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (728.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

whenever-0.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (737.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

whenever-0.10.1-cp312-cp312-macosx_11_0_arm64.whl (593.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

whenever-0.10.1-cp312-cp312-macosx_10_12_x86_64.whl (609.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

whenever-0.10.1-cp311-cp311-win_amd64.whl (564.8 kB view details)

Uploaded CPython 3.11Windows x86-64

whenever-0.10.1-cp311-cp311-win32.whl (613.8 kB view details)

Uploaded CPython 3.11Windows x86

whenever-0.10.1-cp311-cp311-musllinux_1_2_x86_64.whl (831.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

whenever-0.10.1-cp311-cp311-musllinux_1_2_i686.whl (935.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

whenever-0.10.1-cp311-cp311-musllinux_1_2_armv7l.whl (995.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

whenever-0.10.1-cp311-cp311-musllinux_1_2_aarch64.whl (780.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

whenever-0.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (618.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

whenever-0.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (658.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

whenever-0.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (640.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

whenever-0.10.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (719.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (603.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

whenever-0.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (729.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

whenever-0.10.1-cp311-cp311-macosx_11_0_arm64.whl (585.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

whenever-0.10.1-cp311-cp311-macosx_10_12_x86_64.whl (601.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

whenever-0.10.1-cp310-cp310-win_amd64.whl (565.6 kB view details)

Uploaded CPython 3.10Windows x86-64

whenever-0.10.1-cp310-cp310-win32.whl (614.6 kB view details)

Uploaded CPython 3.10Windows x86

whenever-0.10.1-cp310-cp310-musllinux_1_2_x86_64.whl (831.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

whenever-0.10.1-cp310-cp310-musllinux_1_2_i686.whl (935.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

whenever-0.10.1-cp310-cp310-musllinux_1_2_armv7l.whl (995.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

whenever-0.10.1-cp310-cp310-musllinux_1_2_aarch64.whl (780.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

whenever-0.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

whenever-0.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (659.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (640.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

whenever-0.10.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (719.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

whenever-0.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (730.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

whenever-0.10.1-cp310-cp310-macosx_11_0_arm64.whl (585.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

whenever-0.10.1-cp310-cp310-macosx_10_12_x86_64.whl (601.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: whenever-0.10.1.tar.gz
  • Upload date:
  • Size: 434.6 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.1.tar.gz
Algorithm Hash digest
SHA256 af35dd3dd6ddc4136422d3b4bccdefbd57ed01fd2276fa38eeb286aa019120dd
MD5 5ba445befc68addf4630d6832614b407
BLAKE2b-256 2a02b645299305fbcb15e9668bc7e1e347474b966079b7d3160af3dc7957e872

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1-py3-none-any.whl
  • Upload date:
  • Size: 121.5 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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ee20f0faea2f18852f9d9cbb3adcfeca4c764ce2c92c38c45bbcfe50dc153909
MD5 6323643831d2666fddc129970b249fc4
BLAKE2b-256 3b6ad5046fccb7e63e5cee44ee16c3ebf0ecec78a27c279407cbd01fd6079df8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 565.1 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cf4a20a5383d699e7f18422d26b7e56c9f633079b59f07efe28e2829d38e7541
MD5 8089ef15f99fefbcef66b8339a47660c
BLAKE2b-256 32807630395da5e34f360d93f524ddd9d3ffd79bca59bad45cd7fc05f78aaea2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 613.3 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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b1895a1ec31765257868d4c93400ce2abecf676f4735c427ce1a5a1e48950ee8
MD5 76bd770a586b5a9e3dff13ae6d85b2a3
BLAKE2b-256 acf2a06ee19b64e18e7ca1f2db45bdb57027009f55bc0dd0d004bd37ab7aa1d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e72b097e8da54fd8352d0b2d6b8623d8d175ad590e6f537e5470684c93d8d14
MD5 fd9b07cf510269f94edbf947f493854e
BLAKE2b-256 64e28bb28d9d58e43687290f9b8a7c31040e4992a682c580a3ed68143a3dbe2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 277d708d0df2a383d1e6f690b08f526d37d3336e74c3709e707345edc6ec1e1d
MD5 8ebad7154a60600e65992ab1a9254f90
BLAKE2b-256 553ced5716f8e117453a666816c296749e594c21d3c00dc5c8dbd180844ad8fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c364ba41ff942cd88de9bdffdeb5c7f8aa017e8d023760d17bea32f3a1cd098f
MD5 527e5e719feee31767c074e278eadbf9
BLAKE2b-256 212794fb49dabcd5e79ff16cdab412e5dfc418f8921144d54049bbd610398bce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1671c17d44b74522e2463e882c114dbeeded83ab4b9b45c2b0130537cdae525e
MD5 cc022cd51271ec67b143ddb936d83fb3
BLAKE2b-256 a7035992191eef4dec6f175d10491244465667f4b45fe6d72f3f5822244ccfba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80907b3146c9f9a9c315b052fcaee8836c8c9a3733dcf76981150d295c995eb2
MD5 2ced590e1b8dadcb7820379425946173
BLAKE2b-256 d14dcbe9682399903e4f57ba26c2b6e3bfe1f077728c035b534a7f14ce65b8f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8a26b3f5f49ddbe7bfd6926856e222c51c7036a94d00902791c9427710d7f19
MD5 93bb179bf349130bb4d534cc92ff029b
BLAKE2b-256 3951ef5c93911ea9b84cc249663c9ca9ca3d916a2fc7fd74a1fee8d91f098d54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28a9cd44497eac7f0ba776b17f8bd838ac4503de1e7cb33df26c2294f6953cf5
MD5 fe4c45e212c49a930626c81fb3ae02fc
BLAKE2b-256 ce400fd7a69ac3d5ef5d67e7d0e30e1157f413ea46ccbfcd46042df3fa03a231

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de82c0e6cd1179c39b134b65669495883626f24ec61360c04a8314d2ce53d885
MD5 3ac4be96b107c620d6a6e28f1a85b051
BLAKE2b-256 26fc42a8f4f5add98d1884f20e96c5eb7ddee8a5fb1643c14a293ebbf4726840

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1ced0ac0f84f7704a54365d1c661d52e51dd1ab29ba9a9b583779c2279b8694
MD5 1010c72c775ced4437b1f71f4dbf3b6c
BLAKE2b-256 e662614b076defeb38cc500755df1f5e758c35af130de9bd27e3a0c008ae3a17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1fed4c44adb5fd1c9ace93abce830371e95e127246acc2d16108cc587fbfef5
MD5 e488ea8a4fe2f573cbce10b95d871ff1
BLAKE2b-256 77564e49e0bbcbbb0bf8772543c4d2702695bc794b67ab01c3763c4d05669703

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6c6cf85a7c876cf069f98672c0e903083c47f31414ad677747713c6532e2c64
MD5 64472d65f8ec67c965e8f0402932227c
BLAKE2b-256 8f211e8a71df1b14b895871aed1317739df9482fc6bc7abb27d49135ff549fb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56653b010afd3057cf390e0ea6b1335bfc843bb2540188ae9cb6c16e4ab6c317
MD5 7da034ca2ea784ad77a41836ca7ce5aa
BLAKE2b-256 cc45b72a734d827a3ad7b76690eb1bb3933845cbce1f8ad15e490ed420206816

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 575.2 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1459333e43ddda53bb4d432248e1cbc98f5640a7730cd83485a9bc80cbe64307
MD5 80aa4a9dd506d5cd28a6403c642ce62a
BLAKE2b-256 5215ffe7424d3ec32c9cb7a0813984a2e225ec96a4a3f134a4202a0a238cc6c7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 619.8 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 17900fc01b86be20c5e631f8595c920637c3dde7cc67956836359249278ae085
MD5 b599543aeac85a03b7a87bceddf2f06e
BLAKE2b-256 379f96df43bb2c1f29a558d8b7932cdf810392b99de99ffc40524908786eb4e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee62f68cfa4792c39ee7f087aba94993c519f5d1beaea5b5949ed7687a38883d
MD5 2eeba2cc760908755f6f470bf3a7d2b5
BLAKE2b-256 ce72af933cf4de7e93938ef53d2b22e424b9a4d822c09890bd3fb5aaa7c05a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6278b4b86f769f432959dd0df10caf2e701bf2de69f155ab703c109552ee160a
MD5 f4afada0b19697fc79418f35efa9a455
BLAKE2b-256 db051a6caa63fa0efa7963e9f620e5769f2409a4cae7e215d7255bc23cb081b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4f85a1d86daeb302d77f90759ab86bdd9a842048564480f07575c10785d9d5d1
MD5 eca02ebe9a9e72d7f4a6cfc83641c1a1
BLAKE2b-256 73daf9ccdf30c01da0d661ce2f97c966a4060b7fc59d9eb6ac461060542cf101

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19d301a1f70b159be703257d0983b95ad56c3e9ae3c9e90f9305941021c116b7
MD5 efaff93cafb57a53f89fdabed6d25542
BLAKE2b-256 14dc8aca60be263a51c927ef764688f776fd9d2f33a2c8795f0f7e466aac31fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92b9ae99237d07cdd4f24d992b24116a471341a74637aa09e72551c3eedb8c03
MD5 9ee07b8a9f0254a599721c7107a576d4
BLAKE2b-256 ad05c097ec2df72cc3c23f928e75266a2f542a2d89855b099441e529543c7eab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a93f8bbe73330becfd0317a4bb48ea4a02b9cd4c49c999c75052066c0900c46a
MD5 b1529256fb88895b8bbc640ff5751a02
BLAKE2b-256 2b92f978de8004b33f289296fb37987cc8cff8423c8f0df2a98e907837c4fbd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 746eb6fe5750437fcbe2dc15fcdadb75b80e61b4d78a223194458564f70ca5de
MD5 289ef538892c73604761cb33781ab95c
BLAKE2b-256 379ea7df714fba4c72a71553c8c13f9b08a80c45a05dbf94a8499c5ebe02778a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8afd2fd70036ba664b83c2a7b389ae67c3e55f5428b649ea614e5be632b695c
MD5 7541c608d061d6097572e8fd078db236
BLAKE2b-256 ca39c8d82b582af70bbf730496efc0d1c766cc16726e694298820a9ee7b85bca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74e015d5c4476c594af154ad692862e7f8c556a2f2df4671f2a78a5eabb55d37
MD5 0955b622188e7b988bb042a21a02510b
BLAKE2b-256 4ed3ec8ac23aab80f3fe34656f58e3099a88b939353018048a33be23cacb46fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 198f6a25c614c09538374e76b3b1843c78591d25fc5580363a0e39a3deb2cdf7
MD5 13d816e1d5140a5f697e6d0f426301b8
BLAKE2b-256 2bcd0d8ed582b91b480715c9fe4fed3568f976765b70ab3a5e9d6febcc81bf11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b2213e391bc5d637e39d9049b8dfdbc5dac4b5fb07b01a81f43adc751cc9e57
MD5 2ac3e3ca6555480b262f236f9328fd04
BLAKE2b-256 46ed7c5dac4df827aa51db3e1b3b64b91dd4cd7a142a90a2d79c7e61427e8964

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 762696c5400bbe899899125887b6f316594ea1fb0dbc973527d75aeffcb7356a
MD5 af7359bd907ea0b9ffa68d1727457758
BLAKE2b-256 8ae6e850b76099f1fbadb333727e70d02802d49d0c23f348260d57ddd1dca51f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 124abf04e0dce36dccbbbace78aa015869a654185bce312ed6e043ede79f6d0a
MD5 a870fafdea9095571c534c593468d97a
BLAKE2b-256 a7da6953c1aa3d1c391e100d5444ca3df0ef29ce68754e82cad6d0075402746b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 617.9 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 26b219ac4c528df5e14b8d144031f3ada101bae7e06fbd1e10772a814c3dd278
MD5 496d669c2155083810978878c1eadff9
BLAKE2b-256 ef2d9c1450286a9abe8f43a7d9d8c770633b9050932ce8d04ac89254659ff6bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03f81891fb64068cf8fe7331fa455480efab8b08712cda33fd9639e69945854d
MD5 7f6bce4fe79b612870711253941e6e6d
BLAKE2b-256 b697a282c3869d52d99c848629cee757acbc1ef54eedc5b2f5a13f7388ea6fd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 591856affe5a613fed5095153c145390cd7658920481151b0ecef0f3d95abda9
MD5 54f4faaa95b14b435adb11954bc8cf69
BLAKE2b-256 eb2705e7c1b92e24578915c320eed32eabd40571e464b8b98b93272f5930dfb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ff4de36777d1f7f4fb0843b9f450a8b7d9e1668d4abaa33e12477ed876ba2e9
MD5 6fbf73aef94ed0d237213875d48b56a6
BLAKE2b-256 b276a55c93e6d6603779ccc5706fc6df9a20cf1061470f1fb6811d11c786a075

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee9e09d94844b689be78398ce5ac1fd3020d7b9c62ebe8230541de56181ecb9e
MD5 ce2967bfe12e5a12b25472387a4216b5
BLAKE2b-256 3e1dfcd74dfb3ce380ffee1f2ec322cf0fe38d67f5edc69d1e101e46e20cf05a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eee7073d4f1e0d382bc30f8e8f0a7a7e2e94b6b06a04d51e036a8c3a7391bafe
MD5 33114565c1b1780c0759e5c70fa8abf0
BLAKE2b-256 b8eacb100205d6d2b1e91bdb9b7443ee96b944e92b503de41aa4310b0b8cc00d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 325fab30d6ffdc9735df8464a6917af3077b7690293f14653abbdf493108ecc1
MD5 6ce6646a95f8470eaeb653bd345f4d02
BLAKE2b-256 82235c03938bb9d27d8824b15dc15ccff9d0659686104696aaad10753cb7948c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c1f37eb26e6abfff5002a8707d14f4180cc1116d65303e4fbc0afba7a17289c
MD5 f3ff2c90ff02a852efb428a1b2356780
BLAKE2b-256 72d48d609b6f0b5345945c5ce89203a7b0ff3cbf89f5a02d3a45775bab06c799

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cabcd7403c3436ca4d864956e0d088059950f7b20bae18fef2703b0e9c019dd6
MD5 0d846e50d3b45bd0fe5d277e2914ccdb
BLAKE2b-256 18dd40641f5473f2f625d8706b4b8a9374d764165af117c720c6288985089120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9051ee8b0031cc2498c136f24b3948c6819da8e26e1b93473a71225354c35e6
MD5 7740ee6c851c93e34e627d14ef7a3028
BLAKE2b-256 5119683b7ed23845e10499c7a6c1148cecccc3a27179813b27ace712c1729217

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8653fafd56d9f27579ae370031add5917800789eb3d853ee1c7755fe65c8425e
MD5 8c9396610995a7c750016b6029572aaa
BLAKE2b-256 a85a72326f124b7756bbdf0bf4b3411a3960a1f01bf9d367672da2a6c6881545

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1ad53505d0ecd167633c8602562844c75f32da915d2ecc0a722220f56e8c6f7
MD5 55f00e3884eec3962558212646abe9e6
BLAKE2b-256 22d23f44f5c27079331dea0c3d54379b48376de264be8bb68a8d2bffbe97588c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b9552f2c55c7e2b6898f896b8a2bd931cca91f06d1af12b727cbbec940ac759
MD5 8d588f39aba9957e6ef9de13da424474
BLAKE2b-256 027700c1cc66196f89ba3fe2f494ec49332c4e22b4c4403f6c7912b744033dd3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 572.8 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef19641828d7dfc96e372855fa219fe4953078fdee7e8d344edc4957efce993e
MD5 ecd7fadc4e2527493179a870cd078491
BLAKE2b-256 9f273ed718c55a1b197390b9a8b583cd1aea73fcd2aa859e49e530d42821060b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 617.3 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0f0c7f615d25f8a1499270852a49c976272ebea37f3d2e4ed7af81ddc4d2faa0
MD5 697fb85d82bcce91e0edafa2e2cd8eb9
BLAKE2b-256 efc20018675b2dadaf248d518fa4fa73defe3160687f02e9b048cd21da3e9dfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00a0ee5705caed79e3a3ab7d4858a4daf40370582551ffa7f8c1e68713812238
MD5 ed6fe3c6bad5d74a7d1e668e8bfd4768
BLAKE2b-256 e6b4c1cd9e2f17e2f8ee02ec1d7b41d126476b39924c03d820c01bf9ed9d69ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a2456ffe730ba8414c530d175acdd762104ee0f47e8c96b599c16a3efda83649
MD5 535d39e49caf6ac16fd5b90a900d14dc
BLAKE2b-256 08ac9831d62d2b8baee71e5c557bd5c0917daaa2ec40618ea804aba9772d2308

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb8d3897f508f2b31a4566f94409f2d035a05a2da6376c2dc102b5a6c7eca69c
MD5 d1e6f55bd4aa2dddce2de8f9d09f653a
BLAKE2b-256 6db7fd397dad9c81dc3b0b4fbade9d1453977b92db711332c6a52a788b7097ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29948d960b300bcf7c4c0f2d5238728763fdfa9a1cd531836f2b9c2edbb50968
MD5 91224c8f3ef3535e9fe74adb44c77b16
BLAKE2b-256 a1974695b2cda03ec2868ff413d1fb604af1afc9aa4437e0042bd962d0740438

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4383ec4fdfa45aac600a8e164bd4ad8251f1dad034bb02293e0d995b89224a60
MD5 0b531f91ba5f5ee38be575411085d418
BLAKE2b-256 eccb965f9c013fec767a77b9330ef898bcc30549315a9866219402d780f3b498

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a9ce7fb576876e337bdc83ba95dce7de5ee5e6aded98abc9b19f98fa7bd9a48
MD5 9749fbe5f3dcdc30cdce6e1429f0be41
BLAKE2b-256 a513d0e3cec1524ed0b37e45b22cf865687357076ac16e579cc71babc79292e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 412bb9d2208afbb3d5a897f04a691b58e56389052535450080b17e2e0d2abc16
MD5 d71d8a187f7941b449883fbf2e52173f
BLAKE2b-256 04e3ae2d6024713ee67d58a50ea6e7d754adeb362e80cd63c4c09725ce500bcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1aee9c78bcca2376a9cf9add52f70e310bae9da793f2a24135ade8abe6ca326a
MD5 1aa9a4b41d4124dd19e5320f4ed75138
BLAKE2b-256 e7fec7ef983a28d1b49c1a422b66cdce93ee21c0787a02bff69ada1d75479e33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d0d67582ebecca80cf2265640fb4c9497846d70ecf3dbf5a653dfcbf4a15215
MD5 4a770d78363318f0bc2cbc5601277798
BLAKE2b-256 4f55d659a64ac744cb0fcb70ed209f8694ed5df25700a170e4cc3f400c1c0409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7bd344f209d5753f8691a3671c5da879f250bdcd723a22089509079929ddecb3
MD5 104719713b8057371c216106a10cd5bf
BLAKE2b-256 45bea7e2c070dfd8547fac5ed144c4ff8c37d7f6fa59768eeda7420028ccdb2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e751108ddf5886b0a54768c258f978ff0a81a3190882d42439fb12de6d9fb86
MD5 aab5ecbdf00d55a3e6dadea1658ee37d
BLAKE2b-256 42d72bff3682fcd86f196848efdb13b797904ce8bd0abc9e685d9c19b8ff8e43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 113025e2a3eef137efc38c60bcda4c56e14964851dfc23dcc68be377b31e7dfc
MD5 b70d2d76135b0166f769c8ed290240dc
BLAKE2b-256 99e7042bef0afb5064ee837652c542b49c2e9fba80d56ce28b1f02855ef7716b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 564.8 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a469d922e6a0ff43be49418694a5ce41b0ca737b9e1087976d370b5203e68bb0
MD5 a5b199694bc97ed05cc9e3eabf7c9ce3
BLAKE2b-256 1a265dbfa0624530afd76a73d5e9212ab15ff631bcae5b48e4de23fe2bb2cae4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 613.8 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ebb12fe4fcabb501a3657832ba13a8aab05da573da21ed47c643b55c769710f4
MD5 b8faf881a524f0668e8f941a5ba1b989
BLAKE2b-256 2e546606a30a60f92d62cfc1926bfde5191f272ccbeae5051640f9dc7dba3c06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08953258035bbb84cba9a0304067ba53e5b9ded3fb82588fea6dd82aef62dd7d
MD5 aeb1951e5e334ef3052136999138a0af
BLAKE2b-256 fdec86146897edb927513fee982134fd64fc964fed7ecb453dec622e0f5279db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1dd100a979ce01b9521f3b4143e2b61dbe8171cf0e0f4d8bd42ce046771e6cc9
MD5 b55b1f1e7d4e2832cb2c3a5ae7a266ac
BLAKE2b-256 339b26dbba49980f97fa06773f0c389ad99f8a13cb8d8a78a7ecf381e7baae13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d91742ae38316f9555c5d0a4da41a902450074723a1e8f89fef717e5876bab5
MD5 546cd2f908cebc2ba62abc5d677f509a
BLAKE2b-256 6594685462181bb545ced7bc596c6f4b0f624827e367609aac9251c349aa8a4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c260607115c23c3522bc3143ccca11e922b8be331afb462b63963bbab9d7753
MD5 4d221efb3feb16fd8fea12cbd80c4dcb
BLAKE2b-256 0dd906a834a8bf710122d3bb9a62fe9f9867a91cdf0d79293e4fe649f48ed217

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf493820d0011313f80cec3ec704e18ee198b6560b676c5caddf13003ac06566
MD5 b160ce4cf743c5517b6340f91ea21edb
BLAKE2b-256 ba8bc2b17efa5c806d6ce4df08e41d3191dcf7e02d4d2b4525b8f97aabca57db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d72ce065b06758ada08ab1a916611ce91e2b9166d95e5d1e41f0385f1cef83ca
MD5 52e884b214fca01f83e3da0e412cd70a
BLAKE2b-256 a33c6d476160cfaa7e41ff819227a81ed1e8d272e04d82d3a71fe9b70f0acb10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89617377d968ea042d8551172856385c7b6024afa7c6577e88679cf64d451cb9
MD5 c83bc02f6a1a1cbbb3bcd44237fe71db
BLAKE2b-256 f3eb6c997fc7cc284a31a191bc8f985c6d90f3d269883e73badaaec8d2e91b71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91f85534cc242c03762b6d88b5ec63a9005ac78228c630584ccf7988cd3c8b2e
MD5 dcc6dae22115c5b7f15377534f295dff
BLAKE2b-256 019a77035d064820b3997454c6ce1904d64cb93dc3377f2ca8ea097d19f8bea6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44c2c970fb9a92c05fb83ba2f8ce9e1f52b91bb0d71c09fc0cad4b3bc56875bf
MD5 182f0cba32696f76df4c7fd0cd2af673
BLAKE2b-256 abcedb9ae2b3d00d1e61628558d813cb2554f2678ed6265934211e3b2c885514

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a27f004b500b2f50f5f6d8d9151c853ae3ae2a5777aa2c8abdfc3eb5d82927f
MD5 477db933d24ff8a55cf8bf27b083e2de
BLAKE2b-256 2c9a2f2730d12bec8d77eb4d14e2dff834dcb7388db06f2cbe5cb7d0db742b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91d01e06d02d1c6a47d9a3effed30ecdf3f08c5a507f5582e0d0ed6fb3e19066
MD5 c9a12e2d31b35c3cf0ca45636ce00848
BLAKE2b-256 a4ebb0d92310b4dc0ca4a2ea69c4c7ba7f7202c0a3164258e961171f8ab50cc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cdb45ac279d4c13a08f1a2bf3a2cb9d16f98b5b3948945133fdb0c3e49a7e2cf
MD5 81c93d65e660da8ef33508ed6559e421
BLAKE2b-256 e7abb8a8d256adff44863a21450512b6c729f7c7a24c49a0f9c65f43626719ac

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 00c938f3a22408483fc7d485013d2f525dbd0317cb3520372518154e39012c23
MD5 e09e3225a184cf7b8dfa3f00235a5f3d
BLAKE2b-256 aeb09cb93e51197a30b02c5c642be2a4caeab45c248696917d5291019c6b5923

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 614.6 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 98f474a3a5ebd204b531396616094190a0b7fcc1557ff2eb5c3f734ed082ab06
MD5 74c0f26ccaa06cef7dfeccb64b96d2a0
BLAKE2b-256 c2a985c5ffb343bc77d823487358f228562900dfeae1d13c093073f1ea59ff90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdbb15a2b4ab582493bea4a107dcd823a8ecdfad888d73c71285fe3f4a7ccb41
MD5 d50a214122079e805fa571e969a0fc07
BLAKE2b-256 742c675b774200105c7e686ff68141cf97c1f8bd89e19e9970b71a1567cf980f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51a042dd28adba2ca429142d927686315e0eea4c7d2799069cad2a873b004aa7
MD5 892beab5964b4b5d31480c353b7c0aeb
BLAKE2b-256 407f3a9da794f048936f6102009ec078faea3aa412cc21473cab03afdcb40e92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9171652b571367bb59b83c319e9cea98c688064b37c18ed19ff0252d239cd8f1
MD5 5aac91a9883b5422af3a436060c32087
BLAKE2b-256 4d9ff8d714f8b1ccb8447236b0f6d90c9d4388c77ecec359228c6339c9b46241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc472d575ff5cc8254cd88c82631bf50c5e92428a6c83c2fd4116541d1684c9c
MD5 a9f71a02a48f2a6dfe611dd82223983a
BLAKE2b-256 db7cf85c618bcd177d8176d5ae6427374dc8725cc651cf915fa419a654963aeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f7ce503f726eb08ba93b0d35047b9695665e88d9571d6d489f85c0a516c93ca
MD5 dd6b1618b2feec1bc7cde022710cbd59
BLAKE2b-256 87a1549e7ed904eeb5fa9809007e5d400deedc543f3bb2637cd2a2396d1db9fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68f55586a09b7fd2e11c217ce89fde48943c364c987dc479b3614ad20fe783c3
MD5 7e6d6caf8e73c3c7fc8f9fe9a1549b19
BLAKE2b-256 e5d02d9510fc7a5fa3446b169914d616ed77d6d45f58487708c6bb0636c519fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11286dc6b8fd4752d38570c375ea94bc4c3e0a3a55efb33116a3a255bb7d7c61
MD5 37fb17899f79f270ea378d5e195fc04e
BLAKE2b-256 3938f32552f2b6d2229776642b4ceed3d51f309820a226388d137e0d5fd7317b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 52fe50a31aa307b60000a9d2f52a0297791d86422fc27ea39359cd20555bafdf
MD5 a8c04b3faee393dbff28ddb150066ab8
BLAKE2b-256 4d495d728cd55bfc4beeb768432f436cab2c621fa9039c920bcba6d7317f2a10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce482a9316eeaa7f24fc761cc2e780431b969e4e1651cf7d07514fce7529012b
MD5 de1e9749cf5a9c333bc02718f7ee51aa
BLAKE2b-256 6d301c8dc05777be3368e5f2189892b85ee7a96527eaa8bbc8af932bfeec932a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0bb45f02235575ed05e4747fd756e7fdf1f03ef2b5ebb4b96f174a4cd5b92f56
MD5 ba79b9f8a855f1bf61720e04c85962f3
BLAKE2b-256 92779e23ff902f5795e405ba299d83eb30bce917dc2520805c090e0b0f40f919

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fee7351e8bd713f7e27ecc44601cf13fafe26a4623debfd40427c7c5f83dda49
MD5 4d694d5955835dbf9b60dfda653037e8
BLAKE2b-256 f707b953a4620c9f743d824e9822cdc4522d8728fbaa3ff2396f72136c6fada9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae90a1c4154e8c7533517bbfb662cfa70d7851ea5f5bf6209f90da05f4aec4a6
MD5 84268b0b749cf69311507afebf247646
BLAKE2b-256 3214ad7847f63c4ec8e793b1851d915ea1520317520c041239c8db0ce25b2dc7

See more details on using hashes here.

Provenance

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