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
  • 🪃 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.0.tar.gz (429.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.0-py3-none-any.whl (119.3 kB view details)

Uploaded Python 3

whenever-0.10.0-cp314-cp314t-win_amd64.whl (560.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

whenever-0.10.0-cp314-cp314t-win32.whl (563.8 kB view details)

Uploaded CPython 3.14tWindows x86

whenever-0.10.0-cp314-cp314t-musllinux_1_2_x86_64.whl (831.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

whenever-0.10.0-cp314-cp314t-musllinux_1_2_i686.whl (882.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

whenever-0.10.0-cp314-cp314t-musllinux_1_2_armv7l.whl (929.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.0-cp314-cp314t-musllinux_1_2_aarch64.whl (775.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

whenever-0.10.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

whenever-0.10.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (649.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

whenever-0.10.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (637.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (653.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (598.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

whenever-0.10.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (671.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

whenever-0.10.0-cp314-cp314t-macosx_11_0_arm64.whl (581.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

whenever-0.10.0-cp314-cp314t-macosx_10_12_x86_64.whl (600.8 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

whenever-0.10.0-cp314-cp314-win_amd64.whl (561.2 kB view details)

Uploaded CPython 3.14Windows x86-64

whenever-0.10.0-cp314-cp314-win32.whl (563.2 kB view details)

Uploaded CPython 3.14Windows x86

whenever-0.10.0-cp314-cp314-musllinux_1_2_x86_64.whl (831.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

whenever-0.10.0-cp314-cp314-musllinux_1_2_i686.whl (883.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

whenever-0.10.0-cp314-cp314-musllinux_1_2_armv7l.whl (929.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

whenever-0.10.0-cp314-cp314-musllinux_1_2_aarch64.whl (773.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

whenever-0.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

whenever-0.10.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (648.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

whenever-0.10.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (636.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

whenever-0.10.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (653.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (597.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

whenever-0.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (671.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

whenever-0.10.0-cp314-cp314-macosx_11_0_arm64.whl (582.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

whenever-0.10.0-cp314-cp314-macosx_10_12_x86_64.whl (600.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

whenever-0.10.0-cp313-cp313t-win_amd64.whl (558.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

whenever-0.10.0-cp313-cp313t-win32.whl (561.0 kB view details)

Uploaded CPython 3.13tWindows x86

whenever-0.10.0-cp313-cp313t-musllinux_1_2_x86_64.whl (829.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

whenever-0.10.0-cp313-cp313t-musllinux_1_2_i686.whl (879.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

whenever-0.10.0-cp313-cp313t-musllinux_1_2_armv7l.whl (928.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.0-cp313-cp313t-musllinux_1_2_aarch64.whl (773.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

whenever-0.10.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (616.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

whenever-0.10.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (648.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

whenever-0.10.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (635.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (652.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (597.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

whenever-0.10.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (669.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

whenever-0.10.0-cp313-cp313t-macosx_11_0_arm64.whl (579.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

whenever-0.10.0-cp313-cp313t-macosx_10_12_x86_64.whl (599.3 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

whenever-0.10.0-cp313-cp313-win_amd64.whl (560.2 kB view details)

Uploaded CPython 3.13Windows x86-64

whenever-0.10.0-cp313-cp313-win32.whl (559.5 kB view details)

Uploaded CPython 3.13Windows x86

whenever-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl (829.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

whenever-0.10.0-cp313-cp313-musllinux_1_2_i686.whl (880.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

whenever-0.10.0-cp313-cp313-musllinux_1_2_armv7l.whl (927.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

whenever-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl (772.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

whenever-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (617.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

whenever-0.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (647.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

whenever-0.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (635.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

whenever-0.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (651.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (596.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

whenever-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (670.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

whenever-0.10.0-cp313-cp313-macosx_11_0_arm64.whl (579.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

whenever-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl (600.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

whenever-0.10.0-cp312-cp312-win_amd64.whl (560.2 kB view details)

Uploaded CPython 3.12Windows x86-64

whenever-0.10.0-cp312-cp312-win32.whl (559.5 kB view details)

Uploaded CPython 3.12Windows x86

whenever-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl (829.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

whenever-0.10.0-cp312-cp312-musllinux_1_2_i686.whl (880.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

whenever-0.10.0-cp312-cp312-musllinux_1_2_armv7l.whl (927.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

whenever-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl (772.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

whenever-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (617.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

whenever-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (647.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

whenever-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (635.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

whenever-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (651.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (596.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

whenever-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (670.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

whenever-0.10.0-cp312-cp312-macosx_11_0_arm64.whl (579.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

whenever-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl (600.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

whenever-0.10.0-cp311-cp311-win_amd64.whl (558.6 kB view details)

Uploaded CPython 3.11Windows x86-64

whenever-0.10.0-cp311-cp311-win32.whl (559.4 kB view details)

Uploaded CPython 3.11Windows x86

whenever-0.10.0-cp311-cp311-musllinux_1_2_x86_64.whl (827.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

whenever-0.10.0-cp311-cp311-musllinux_1_2_i686.whl (878.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

whenever-0.10.0-cp311-cp311-musllinux_1_2_armv7l.whl (926.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

whenever-0.10.0-cp311-cp311-musllinux_1_2_aarch64.whl (772.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

whenever-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (615.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

whenever-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (646.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

whenever-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (634.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

whenever-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (651.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (596.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

whenever-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (668.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

whenever-0.10.0-cp311-cp311-macosx_11_0_arm64.whl (579.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

whenever-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl (598.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

whenever-0.10.0-cp310-cp310-win_amd64.whl (558.6 kB view details)

Uploaded CPython 3.10Windows x86-64

whenever-0.10.0-cp310-cp310-win32.whl (559.4 kB view details)

Uploaded CPython 3.10Windows x86

whenever-0.10.0-cp310-cp310-musllinux_1_2_x86_64.whl (827.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

whenever-0.10.0-cp310-cp310-musllinux_1_2_i686.whl (878.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

whenever-0.10.0-cp310-cp310-musllinux_1_2_armv7l.whl (926.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

whenever-0.10.0-cp310-cp310-musllinux_1_2_aarch64.whl (772.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

whenever-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (615.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

whenever-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (646.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (634.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

whenever-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (651.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (596.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

whenever-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (668.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

whenever-0.10.0-cp310-cp310-macosx_11_0_arm64.whl (579.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

whenever-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl (598.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for whenever-0.10.0.tar.gz
Algorithm Hash digest
SHA256 a5ef2b5493531de95294080495d4d9bce9691b4b3d681c6952c7a8b3d52d7a04
MD5 599a06ae9d8707a606c015cdce69ff2f
BLAKE2b-256 fd13281bc0bc19f0e2e9559a22137607271d6e684b0f9bcbaf0a95b95a5e9258

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-py3-none-any.whl
Algorithm Hash digest
SHA256 70feda454af6b2c231abd428b9430cd75492a000ca1d1edc42976d6fea265eec
MD5 ba6d25a61fa0448d0609ca6363a478de
BLAKE2b-256 edb538fba836844233b961a0026d96f39f893eab63757e7757fd1d16fb02aa80

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8f7482cc1b1d019fbcfad83b31f783b0eaf5390aada329f044dc04921bb5ea2b
MD5 9f0a2f1b5e52739894475a7dd647de1f
BLAKE2b-256 534362f04f661286ce2c93310fb0682c1c6665c9804567923861b2382676c91d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 743220a5fa5b4e60f64d2e8f29eba258d8703dace9b640f38eda4ccd13ac559e
MD5 20e3c3c5c300842f53ac685c49e798c6
BLAKE2b-256 e082b351bf95bd95efe13e215398bfa5627e84e32408ebdf8568a483d3f4d9aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2dae6ebc9008af8e4022e61f3fa7a69f96a283dfd18a4064b441f17772b78808
MD5 7b864dbef9cb231a74062d7223a3d76a
BLAKE2b-256 dd97e5bcb2670ec99bb4a8b6fcbac24b706bf80e59761b07e75bd3eb8910f597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 203c9c0c02846bd5d47b767c5ef45c94658cf25f8eff537039e7d03f354c9db2
MD5 3a4b1d9b923e11cf68ec85424e545813
BLAKE2b-256 2e0681203b1fa283c95b932363403334db4a4af4ab1b8208eb949315cc60eed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 782e564cda904e83e1c5f95ff0b68d7fc0d322d5b740e32b573a3e038299a04b
MD5 17e63560b859eb6bc6078ebd05d4877e
BLAKE2b-256 8de07449e7c22206123224e46864a90498038966608ab6c266faa893e44ec9ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fef6e1379f31fc3fdb9a0221130a06d8572a7791cb0e8ef3713009b96525184
MD5 81b58434d6d69379975b041a3bc76738
BLAKE2b-256 437dbbfe6deff3147b8f18ec63b8f91bb7c507003441b4a1006fbb42a9f1ce2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9dba313ce89af668f519db441a3901341789e1b428ca51f0b4d930d7423748a
MD5 14d6aaefeebd680542fe5f99984d13da
BLAKE2b-256 da8ab6223ddc515810cf69653c6ea24fff7f4f638d183baa86f824ada1b79996

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a82849f50fe3ed25ae30d3c0f65ad772d6d9652b4c1f687c6d092b04fc4dc88a
MD5 067297c07b90fd652786a98cada0794b
BLAKE2b-256 8b7e134b9ca00ed2e1a913fd766745160c103405bb6e7fa5094c08dc9394506f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19fd25cdfebb82da8bc901c5fc701b230af5c9737455edd78d93f22f023f053a
MD5 da70d8f92f8f50386032ff5ff2c7aa14
BLAKE2b-256 0c35c0dbe2119b53d7fd7721f95537b650736fada242b4786f4eba9ebfd2578c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 424641f831f7678fffbac1eb61cb32259fbfb3835813f84b59d66a4cfc8507a7
MD5 ca107def6e9d7298b87af5e22611f9c1
BLAKE2b-256 5862c1b6abba7b108c59515d4b8e889b7cb53fc8c5bbf82f91868f74b9ce5828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c34c72bab3d4387d83fd4b84b8ebdd706a12e39438ec56aff506ebb1318bdf8f
MD5 3a6cb4d689166232afcc940b56108bdc
BLAKE2b-256 fd718138baa7a6789b9a7f1ca88b81e0ebd2bec22e7ab879b08ef8923f0f757f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 229c1b06e31a5089342dd2680eeb96c7194bbd1ccdbc35b688b1f21379022b63
MD5 1120fa4261f6953d4e5c2fca69921797
BLAKE2b-256 d7e9f7bb8a72935d64c3a753ad137259575fa98503c837d08b459b1c920348fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 060f6d710dc10b8ad87b1be59be0c67eda07b272095d32f23fa5483c01bbfbde
MD5 c8afc08adff13660e6787b22eac19a35
BLAKE2b-256 8cd7124aecf53b82e5db2e9dd27d67c293dfd3f83f77efbc313c0a9617a9c1f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 74008d13bbf6ee6c3d53e6b4e00dc2b9c2dd23b4d59543c58a0700a9622e3c43
MD5 861010f13923ce81b9c9804391201902
BLAKE2b-256 3f04ee9cea596f5b5366f35cc1fdc351edb82233d7d5787e905b352ec9a193fb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2a214d0d72db76611034a18f5d103663131f0d5b7a2518d571dbf121d766f446
MD5 84b790c42497f7f8ecc69f21a9e5cec3
BLAKE2b-256 c5b28ad678802988ac7ad4937372cf8562f5c267d8ce605194a9409d4c1b9d82

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 de5b2be02fa15e2b36e2de0e48185f872154d2aac9e66240aa2f4d6cbd79d1e0
MD5 b878cc2052f31609589ea483ac5e8fef
BLAKE2b-256 56ba9afc25161daaafabb59b1f71559e65e8a5c0d9073a47f669775a802503a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7059ffb2ac2a8b4fc7c95f0db7a083fdb2eeb14034856a9277a000beaf7ecb31
MD5 371897c045cd03497ad49294442ecac6
BLAKE2b-256 0b28fd94b38a979c619fdc81a94765fdb5717b94f8288b7e4834a95858fdfba5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e1ae2efdaaab4f1b51a50f2a0e576687c0be798fe0ec185b1b673f9a24d039c
MD5 427b3c2ac59a2a336742d14069fb2c78
BLAKE2b-256 77c0cb6d0932da859f136a09d807e15de7e8d6832303744226434ee2f3fba3bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4083b5ae49323a2ed6d64fec9a665ac5dfafedd1e0d75591e26eb4f385216fc4
MD5 7d0fa63a3c4fe546432bbc50ae012fba
BLAKE2b-256 db42633b34d89e45c2e283f63d4461420d7c5a20209bdff54bd041971e1e4c61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86bb8042c6a40c29f4397e87bb5c89777f8e50111ce902d5665c3299cb7b3fc9
MD5 41135783faed80681184fe3c009b3aab
BLAKE2b-256 986fbea8a92476b785fe55803ad524384d82ce691ff81ec6ef5078c555c06fdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5219a2663757dec9303fad9328fee2b06a64757cd316cf5fa4060b0bc2e4d032
MD5 7d4f923215fe0f6ae37036e96ac7bf72
BLAKE2b-256 b94af4e3620f9542b092f31c3de6810e137cc1c01c33a5a25cc3f90a138b98a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91a1b778b8ee154d70921cbf63e6a0949251a5ab93f077f1fa89167ff5e91b35
MD5 27bb17b0185cee8581390b4782eb8561
BLAKE2b-256 bb22a77ca0c5e6507116b94400d5a5bf3182b350532933dd2296cd9fcd116551

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c78ea92143b37c6922bc05cfd53e90e3322396a1e4ecd2db662b16cb990c414
MD5 d2d841cde0e95ccd1eb4f4ba35de5b03
BLAKE2b-256 25ef4606964c6ca217b7932a600148fcc981a6cd722715d545e2975ee6bbefcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1746fa35a3f598bee76aa92841c175b65926a49856ebc58116394ca46f0a9b7d
MD5 db58e198f5f03c25152f5d85bf5b25f7
BLAKE2b-256 efeefca46b640a2b843c3bfedd3d9aa7d7f417d1f0fa447f0fec9a3d6d2d3ee9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e96cf6c3b05b9aa4412d11e72bf50c001abda57e47b985ec31614e2efeeb9bc
MD5 5c3a61bac5b5f734e2efcc9c6b10531c
BLAKE2b-256 756fa2ca2635fae996e030ab30b1ce0e1b54dbe19bbee5b303314eb5e53053bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0dbd9b90d9279e95ff717a2f112822162ab4f3da04382a9dd0dd21e8daf28cf6
MD5 d8f9ece2044929ab7b025f369811bb5e
BLAKE2b-256 1055902d311917ce27115b522b5a647ba4d805045ed49a2fe95407ea132d46ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a3c0712e41512c8063da2ea8da28b0db2445c74514143f464ccb44c907ac1ef
MD5 42eda8198d11ae07fc1378796ebac540
BLAKE2b-256 f5eb2b3ef4807ceffcd7a447386350f180e8a130e87a642dd3f74c159eaa2573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c884c6b206a63070ce1f58301a332e3b6606b53821d87f8b8e304a436bfbd26
MD5 ead8528e592064417ac25a382cca0727
BLAKE2b-256 e88965861b886729b89c6e1f4331562427ee2d5d12cde94c4001afad508cc662

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 558.9 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 a5a4b3eb358a3df33d91fbc011695508fce0e2d6ded64d7b71ff1e3f6df2509d
MD5 db4cc4d008b9bb6a304894f678a02661
BLAKE2b-256 77ccf78d0977d40ecb5ec6c457b93db5149b6aa8442db5b87b74ef7ef58ec4f9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 561.0 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 4d230aedc4ae9734b6c91294e77e58c0fb4c7520459ebcaad084d9de1bbcee08
MD5 3dd5095c43c289a7c035046dbb75190d
BLAKE2b-256 352640ed44f826ebe4f07eb5d89b2956b84eb3c2aaae02ee119ee510f64d7dd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 581570285d2dafb92180bc5861c021fdac1d1a4bd2027ea1366a8192d613e4f5
MD5 62b62d1ad3baab5bb926d9915bf81393
BLAKE2b-256 65e92ed538c0f644da6dacf21878c85f49282926290b5f27ec42edc698d72e89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53b7b1a74d9b88c3734381914679f18413d80d8098e7069d51a38e77d277c04c
MD5 e239ea78ac9f5dc683e9bf35170bf5ca
BLAKE2b-256 dc30acadd0e5c8a7831ab27736d5c84f1a8e8ade66224681c5c0f1dd71d8bcc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27bda9b1a216203069c6ee0bdb0ce5c352467b5e610446c676017f8e2ba430fd
MD5 3ea84dfa712833889896f2594e70c453
BLAKE2b-256 586799759706ab3f4caa50a950582203744f4d1ade96358ef8f91eb5c3958f2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e907bc52b1d6a17e0f537e856e1ee2fb87971e3a4dd4a2bd06633e967b779198
MD5 002ff6af46dca2691d68028611a58299
BLAKE2b-256 35d7cc8b659cfd3474f558f0e1644a3d3682df3a4a5620a12b6b98d5a2762ce5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d75774ffa8955bc920b3a4d2ca39f5f03e90a8bb76f9611e5ce7c2c2594d87e5
MD5 1e01659352424ac975c72f1352f27c7a
BLAKE2b-256 22d944ae1e98bcb0d126c3794b88d4e620cebb2c3635061e230365dae937784f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f1aab159f692dd7aa80c1ea725a9ca68f06955830dd9311fe982090b3cdb69d
MD5 98e311df5819b656030150e503810c03
BLAKE2b-256 65c5a8fb5a43c396fb50186ebd04ea85fa7d8f75444b6b1a1321e06422035692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc24a7531a7a7e4a90f7ddec1065985b2865c88000a39df6d9daad359bf02fa1
MD5 04a8a4aaf4d109d4ca12a2584b5b01c8
BLAKE2b-256 657350207dd249606cdf77d50cc1cb581d7349e2b72e38dbd17fcca0023cb87d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f5571e66d47080060bc935d99211a148af44a41feb2a2770f87620bbfd06e0b
MD5 6a22a4a3331f3c7eed863e353d2c2ca3
BLAKE2b-256 e79e00c79782ac16b5e22c87417db2bcc4f3150d03f44d2d9ea115383c9f7336

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8936a86eaefba4d0cf357412817c5a36b99d1dc9ea8cfbad07effe739a204406
MD5 89a337c7f4eef66a4319a74c88f4c906
BLAKE2b-256 8575981c69e0520067d5061d92a5aa95b8b8a5609380459e53c013dfc5820a13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e13d0c70a2af7d051612cc52a224e7c0629459fb4e3b87b7edd32a14d282ea13
MD5 8056a424e7960906c87093581435a1e0
BLAKE2b-256 eb39bfbd34662b09e14b05e9be6aad9a09f4cb2324fb3484920b368354d38e9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 075b268cbd6d1a9787232e6571aaabd443d17f9bc58dee7919e91b7e4eb78e6d
MD5 558b976cb047826b92e6ae80cab67f86
BLAKE2b-256 c1f24c5a8b8c277b9c6b61ada806d4a9870376ddef5f96473d94def5509c451b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8bbe9bd956ea4a94357d707583efecaae37613cdaf303eb2e31894d2257a630
MD5 625aaa459867046ac3150d91ad7c930e
BLAKE2b-256 4146a2f01cb2b0020195f46aee927e8b19f55594db4b5c58112cf50d36d4b4e3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3f87bd9f59d74e9d79ea0ade64d655e4c394b9916a55c8a91afb5ef870f0df01
MD5 49aefc18185a6063085d6facee88e606
BLAKE2b-256 43487e2a8fc167b6eb40c91db102c4268c7b90376fd6b74336b0d7ea6c32057d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a23a7d112a57200422912f963cd7ac0cda1f3729c1b51da675e4830f94a86af5
MD5 b569bed2864c1c0fe47be1a95237c1d5
BLAKE2b-256 78538f57c6e1c0e4b578dd5b9b1a6a39ecdac1602e31973df376ff2cc569b5ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6bc61755003efc685c3b097ce0be2e104e9a2d39dbbb1381b7e8dca5e29301d4
MD5 dacf4aa80909be63ccbacbf3fa29d74f
BLAKE2b-256 a991503d04c2f79319563b7540acfbca61829e419661e7ee6035d4a5dd86cf83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34e5ffc3e7c926264949ca30ae72a3b65b472982e87d7b023ef1a79e1565ea82
MD5 e32369085c291d58f220e603ff49a927
BLAKE2b-256 217e98c307eb2285b06ea757b2a2eac23198596242e9de7954aa2992ef40a1c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5069ff0fcca43fc3452f0fd11da611e269135a62821cbae671728b29726165c5
MD5 c82a6a1a489d3dad35dc3cdd33799b6d
BLAKE2b-256 c8f3a1ecce2c5dcf16cec9ab4e0cd3eddd26f2f676d9af0dafdec39d9b7e39e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d313bbd10128be0335f6cfbda8a27c91466edb00032e72d5ec45c9821f94b4f
MD5 a3ff2e6b2b23fbde6452d53954069dfb
BLAKE2b-256 88428629a289761766d507148f622b8e667d6799b631a9ceaf233f1fc0383523

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91dcdd5582503d5ae15e5bf036125a26042a65685b0c46b953cf583123ee6ff4
MD5 375378833aa81e2f6d50a1e3ef047a6a
BLAKE2b-256 5f1015ab8f01b7aea24c2c10935c3adee60a26753788e6d36a1fc8f6a779422d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 688756233e5a701a93f3cd8f70236271cead0b2cb18343199f0102837ff4c14b
MD5 8b2f091fca515ee0265f41f5e6e33bd7
BLAKE2b-256 b9de8b9f474bbfa8e426a1e4f7a47ec37677780004c87190cc616c921362f4cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7430f5ba42f9f123ec82697ad45ba7515721ac9f60ff079d228df5f160a48f0
MD5 098a863c8ad2d6ad5f79871804f2d78d
BLAKE2b-256 6a505a246269b543ca86f6fd4c815e09252e70776dbb704b7453ae05a72bacc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b040cb5e0a8ab1e7ea0fbb09e53f197130dc96b17bbf008f9be8876a90660e34
MD5 896edeac5d06f34c3360e297613aa750
BLAKE2b-256 c9f6d1734ef1431283ba35d110baf44986cff140c8c5586779f9d41e3ca83444

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ad35c9eabfab4487c57dce4ba763afa80e1bdccdc8f2a07ef1698ac471c51fa
MD5 f535932428187e25f0391fdeb56ae6ba
BLAKE2b-256 37efd2dd2365bb82f7092e6f3563c35e2fb25bdfa4ea5654343a57f5c6dc660c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d4ead25c65553edc962f64f0db204230a695a58abc66fe6174a785de2765452
MD5 431c6b39be8efc366c14a891596af6e0
BLAKE2b-256 4046c4d3c3de6e61b01862cf650e29eea58ad7e527da1ccd6f3737272b4e7f25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a3c1d8691ef80e59381e813e7020634042cdb5303c31600bea7a3c9725111c6
MD5 7cb9a66d4ddbd01f2601c277863505b8
BLAKE2b-256 4231d8d2e2d7cb684062a46ca84ee3d24930d63e51095bac3c6236a2df2b5393

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c3665bc09c0bd373ee96a276d4379171650a1df634b54c8d173835f79b34b0cd
MD5 387435ae32c6a8a90ca249e170a80c59
BLAKE2b-256 b1acb69f67cf0834d5d6e5151bbccd06e25315ababd77672f314cb2bddee5e80

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 54b7eb5aa61fc82ed67d69c2f6ad715a08624eead0d8c3229106bac4f8bd9119
MD5 1c260886d4f8c3ae263d6bfe350b6224
BLAKE2b-256 3cdccc0f9d66da6b0ce541aa9f15fe333bfcc349f57d3826cc257c6113c7d9aa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4f02cf1a3323d5bcc8e1e23880e4a8d21cb7ed3601fb13450ed730c711a42373
MD5 3772002b531314cad143cebf9cd3bf24
BLAKE2b-256 c1438103c742d98fc9f800f797053c5b7e638e1ab8545875234c4510973f15d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 081f9a5a6f163897e11d219dfd59bb02167b57e78ebe6438567f1735c81ce919
MD5 e1347c6586d8faf72c3242e69d352f97
BLAKE2b-256 87c52d3098c708eaf803b5ab0ef6eb98b6375eb40cc53ce4a52f8c2fbdfb4d0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7979d92e44b964ac0690295142497ee5d62ac60eb008fa5e3db036480c6ba32
MD5 4ad526a34ba046ce08a59c6d5a21fd7d
BLAKE2b-256 22dcf2d3a59dad9a36dbdf051c93ffa3b797d737ed0952764634d58a57a3bdd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bce32831396d4203bd55ec717eb4b09ae971692f59c09d5c8d3657535b489953
MD5 fd132031f1e5f260fdda91d1eeda2be6
BLAKE2b-256 bde448abc7f8ce8698bf48320e19fad77bc1522ef13dfe3a53d8b6d2f9546095

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6eb79706865e128cb58e000b78606109d30467bb922e18f20abb7475863c488d
MD5 48cf28e5b177bd5298f944db3a451e75
BLAKE2b-256 160fd932394c89dfae5f2abd02e8905ccfbf6ea17790e51632fb2989076c2e5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e963214baaea851ff56bc5ee368eb4f8a0a7a5e60a132946a2ff0528a5c7fe4
MD5 aa8359e527b814f8bad7704cce549fb7
BLAKE2b-256 c091a177bded930626efbd48549bc492341248fa7cfdcc1737a8abd8c481ed52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff0f3b617eecc7ec470eefc2d029e2fd4c70cc2ea0cb1b0467ca5f1abc654830
MD5 dd4173befe870d227fd4e017ae6401aa
BLAKE2b-256 f4e9bc486f6059240e61b0c8db996be6a3c772bb4a925337e7d6c101990e85bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be1c9d8b0b157ce16c3276b36c19cfc7431d4b2302724d5f41cd955d5ad5eb81
MD5 750b3dde9338dc71816ab4411666a9cb
BLAKE2b-256 f1e39a851cca8d9735e1edd6ef3515007c13aaa265c52458e21bda6456bb5257

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f3955c6e86a4227a59ab4eea92ddba4c290119bfc95d2bb7539e1c178963549
MD5 dcdbf58e8f6d18db24ef3dc604cc373f
BLAKE2b-256 da9756bf8326a358db42af436a0124ba4b3f33d8829278de8a45f756de5054f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6742eb5b18d20d8913224dcc9591b82a282fa109d2d1df945f95a65dd827fc76
MD5 ae148ff9616c3b97ee6ab790658c2c95
BLAKE2b-256 abd30649ba90f8f807987572058727a67bcccb6ffb7d49f0798299e5476d0ca3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a939b7617b866d10517f01eeaa54e4a0d33723bfc00af24276f2474698739ed6
MD5 7f5e0d7935d1b8cf600a3ea22f51913d
BLAKE2b-256 a02ac879eeff183d918eb769876076ebfb341cd8a900998e47fc9408f22a53b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1efe4d1475683c5a2717f0c8ade309d48e18e7b1d78ecb2b109e763ada5ad71c
MD5 791dae969a65ea4d08f7cebdbffe70aa
BLAKE2b-256 52c22afe2bd12a1047f4f6dd45132971798c25c53f5bb35551ba4194057e55e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15bdd19fee402d00415a154ec2155fef58fb3207d38687769cfec2924a9b8227
MD5 b5b93b2cf560c4332e1e03145958e570
BLAKE2b-256 ce20979fbbbd594a79f28a117af629ce8eb737932216856e9eb5d917bd981fa5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3f55162fa6ba3dd9defdb19a72c1377c9bab5b671c6fdf27b2220bfebdca55f6
MD5 a93d70bbf94030e37e6ed3674f09aecc
BLAKE2b-256 3a53c81330a1738db9fd15ac05813d26648538c43cb7ea76c7dd6c58b26911c5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b5e63519e26663fefa53e4aba4d3f0bcf73d68441123f9fe191bc5418ccb20de
MD5 2ed6d0fd15ad31a3a5838c83f69dac27
BLAKE2b-256 96fe45df1a79f831f04c30a5008a3ee07074fc785c9be835254a912e7161f669

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 077842f172a6e6ad089dc651b44b96252dad2ede8944ba3c9af83ac81353b470
MD5 505197b5e78381496fe85d98a7463b24
BLAKE2b-256 ffd8d107c84e2ed5fc89dc3d3f9ec8e383f59b09c2ab58765579e1bb8f81959d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dba21b209266474c34a617335589edd5908f7a647878565811ad97e6faef4918
MD5 4f74c6647544881d1e5a9267f70f3a3c
BLAKE2b-256 e6570f6ce88f9e9196af420aafc5735aec408519462f493348418e60661bd41a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cc34bae4d6342d111f95d4ed51098ba512af010cb018db8e711c4debb16e923a
MD5 6fba308dce5e5c334293bbfffebe9e3d
BLAKE2b-256 61fde17e80854cf8fe3cbc5393c25269f545f92e93da8e5788a81d21044b78ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff5b26c70b6fec2ff34ea1306ebdcd98862464fccc4cd8a9507180481fe91aea
MD5 f55e111859c159bd2999cb44a24d8ec3
BLAKE2b-256 60f74990f9de067071218699e1e14f7a795ea5a0b60be024f706cf931c3c5c1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1127d84938aee750476374715c41d127083ef88ac897fa7831bd97d7c6f14696
MD5 6f30cdb2c650518a5f26c56012e14aa3
BLAKE2b-256 ccb5a36a58da7144f3cf2142bafeed70b4f6b9c00b41db0f31cec23f1c38f0dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ba7215348103af97b54d97f4d63120389ecb231d8a30e8cf86092c8d0db3567
MD5 5817bd969e69be9c23bca8940b83cd96
BLAKE2b-256 99520d25862e15431e50f33f6c0a5b6cd1df6944d5f73f6c6b613f0e81297cf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0bf8af5d5512b7cea7ad30b46b5651853ba20cc74665777eebe3e3d8d37a11ea
MD5 cadb436f3c28f6f9da97b2f3769b936e
BLAKE2b-256 b28b20a7956d64b92ddc3db7d44d9df9c82ddad646776e3f75cc8277789072b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 683a1786b2747a35c032b3c696a85e286750616ba2e14bcf97de88b4c50fab09
MD5 0da4759ffc3594b2825badd77025f075
BLAKE2b-256 ef62e2271d923eb49d5f58f998346016c99877caff8c8391ab604407b3dee00d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19123455f1c7358d5946d735eb242c0d2ba521b07f4e8c696436f7e009cc5776
MD5 bbcf03de28e2294fd78ff706a98f4bff
BLAKE2b-256 4ffffc19f07e7cc6979af10298893fe370ac40b6dc0098e53fb48f1869e0011e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec73c7f3bb08883f1ddda5c91be8e4bd900287105813c3c965153ae0e49ad061
MD5 53d2b31f0c8bc69af25204b2ef48a047
BLAKE2b-256 8a31a3568603b6de55902db58a04d3d7fe9372913fb1dbeb5f71c5a710f55a95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7f2f3d471259b0a8adb500496cc54e7f0bc73a672bea7f77306b23b9647769e
MD5 01767b60bdcf456edea137371c01fb10
BLAKE2b-256 81deba7877048f7c24be9237e93e6571c957388712615e0267b8711f388870dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27465fb11cef0030310508a9cb3ecfc3fa0f1d299f1972105f7ee6eced6f1209
MD5 9431eb839f302224b8a212f855cec956
BLAKE2b-256 0f2d30cae38524be7689cf059481fb01d351406c671a6f47291f4f9fdcc0cc11

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2ea0ae4294e8683eb2a7a6e903fb05de7f60084902a09de11347b1f252c45a1d
MD5 ffa09a44802257b815329215f1f1b0ef
BLAKE2b-256 f7dec9b783efc3a81e8b982cd335bfccffc480aa7ef902a0cd899d1350a94153

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 364dec3b24f860b08702171f0f57702241cb34f35af64a251b4e4d46d17b9ae2
MD5 16ae1568210ea9af93ed3b9551a564f8
BLAKE2b-256 8dd01aca35cb30a1eeac30cb5f3bb13aa8cbd19444215ad2d72d8025f4c53995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b10ac9f0acb193a6aed5a18e5cb134cfd7522f8f917a289482c8e1cdd6c334f3
MD5 67ecf1ca6f9a82ad853a60abfeb4fb13
BLAKE2b-256 3b7c718dfdc34b0851997fd37a849ce7b34a37b8e8f75585b56b01fda79cacdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae407ca2ad56db7f33ecdd776a464a51ef3e5988fc65baadac5b494c0cecbe0b
MD5 fde41cde329bd52f4a19bd9ded0e9544
BLAKE2b-256 b5ddc5a37c8226c221c5c67976ebff4550e2089a2c9f6ba054b04d849adc87ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ace7467ad03195bf8b13e2400dc89aa3e8876083d408c7d48b58872758d6adb9
MD5 0d921ff3b504553e1a57997243d27a8b
BLAKE2b-256 b240c1008acdbaa608d0d88fb15d0a914bce239590ebcd340ce1a09c6d8fa8b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e377829458e0c6475d42ead8ef2bd33ced5f8e14b9970d245c3fab114654c42
MD5 d569d81a7bb7bd7782ed1b4785bc6dd2
BLAKE2b-256 54314b6bbe08c81fe2bf8aadaa49b774308d6d2dabdd9996e2126066b6ec18da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d7b7ea03602a99489cb6ffd3392f52ee0bbc1388e7c56510389ffba16ce09ae
MD5 d59bd519c55d8dbd286986837d8405dd
BLAKE2b-256 4f448c8847945ec947ea98a9d46ce72f0ffa8afbdcec02d1999e849c5b79a483

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0540d81aa6616fe2225228f7a8493e35f2c5d0f2a6558e766264ce2287dc077d
MD5 32b16812022cd761461da7c37c960b97
BLAKE2b-256 a4b556a6454ca37f7f4590a86cc4c8bae48510b4acdcb4f7b5e35699034fd962

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 516184c9ce8f4719d04ab65d519bdb9ef69590dba86dc588b0ee6575bc309679
MD5 ff1f706aa20db7f3ffd2bf304794e198
BLAKE2b-256 b2d13f669b3540360f2f7bdad4b6db245a5aecc4408ee421fb7c614a0a0e04fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cdf7725c096f5214cbde71732a24210d2af43c2391744a9f0e37214f15b5daff
MD5 ca352982bbdd737a68a874e73f53b360
BLAKE2b-256 59392bbbf627368368a97a753c56f19398a67d6787aba41fb42736d64a009afb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40a29c4705cb174fb7c5b6c261638fe3a7f87df0ff0ad758f55ad101b5077a93
MD5 19a4930d60ad31cc16b7f23b164f0286
BLAKE2b-256 a9a5e1d8fe56ccf0b3083f2356cc1494fe454dd7a7c09d83824cddfe7d26d75d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 266514ea96f00bff17c456b35ecdcf1e486b82839d48a7afcd8251b5bd92374f
MD5 aa341c6c280e3cb96ad80a0cef5575c5
BLAKE2b-256 674e094d7d050e246d58d540b1b0a956e0d802c550b50cc1f53de77ddee30ab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06b660d198c813dde21f1a32b426795ed3ba684ca8da84a3d4cdca5e330bfb17
MD5 72e9ebc30460c7efac5d29b04c2d9c3e
BLAKE2b-256 33ec90115f740e05dbc9f0c11e48f4b35b486a1d73b16d8f0b70e82035348152

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b58f46b4bbe56ac3059fbc912a40dac92a2df6a45b6f1681f292bcbe70f05c5c
MD5 d1d2a77ba7acff1d64a8d33f50ff767f
BLAKE2b-256 7513c6ca2762664d2566d415b6743ead5cfb9420aded93b9fa2810a895b02b5e

See more details on using hashes here.

Provenance

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