Skip to main content

⏰ Whenever

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

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

✨ Until now! ✨

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

Shows a bar chart with benchmark results.

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

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

Why not the standard library?

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

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

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

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

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

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

Why not other libraries?

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

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

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

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

Why use whenever?

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

Quickstart

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

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

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

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

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

# Comparison and equality
>>> now > party_starts
True

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

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

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

Read more in the feature overview or API reference.

Limitations

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

Stability policy

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

License

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

Acknowledgements

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

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

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

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

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

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

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.5.tar.gz (437.5 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded Python 3

whenever-0.10.5-cp315-cp315t-win_amd64.whl (545.4 kB view details)

Uploaded CPython 3.15tWindows x86-64

whenever-0.10.5-cp315-cp315t-win32.whl (579.8 kB view details)

Uploaded CPython 3.15tWindows x86

whenever-0.10.5-cp315-cp315t-musllinux_1_2_x86_64.whl (815.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

whenever-0.10.5-cp315-cp315t-musllinux_1_2_i686.whl (900.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

whenever-0.10.5-cp315-cp315t-musllinux_1_2_armv7l.whl (957.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.5-cp315-cp315t-musllinux_1_2_aarch64.whl (765.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

whenever-0.10.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (602.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

whenever-0.10.5-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl (640.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

whenever-0.10.5-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (625.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.5-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (680.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.5-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (587.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

whenever-0.10.5-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (689.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

whenever-0.10.5-cp315-cp315t-macosx_11_0_arm64.whl (573.0 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

whenever-0.10.5-cp315-cp315t-macosx_10_12_x86_64.whl (589.8 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

whenever-0.10.5-cp315-cp315-win_amd64.whl (545.1 kB view details)

Uploaded CPython 3.15Windows x86-64

whenever-0.10.5-cp315-cp315-win32.whl (580.1 kB view details)

Uploaded CPython 3.15Windows x86

whenever-0.10.5-cp315-cp315-musllinux_1_2_x86_64.whl (815.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

whenever-0.10.5-cp315-cp315-musllinux_1_2_i686.whl (900.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

whenever-0.10.5-cp315-cp315-musllinux_1_2_armv7l.whl (957.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

whenever-0.10.5-cp315-cp315-musllinux_1_2_aarch64.whl (764.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

whenever-0.10.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (603.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

whenever-0.10.5-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl (641.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

whenever-0.10.5-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (625.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

whenever-0.10.5-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (681.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

whenever-0.10.5-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (587.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

whenever-0.10.5-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (689.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

whenever-0.10.5-cp315-cp315-macosx_11_0_arm64.whl (571.6 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

whenever-0.10.5-cp315-cp315-macosx_10_12_x86_64.whl (588.1 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

whenever-0.10.5-cp314-cp314t-macosx_11_0_arm64.whl (572.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

whenever-0.10.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (625.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

whenever-0.10.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (623.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

whenever-0.10.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (586.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

whenever-0.10.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (624.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

whenever-0.10.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (688.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

whenever-0.10.5-cp311-cp311-musllinux_1_2_i686.whl (901.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

whenever-0.10.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (640.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

whenever-0.10.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (589.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for whenever-0.10.5.tar.gz
Algorithm Hash digest
SHA256 bc8fd6208d50be50e490a3628fa6346d006b02df5de64c43170df8a809ded8d4
MD5 80331e6e9a25ed70fcf1a468df808202
BLAKE2b-256 d2099ec61cfa69047a75af61e8db53e7782ed5b3995bc8a08132b951202c8aaf

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.5-py3-none-any.whl
Algorithm Hash digest
SHA256 193091633fc1dece4c86e7303cbd4039320b4f45c69dc5ae69b8f711bca82603
MD5 42ad11c476429f9379b67aa38d30c764
BLAKE2b-256 f284c937c7ec9de2aa59fbcdd60b52a8da60069636d2252c7461e43d389c04a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-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.5-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: whenever-0.10.5-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 545.4 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 17933ae4f28b34500018a83f64381bc7bfa02d9efa888695b350c0d6fa0df08b
MD5 b57faf855c162127a94a576032ebbb9d
BLAKE2b-256 d85ba275fc8600b96830cb951283cd879a23432f3d6f11022f672599e80c7ada

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-win32.whl.

File metadata

  • Download URL: whenever-0.10.5-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 579.8 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 0de93eec28e583b5e3c2c485076a088e92c991c2df8cfcfe346895fcc58daa8a
MD5 15b299497efca9f119808d138acf66be
BLAKE2b-256 72855adb5d8183539d1aacd6fd74631a2fc51d957560ab8e6667d8207f640c08

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dcd973a1cc7208e8106373860e817ab84af2d8cc2440957797b1b9100bfda55
MD5 dceeebd28964521518bab2ffba76617a
BLAKE2b-256 607d75ae420913cc51a7d8bc7f86e652726a7fda41a0abe834a9ec61d31daf86

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13021307e31743172f3cc3688c776dcb69b6142eaaa17e396928ff6111ae22a5
MD5 80c733aaafa933b8b39a68af9cd82190
BLAKE2b-256 d3462e6bbe31d02f3b65d356e2040ce341d1d9f1cff62e759cc8eec6f9213213

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67e236a74c1198dda7dad08f41b77d8519b837541b16887b1aa80b61e5e60724
MD5 9bc58e56fbe8f4484b03574c4cc409b7
BLAKE2b-256 8da28739252dc94ce3c935ba8d5512ca6ba8d3a4565cad7820b09ba5e993bb97

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1486027f1ebc316b2ee6a4fbea23d35f0623a58a5378288c6b2cea0aac0b2cd
MD5 6f72b411bd7e9f9854e120e45838f2ee
BLAKE2b-256 7ff97bd680f939de66b20a890419e135570df052504294a87f1b19e8b6da3995

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7835b71c0dbf4ef6f06c2367a61736137dfd8e814e6539ab6ff532e41071802a
MD5 3a5d57fe95077c203611684b530b7890
BLAKE2b-256 bf0e16a380b19224d2de1e2bcaf4a426eed9fece0ef528d16856823a54b5d33c

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 159751d5c78297668f40fc0c8c3793cd1e2431d1180aca92a17aabd7efd56baa
MD5 61ebd78db96f30dc8fa1b9b65edb3531
BLAKE2b-256 a958258d922bd3b485f7a686d1cf5aaa4bfd9bf68bb8b847c717e5adb32866dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5bff3d06759049c4375526b0703c1756929b547dac32613ee74608453e6974a6
MD5 e11309420f77e35ef8b31c9c4c12f9f2
BLAKE2b-256 60f75f85fee69408bbebf5d113012ecef30176e007d2ac8a768dc9fc2b1fd1ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 045d3136c9033e4d5406f365941196e7c036eb98a774fa9cf18a0a5fd0e6c7cb
MD5 a0dbfb869cd3c52f9492942ab87f4a25
BLAKE2b-256 ae039000f54adcf37b072b19829fcc6bfd4901071e75bf5833975528f70f3fb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b7a226d88012cf5836999d27b2b662553ceb25f04088f3fd0b206c58f4ebee6
MD5 56e494c7c791c8bdd4e8a5323ef39ada
BLAKE2b-256 d3c4b6b19a81f309f5df7facc23f627890fb105522b041055abba744568150d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 453342e0cd8878454c1752c60985fb32f628ed109d3720c1b425b66033e248e1
MD5 8247267d6ce8cab3a7ed9752be63fb7d
BLAKE2b-256 9ee9dcc71ec27c7db5b2494871165157a8c273720ee7324a969f6b8cc43eda4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b755b3ad3e2f2bd53dbf586602f0cd1a2af244e49bbf20c12e02c9809c0d17d8
MD5 c2c47723ee965c010cfbdd5dfa2a0d97
BLAKE2b-256 b365a8e4e0f9f3cdbe3f3ad905af70e7c39f18e95349be84bcaa506aa2fedde1

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fba5f54e5f9d13b2f284953eb21c14c94da9ad68d31ed7b99802d3a1f1744a61
MD5 4f0bbcb39a2d721fa46c6acf9018a4a9
BLAKE2b-256 1474d826b78cd0c782698a4cb49ad1e6805feadbc9b8dae8a982fd5c044a2711

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315t-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.5-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: whenever-0.10.5-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 545.1 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 3b703288da3dc718db9b9038c02e2a4b7ac70e4a7a8a43db06ddc1d2c884859f
MD5 554c4bb3494fbf2cb48d6860cf55f869
BLAKE2b-256 547b94fa82a8e56372ea84f42377ec1c3d03caeebac5f2c2932a52d9d286ecd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-win32.whl.

File metadata

  • Download URL: whenever-0.10.5-cp315-cp315-win32.whl
  • Upload date:
  • Size: 580.1 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 e7e6551d085fbfef74d229ed572902d977478bafb4b4ddb45336f5a7396be60a
MD5 0b5401988a2b89bc702dbfd9d2cf8ff2
BLAKE2b-256 0143f2fb6fe6795dcf115739afc741b1739c58cbcb8f8686b69077081d1f43b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc6b230e1090935e0ab0aee7a7ab4d6500546e1e635d5bfa48319e629d003265
MD5 8a214c7c11633f0338c77472fff31d7e
BLAKE2b-256 1b93388c45b7cb061038778e2388d5059349358370072ad87291c27a3ecc101c

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db87e33f789217c03334bfd784c7855d05cd5adbf74b0180831de0e3e7dfb4a7
MD5 6b71b7e14f06f892ac671e2332612fd5
BLAKE2b-256 7fce7abfea5add1fdf9902c3c84ffb4376fb6964efe0e5ba0d31f4afeaaf869c

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61c5e54c7047dd707243f8b5982c79f4a3da667ab807cb73e51805806b593c56
MD5 38dd5240ed81e50a875f16362c37faf2
BLAKE2b-256 2b501265f9a4f3e137fc8507a35de6022539dbf8c6f5f74721bbaebae9f773fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54d449d0a59972a0171fd0ce03657160eccb5b528889b444a97947499bf8cb96
MD5 6a2794ee3c177566e3d8309a852e7721
BLAKE2b-256 a32cb74095c3df03a9162152c7400f1fe6993bd47c63d7809e90cf212f6b38ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 164928979a9567b3316ba98c488d5aa19dce1566d5c26423da361af963e4cdba
MD5 54232dca2ec803ca0cc5812bbeb1f460
BLAKE2b-256 68070f3419daa6ad4c72fc3349d8fcd060b27a5f04f6a5e3bfc38523df378e77

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f8a940fcef2768b32deaf61286a5b14669ec401a8bacb92e3ed04c54e31b26f
MD5 3731a9dd46088bd2ec11965354bb0ec2
BLAKE2b-256 b14badfdd4b523bdedf8bdf5e88d349032c385283b44be2c15692e1b7c142e7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 760d5fc23c5739eada96447ce31abe54822b3b7726d411ea13070cf0d2b1a3ce
MD5 d0805e5f1075d78aff1aff25f752e27e
BLAKE2b-256 eb49c5c6cc6b521ca44786aa60f6001911f782b58dda50c515f04729e4c1d183

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af84d2fd34c7bfa875893fd2a86a3298406ae79d0475f1bf8501bbef5817a9be
MD5 46987b42f10fd1ed5f39fca546d72f8d
BLAKE2b-256 e4841561410d6efc8aa81b35df7cf0152fa51b3d9e9fc9768a0afe91fc7ab9e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8837f81d8f360b122dc974a437056b19d91ecc9f5a8f46809df8301638226e4
MD5 0089c4e12da08de3529816095caee535
BLAKE2b-256 0960be1b932ab859b06a7d82b469f66adc9f7f52c28188fb0387a8fdff8bddec

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ec527a488ac7b19b71d91d7d4b2ee2e6eb5fc18b0a88d5998bbe9a1c79cf554
MD5 8f9be56c02f56cb7a714a38156ffb7bc
BLAKE2b-256 66d430bea61ed72559eefdb4c49afc6584f2f004c955610610efbcefc055db5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b905e9af488673fc82f57a5b33785a83319002184e66e5b0e19f9e96ef3f6cb
MD5 6338ead43f9be63f6130fdef418c123c
BLAKE2b-256 f8f81946f048720122112464e11dafce0e560d6e262eaba6fbe860477a554812

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.5-cp315-cp315-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.5-cp315-cp315-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.5-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e3b0057cdc3b68029f810117ecea876d5e5fead3ed41f1a9d2fb1e9dbf1d1c3
MD5 2fa55ec04fd075aaaebbf1bf1a0b3bff
BLAKE2b-256 eda9a7d096bfcbcf735f90c921d8c58a075b4cd4e727b46fd2165ae94ce3b6a3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 06c32f8931bbc52b6b3f513e831aeb936e231f038b2a66cd11d4a00c131b82e6
MD5 08c6542e9c491f6bcb78afe44248ecac
BLAKE2b-256 3106c969504aa9887010bac12484df2f03aa0e7ca5ada615a989da04e8f33046

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 bc09cdb1a0480b2d003b1629f266ce387281cb288cd9848a8d6d66ad2b15b8e4
MD5 a47f1b63f2ef2ceb95cc91aabe8e58fd
BLAKE2b-256 573756d0ab019ecd1cd418cdfc0e108ff55868071792949c3f91c2977b31e18b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a0e6310ac54e2df95705c35a6f8cbfec648b59eac50b9f9d893114c903824bf
MD5 a3c83b96f0f292745969f8c1925cf13b
BLAKE2b-256 9280d7e1777f2b82b5dd7a3c096f96c59a01c5c741a8dbe1936dad8ba8f8dac1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f3830b6ca1e05e244482029a091a0fac70f69939e975227731a5f325bc98281
MD5 4875cd3b861ffa3a2f303027d7ac7341
BLAKE2b-256 a5eb81dda98752767cc1acff4f4c9bdc521a0a6569b8fcc2ac7034330acfed4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6239ada9d274c789d6f300d72fa7239c464449c8397cb95e0cd4487e00120cf9
MD5 6f922389f86c594a9da4082df01178d4
BLAKE2b-256 1c1897a3787ec5b05e50ff57ffbff78fee696ae03f6401c36f2eff8ebe3e5b5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0341573e1cea6c8736fe4e3f754c80852485182d3d27c2bcd5ee377c9a7754c
MD5 c33fcc523a922f515b647eea2d019ea8
BLAKE2b-256 7b5a3cf4af8ded2e5727e0b624ceebe7ea145bec498b93bd22136337ea5ad692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a275adb8b48760bf1a5928ec1ffdb6b5f3e3fb85b5714bdf5149e756f1ba07c
MD5 5ae7cfcf8bfc10ce3e0eea181682920b
BLAKE2b-256 0011141731b4e5ebb3bdc3fc8b0517d9714ba8cf124bf273cb41d6be0588ce52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 119452c5b3ed0b889ef219d394a216d1136b4c4d28e5eb65e54726cca6b1991b
MD5 b7cff59932cf445a86a5504d693af845
BLAKE2b-256 999dd905485d2b6768c4572945598e30ce10b544f3dd7b9b98f2453b6c64c79f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a890a5ecfeb4db24472465924eaf4f3ef1e04bd9bc8cac2ab3dfe54072f51fab
MD5 ec00698329c257d867a97eb7d4e1320b
BLAKE2b-256 7594e6cafa1e69d55a86173a4ac640f1a08fd7dc723bc85093992199983567c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed2348f036cf3e4b6cc5fe5286120e43c906722735fb355a93724fb0ad525007
MD5 d86de34ddc9afddf60e3cc2341bd3548
BLAKE2b-256 c26e24c49ce4e36c25a8c7b81e20ac8790d1ff4dfe440abd58f5237c370fbe1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70359bc9233a11f9be83a1a40f39655133d79368056d2ff8b6ded03614392767
MD5 5ea8c725ef54adaa7a796bc8b44c80c4
BLAKE2b-256 3b08cbeb4a14a9aa1abba7723bb969fa8043c687bfdcaf5bc1589651d4326b76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 beecbe9f876a4b3a268dc0a147fa2ea00faba6635c318498876ec9c05cabfcdd
MD5 b99ad094b3e729fb7ba59b4b6d60da79
BLAKE2b-256 60ae1a6b0150b577710e353c8e0c0c8b7820be120737d5dfe0ca79399f670fa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ca2c2b4215ecff58238e6cdb476d672c634390c00b95fbc6c5af72920885eea
MD5 8e7936b39145acc0814ceae661fe6892
BLAKE2b-256 4025c33ad686e525a44d074d9c4f9cd88328a02576db03a83558c26b75aff2ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f034f96420416c86d2e22d77a164dfb343e71abb6240765ac0bd8acbcd5f2ce
MD5 e8bdf8e0bde6015229241a5220221abe
BLAKE2b-256 b8cb4a40b37b8f529dbaf04ff01187607d38324e6d3e07903f10d35123271a40

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 83af078b27313de737c9fb76a782b940b18bb4576503460b01a99a8db86bacd0
MD5 2a32bff279b8324eb5e6027c26b84d79
BLAKE2b-256 5fb5e5942d6a0804b77cbcf0ffd174f646dc8d09a7bf567c704de2dd5edca2b2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 580.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c0d356e0df5814ca2d35c081a07cfd12f7f3e925053b02b316c92636eca32fb2
MD5 2093e1da3ee82d80639d3f2329343d5f
BLAKE2b-256 c3209724a174f7654869fd4be59890fa35f49af3c690dbf22cf3fdfb2cc49783

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d9a165f7c2e061472357a978b1f5f18f43fc888e5b0154121f18bf2d6c7034f
MD5 ef6b7969f9831efd54b0b4697fc2eab5
BLAKE2b-256 0bc5cf5f4e9aa92fe0df1aafc04f246eb4130820c75f7ec6545c33e35347108f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 171a0be8585e0286ad3cf4e1caae800e80380b6f0183462ed375a227424802a2
MD5 0270cb6fda6ebefb707046eacad06105
BLAKE2b-256 ea83df9c54de22e0c9f30cf3fc2490205b632e103f7ea513cc94471b2d7347a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ef51c2771e773f9b6b24794201c2dc4623d199307de0b55352ea44b36280d15
MD5 4f8409179351c5b78b9033437c412abc
BLAKE2b-256 051a83e2ac2b3231615f0fb129a536fe8772d21cc1d340a8d768cf43c373f910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c5c1345298d8bf7182d03c5d1c6976d00cacb0cf3028ac6be519a2bfe26aa31
MD5 2547bbbf4c9c91bdfbbce95ae6a70196
BLAKE2b-256 122ed9064be213a76bd1cf2f96e6002a3cdfae1b7fae5a948512d0dec64b7b8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a147b1d643ac3db150a749b3f21e37d778a4bb79b69c26d22f2081954e6f9f40
MD5 c3f095ff1d7ad7ca63c1048d764b25a6
BLAKE2b-256 860b9874643f85e0c739ee044967809847ab493f682df8d090fba8b77e2d9ba0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44ed4990c59479f9292e0f48eebf5576bb23381e8140fbe1ad6cc7b79104b0ef
MD5 2db5889e12a58cd1799a74cb4b55550d
BLAKE2b-256 b19abbc6bd7c44ac78201818e243f15c594ad11c051ecf3513fe43bf67694c0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3957cb94884d5c0e8cb269ebf4bf320c3fbc671be76b7b68fb8cc4e8b8d4c6b0
MD5 2b1ed81d6bba10547a0b88c1d7c0d81c
BLAKE2b-256 7d515e7cbab1e59c5b7b159573fb3bc8ca0c49cba531ee66625cdf878182781f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c0f41bdac081cf44c39fd401674fb9cad57fda3fee1541714f3b1bc7af5d9852
MD5 c514c4dc8d9be10fe292f0abbe7da5e6
BLAKE2b-256 d86944da052a84e86c0a4b6cede8422ecdb92bc21747d7695ac85619d3f9457e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1817779c15c4eef5e074edf39f4ffff6655c70921986834af065c7e4d43643bb
MD5 abbbf6852d07af3d5c3e44191138b8cb
BLAKE2b-256 aadafe9aa69ddec2a600536f3f6a685a94ce25671038aa53c85ffde1b842d8f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 767915156122eb35e2d11b9dffe0bdc528d260bc83672d1b9be6029bd4b0d93d
MD5 e19cf31cb9ed88c01f022e0b064507dc
BLAKE2b-256 e78b00f4c45d66903c096493a9b1a8f6525dd02a335792fde501f3802c01e96f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c511fb05a9ae5366c4d01f6ba8bdb2735cf278a82cfe9e1229ec2463b647afe5
MD5 390983a004ba5a09e49d7eb3381aa2c6
BLAKE2b-256 1cb84a8d3bf92ea7af22839af0756c6e81efe032b1e6d35395e6991a0a778225

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2cc22b36ced55da76d22d5f73cfa44a5158296bf478481fdd2961026523bec2
MD5 5160c2c38caaeeaf4ae2395c38df90f6
BLAKE2b-256 ab694436c43a454eb57737f4b74faf919b74b26cd02b8c7e198d22634b92240f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 542.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 57c1efa269fa8d99bd8b617ff8bce3c146f8a886491cd1f1d51af324de70d670
MD5 aab584c93de47f52eabf14bc040cedc4
BLAKE2b-256 3143d4fcb6db510677359a9ca90095ac89f598ea4ed55e91fe32bd16621c9762

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 580.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 616c857c3b57e5ceb592a89b32e658c5d3a73759435389b2eedde6f28088be5b
MD5 f60d6dc22001e0af0cc68f25800274f2
BLAKE2b-256 51d7fe6967bb480b5abeedb1c9e0302a7460abbf24ff5ea5faa5a423fe8da341

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5fb268ab502820b65c0e0e7b5ae3bb30137f0181f3e7ce4cb3a86c29dff9811a
MD5 09e86e6549732c84b22db682e3702329
BLAKE2b-256 d6f2104ff14f15bc2e95083fd9290f58c044ead97b928ce3677bc61a504feb8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37e07ed438f179e0fc7243745ce6f579b008d3e33d6ac50847283255372021d8
MD5 6f4861eade85de764817b70aaa4b3068
BLAKE2b-256 0f2bdcc6cd58da9cb83e862d4d8bf5af0caee23c15d7d5b61de167f3c508ae6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c0c44c1ebc23cca836ce06eff200114894cdd7db91f6c2a6255917c285f91325
MD5 014c50ac7b84ae4e64b4354061afd207
BLAKE2b-256 27ddda0eab8682a5bc81fd01cb3c4057ddfe927d57f2077f8063d7ad376406e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cbc6ac6d47021a9a0404526de2f92ecada572de32f4c6757a91b6a8a5b646aa6
MD5 fa698ae142df3e720028367a1d5da165
BLAKE2b-256 d7c7a9f334e12150ee92c93f13d0c935a9a7e94912859bf61cd41a0820f29c9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9559137e88b68e9042a3137d7eb13f2899d77b602cd743ee49350a740088b110
MD5 56324d6baa5c7ebb07d53d7d1897fb59
BLAKE2b-256 21553ffebf4c1e88ddfc56aeb18d8a09b1a0466ffa1cf7169ba921762b4b9c1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 23d511836c34c3d5b2d9b55b66764c0b7a4c8e55b2c85b2aac33453ffc9f32d9
MD5 8589a4e5dfcc1c316378bd116e83e4d5
BLAKE2b-256 275b5df9481842e2daf6ef04e82a9e64fc5ad8f4ea8b70171f9573f90508e468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d727d42d3ee9e5b859bfe19a196c7e3158f09e791f0abc6312431e337d0d608
MD5 6b4cb6cd7a3a5da84b3f9897dc048a34
BLAKE2b-256 635476847f7feafac4c27ec913f208cc4f2de780a73117d6e31842ce777da1e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a510c872c1997d6d13ede6d9a0550e9721817d571fd8104122b9260c820286bd
MD5 7ba42bcd79a062e108a4cd3c59e94814
BLAKE2b-256 4bee59d82ce10d340ffe7087b82e4e3a4575745e878905ae2b019a4da7700f81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c9b92c7d1f71778932e325765a6d172fe9272fb6c6730d7f36bf66b0b8c4457
MD5 fab31bc3ad9d1901ae60305051155ef3
BLAKE2b-256 d27d75352f040cc49ec46049e8a57cfa3be6eba065ff8c045faa1bfa2b7c3809

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0f43eee6e127c1c89002f1d553ba01741f76236f9f30b513924783a55a952c87
MD5 3e4d6dbea7c1505d668d8e502a33060c
BLAKE2b-256 7a1ece5af0cb1ffba5b859559925dc42412605ff31e5edf3117b0c9f4b6f9082

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99cf13926a13f3b670fee88f9ae014791d96dfcc996f8f71e62a796c3b04b950
MD5 6e26add97cce9d9927fc202d68ec2ba7
BLAKE2b-256 b9f9472a98d4f054b36ce2bb7858e3ad363c1805545d6cbafe39a8aa49066c69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b09d1479a7afc4e63c5ad544c2ed35984e418571ae79bf4ba911e11e1fb6dc50
MD5 e56dbf99a0effcc79f314732b4805989
BLAKE2b-256 4cf6731959b61036aae9d94cf737242313ee44ce223faede0a96011563e4733c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 543.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6aebdae551180daea9bf02c861af0cd1c48ad83955166c582a223f7b62eff73a
MD5 a8ae04aa6ef26270877fc68f860f2e61
BLAKE2b-256 4f03ba67e937471080fe3edb8a081c14b21dc8698f64a368e661ce98fa28073d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 580.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ca7b71efd7753161c724b7db7a75128d7ec0510c6f892073823e225bf82013d9
MD5 c541868f7d3e7a1db11230b4266bf224
BLAKE2b-256 798b2512580b892c03040760fd939890ce0fb3bdb4c535b1c8396cf9560e7a95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2b73bb3cd20881a20d7dd84b146f05a8ed281b481d96c80403cbb05fbf6d0f9
MD5 fd239e7fecfa07510370d4e8850f487f
BLAKE2b-256 15a71f9578a3f5c6262d26eae1ba61d1b75f17abfd59b992e3ba020e0e1fe88b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac7eff3fc08775d1c4bd7dd1f8a3fb7c2a67072e1c82c5d7f6a9cecb8c190218
MD5 12c8dbac23a0842c24dada53674d4d5d
BLAKE2b-256 950ef4afb534fb9a4829afa3ab43e0350eec7d1873c46468f1b86cd1b44a83b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4de014fc0ed6d6f2d09a62fe67c5ba32977b8ec0bf3c9c92a5d70e61ea3fa47b
MD5 c9fabcd4ea022e311b15cc0a822b6bfe
BLAKE2b-256 49f4f4039ee0470e346ffd845c63425a2746d457305d907f09a3024fb22f220d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e54ba7f3b157505f303142c065b0a89eae9f32e7d2aaea88109b1366d38c5b01
MD5 21fd70e8b20df5a1c2cb5673c37562d5
BLAKE2b-256 b5193131d26ffb05e298fd5424b241a9afd006dc7ddfb5a045571efae7e2f6d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e55648762e16b17fef3bce138ceaee05de96f1350e02bd2689561dc530f86b9f
MD5 de9d5bf72f2b897b9e8f9db2f5c0025e
BLAKE2b-256 a10100fd88bc3a540cb3dd41707de1964eb7102fd0017be71ac378c872161e54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93765d4f7d2d3ea0e252b1348b6d0506c51c890d10eccaf777c9e39953da46e6
MD5 b7764f0fbc7da9f5f0758230e7992f41
BLAKE2b-256 fc639d9e7d266a0d9823d988d0657433fc2c307135fbdd2ee6ff5605fb4ff281

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae560fd0bcf5db8f3bb87c02146958799c86631c78682949fb8bb6525799f5ab
MD5 1cd65bef843f924aa8b076758011ec7e
BLAKE2b-256 f55759ef0b6a338df40ae41d1a06014308ff9dc95e8dadade013b33d7d1a0a06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94c8609f30fc1b93a64051bd57ca4a2a5d5003977d68b9811dd6bcd3e34ecbe5
MD5 288f094314c297bea3ef84fbfd2f9dfa
BLAKE2b-256 0dfbf6192c295fffb47e28b7de272771585284aca2baf72e03dc27d67b3beba6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20c6e83dd226614bb3ebde60b1444d40e5f465c5fd040f9251cd970e8eae1466
MD5 6ebbfce1dfc3de979cb244ee41980b22
BLAKE2b-256 3f0f1bb89f13c3a1df6bec28fc90d1c43c8bc4bdb6464cc52b4a04460d4c273c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e749d02a8893cf9f2866e7642895d8e86edcdb0f9ffc6821ff8e0434f155c4b0
MD5 8ca19cfb2acc4625daa497fd991e7d6e
BLAKE2b-256 b4be7bd9f6c6c4742db9ae4652f8d3aa7f03042176089f274995344a637281f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee31c1aceb450e293968e3abe034824b61f5aee7b3dc990ca0e6505fa126a1e6
MD5 ef5d495845e9c6e5aecefb561fa4c9e7
BLAKE2b-256 7e497e1bcb0ebda8a50ca0885dfd25ad29767850c3aa035973fdb76067b58522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 507f6a38aaaa25527218d0f2362c43ad329898d52dfdbf6de4d797a84816f9b9
MD5 cc1725bcd440cc8db7db1ff1e894b7e0
BLAKE2b-256 7973a7cccbda738f9a1f108a7d881f38c041741edce38803fa066e2a2b190f0e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 543.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 85a22c4716ff0824460b9a98813e12808ff52f5d8ab344428a234883bd7d7635
MD5 35a70a1f11bf12693a46205d5a5699ca
BLAKE2b-256 3606d2f9b21fc4417d5a0efb429d78798f4c82c66d7d64bcaa47b179f9c61ecc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 582.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 53a4a063cef52cad52b0d5f55020963ef57d05817314a212dcb8c60cea07735b
MD5 fe92b672fe488ff04c479607c1e7f026
BLAKE2b-256 4e4e77a9033d0e6be4aeb225e8b9d9250cd7b5fa1ec13087e08900c709193f86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21cc272230c3c7dafe99648e4099d7e24a225e3c9465055048a30f26aa62e9cd
MD5 f31b2b3bd143d17a46cf915827a87b04
BLAKE2b-256 e5929629392825710acf4dca1579a7846b0daf51c649100bdb9ad50d7e51c52e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8f9e51de2c840be4fc5bfa477a0838b8211538afb1678e48ef4f819b192f28e
MD5 cbfb0dfc6d6819ff573876c86b8373b8
BLAKE2b-256 900003cc860b3a234ada1a8948ea5584f1e0b21c63aa4d2b51d9f2c797ddb1d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08ebfd2893c0df1084491afde8af209a7b2b4acdba958ddce814578199f0a4b0
MD5 f5f79eaee552d8a65ea35077849a1753
BLAKE2b-256 e1dce4d16a8a045b6235d0e139944b825a0b47537ec0baa991c29192751c59f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a91e8a23840ce92ae862c611fcb5dd30dd8a7fb6b1e1acc0e2781259b2a60a5a
MD5 f20b0364f11b605f9565c785507784f8
BLAKE2b-256 b49ec0b657f6aef2cd68546dbf4d1ca0e20852bab2e5943a44aae1f54bc2ef2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 802637f87cbc30fe235be90282ea09e86dd5cca23e00636b6a829acf58bec32e
MD5 c7d52e2f665f4aec74f269dd7c6f70fa
BLAKE2b-256 485445800871035fadd192930d17cdc0cf9aea9c15db6307b27f66a1253e25c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25c57366694f98736820cd7630259cdddf8a617d5149b0e987b45da09541c437
MD5 dfb8b9cb5c93d07cff05c02897b2c547
BLAKE2b-256 de45a2a69783457b26e0e7d14b9c8a2baf80136e1446a7e9a6512ac0a249067c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 825099df0d0f3ce568e7f52ddce07f8062568f1c9b3059eba70c9d52334a5546
MD5 ddbc894df6a330272ce079e560e595f6
BLAKE2b-256 84c3acd0c5fbf281bd40ef8551cbda8d5515debd5fe77086b4e0bebd08d73773

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3da5bf52ac467382067541f91a08547bd2c5ca79c9427728e22e1ab8d60f440a
MD5 6e25de845ee89f7d052408d1b67e390b
BLAKE2b-256 d5bcea07ee9fbb926ff9e9acb46a95fcccbc068b77e0472b60b37ab42e1e7a14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20aeac5533f2da9bbb520c30c100e799a31d76dd011c645d19c92240a4ad4ddc
MD5 d2ae1cc3b2ac0e059e5e35bcd1297844
BLAKE2b-256 cf9cc97a25aba29deb6eefd07b1c55297cb8597952196939af8caba35a807cd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 958f66a3c214cd2d1a2c9055cacfab11e83e4c22cf3b84df7e0cc7b948ac87dd
MD5 e0447f531efe1dcb6701f1542f2e951c
BLAKE2b-256 debf688b03ac923817bf1643a8966542d5da5e849a7546f56a0a509208872cf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fda9c474fb5260608b8b2b88df3860dd8f6870bbf18bb272921fd36985fa95d
MD5 221af8e75c4c509bb66dc571454dcafd
BLAKE2b-256 8da5825bb5f90af29e2ecf9d76da26140a9c155b193a744c8d584db19a4ac4ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bbbd16e41b85abf8f4c6c23bc3ed6072647713a38a489c55e673577260da0223
MD5 b81716be8425c42f71ecabdefe5c4357
BLAKE2b-256 bd039a0c3303e7487eab0623abccc3325b48c96af20338eaf262631d3eb981c7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 545.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0b6840749df7446a22ce7b6b71b9ebdf7a775de2f67c09ac7e0a12906c252efa
MD5 c864d9c26b46e7fc69b8855eb288fe0a
BLAKE2b-256 df509f44375490551de4451925bf8e53903ff1a549ba3774023972bda8aa217e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 583.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whenever-0.10.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b3f5eadc771069313ba669dfce1d6dcb2e0f1441129e8296f6607e76ae786ad4
MD5 3dafc04a9d07b450cbf9e2cafa936478
BLAKE2b-256 976b3534fb352acc80d7438445ea91302ea4d14c01c9d49454487888a8d760b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6d826fe73880687c9e70362548ff986bcb235c47444a34a8339dbfb1ab8c417
MD5 7d5a455bd06fb92ffa8a1b2a9ad16a2f
BLAKE2b-256 568ac8c592ebf0c4871d4bc56fd4d6e511a34e1c6f5fb98104fa763e5d4c3947

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06f4406e70fb6c718bc3561233834c5f14f6b97a168fce861a8f1d5d1678b816
MD5 4fcd9e46dca896c3fcaf649290bbe1c3
BLAKE2b-256 03bfc5b08e9082d7e3df9942cd590e5d4f5efb16bfb28496a5a5102488bb8483

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b575a98dc88a79e434c528a5dcc2eafe5c4ea6781ad2465aabf1b117d57ec83
MD5 299640611ce7e613cc69ffd0ef3f8d1c
BLAKE2b-256 918f7f3d0be38b134ee48eda65bd51ecf528c781b148c5cd2037472c80d45a0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14738d0ba34cd78bc6f4e631e065c58287f8bd3b2048c02840c4290d896ab49a
MD5 79df3966616726ca374a3ef9c931ae99
BLAKE2b-256 3e1f82db718f0dc8669f14c24bb3721a7feeae8927ccea4fba51b67a02a5343e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50ea881791ff75434941e60887393c692abc3c6566692b5b8c0457ee8c401315
MD5 ac5707fa9908bb12efbef0216205bd66
BLAKE2b-256 a9d63ad26cf8b4709e69c107edcec765494e8c3db5177839a901115b2f4a188d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9c63e3f64bdaa8d1457453924dc3cbcd1f42a16332873339b853205168db829
MD5 7951aa71204426411a80605a5fd14926
BLAKE2b-256 fc190c9bf9a882fcbf4ded0bd1a83b172bc74a26a307e08961d0b6953e12824f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5439ff295b0334afa3fba1f4f0514aedb5d7f7a86de1d558f86a4bd2ea839615
MD5 4ebfbd8e5bd6a86f444c7048e272e67b
BLAKE2b-256 c787430fc8d87d553a47e5787f565751645c67bdc7451d4ab3314270fe8d27a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17cd865609534d6518b4894dfd1b2d854ee93b72595b88d18a2b2a3892cdc738
MD5 e47a81f2c58eb2cde8dfaed0e58edd73
BLAKE2b-256 eaf32ef7c40fa71ed5b3f0cfd043e6b0692684168b002fb9717166280ee0f21b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf626af1031384112c456caa929d9e162c4a9f5f52f21f5328939277b7c77a06
MD5 00d887cd98bcca43e96ea733dc94295a
BLAKE2b-256 fd52d721b804b1e14fcd1aaa0cbd1f3226e871184f88fa13ca68cb69469149bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b0ac9c71070ca8971a098c390eb32bfb6a4925bbd9740ddddc8fe327957315c
MD5 9eb061b16345a9bad98ff2423cf95c76
BLAKE2b-256 d16769c6aa7b4a400bc5a7f4c1bf3c0b05b2bdd59346b49395ac6b18f27ea832

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81080fd49017dbb7742986fb456fcfd7ddb2127acd1fabefee062b636cbe7c06
MD5 7ec6c7eb03d10e1ed58275e9380b14ef
BLAKE2b-256 60393fa968d5195f24055d8b21bb800cf07cf99a8a80d8c5b46df51a9ec906a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ae9ec3e1e24dbbb5b26ab291c726a742d623032a9dae284680c3264872bd617
MD5 a12b42e68922fd004ea4aec3d4b9f86b
BLAKE2b-256 d10db137f0cee4fd488fed60d71ea81fc7c00441506c1cb68e0d049437cf69a2

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

Supported by

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