Skip to main content

Modern datetime library for Python

Project description

⏰ Whenever

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

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

✨ Until now! ✨

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

Shows a bar chart with benchmark results.

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

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

Why not the standard library?

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

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

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

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

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

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

Why not other libraries?

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

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

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

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

Why use whenever?

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

Quickstart

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

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

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

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

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

# Comparison and equality
>>> now > party_starts
True

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

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

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

Read more in the feature overview or API reference.

Limitations

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

Stability policy

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

License

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

Acknowledgements

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

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

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

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

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

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

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

whenever-0.10.0b4.tar.gz (429.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.0b4-py3-none-any.whl (119.2 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b4.tar.gz
Algorithm Hash digest
SHA256 29299648d308fc4ba4d7c83b3f8ab0ac9f2ffbef30b01440cbbfb7a903095e16
MD5 3fc083314bd399a965c58674fb6fc284
BLAKE2b-256 b710e7e373c11f2fb9bc7d587a68e06ce33401bdb39dd75872b71748dc6a383e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b4-py3-none-any.whl
Algorithm Hash digest
SHA256 d9c7e8f10ec9f151466b0aed725dcf32e23bafd718e00d4ceb919576b4580b50
MD5 1e551db4927ef0f86bcd649c0732e8ec
BLAKE2b-256 76e1b58d28f77a9ab01d6248bd84766d3569f489e0e747fcadc40a2261ae1e19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 04826ee541fd27d19c3ac6e19b46be37cf74f0e8c8fb2bec5ba9be1ee93d8a9c
MD5 410a6881f1e575abaa46297d891d1a4a
BLAKE2b-256 d13878f9eb046938fb43f99ad86bbdeb9a6aeb9bd4e4b099117697ec4cc4bfd7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 023660d336256f61e0ca8f6e5e31919b921473ff6fd10c122b83bcf7604744d4
MD5 c2aa3dc28960188b8f3d60c7ffd62ead
BLAKE2b-256 e428a82b7fb740aa590f12d57f08cb8b876302b2031ca1f2e279da4ef01172ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1dda9bf60aecc898983e0e0f0ce0c5b144ebdd407206b1331f9e0c05d0c9dc99
MD5 810567e1c0bf30e2a2a75cfc43392423
BLAKE2b-256 71b42f41adb3f20d9c3cdaf697f351e980bc8f7d2b08b2b2fe9c2436d1dc0ede

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a13e4029a1f091ee11827628ec85991a712afafac17e962d34a7440f30a7d4e9
MD5 66aa3160f3017ee0f915d1691ff8ee6b
BLAKE2b-256 2cb7cad65d36e46ff00f59b271f46507b2ee071bc30c17f48d2555e27b97fb6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6f79797aaad76c3af6778b99dfb208eef8f881acf6ff30d81f9e790c146b948
MD5 83138a033dba538d59dab457fb777f3a
BLAKE2b-256 35bca5033d69a8ba3c759927d2d39a2ed46274f262240d453f612e3ee621bcf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f390efdc2d6425cb3a009a60083c3e5bcedbfd34c5387c91afe63b48fbf7af12
MD5 3ac4d71e30d707c4c413f2720b375b45
BLAKE2b-256 abc02a627356aa8c55ee08035d9d9079efd22310f6c98a307b49c072305fe88f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 660020cf6bdcaa2d1993882828680fb11ed09b68001430181d53c44b8d8bf429
MD5 ba658a6a94ab06e8312fb21bd0e3da0b
BLAKE2b-256 cd50ea1c405cb49234266263bc0ed299fd1d9364bb282d041520301ab4ca2cfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96d5d43b68e7758c2af8d0ba605b254c7c2bab0751dc54faa5db88a40a96b67a
MD5 2d634538c82c372e73e489589cc55013
BLAKE2b-256 7ef5eac21278706362bff2122e5f88c5a583ed29764384e63e48695d566a752e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 abe8e7a74ce36a61591483f977399a0d92a21726aa660c2b1dc59583c88c8d57
MD5 64907421fa3c32507264a0bd52dfcff6
BLAKE2b-256 0ff5c0333a2bb7a5b5053ccafe7ca157f114bad3f9e076949d9caee200988cbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ae9efe6d7d07e390e01ae114f4167cc9cdd1ae06554e737995c5e2161c81880
MD5 4028d780ba94f82697ce8035f4534861
BLAKE2b-256 685773b383a1848d6fc8d5aaea3f8f12b3a3129f5048699aca54393187fdc19c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a58520f00370e1997250a412b071bcd1474375169b58f1a476e702d04bc00f5a
MD5 6fcff6aa19ef187ec94862c3e540004e
BLAKE2b-256 3eaae91919d67e6bff454608b083d84e60bfa3e137cc29a8a48c663c0b1cd89a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 44e7f1d9e7b5cc6e098994aaa8d6fd2efcb97bedf70ae5e5fba26a8eeeadd4ff
MD5 3d47c2e600e606b3efbc4f269a1d1647
BLAKE2b-256 619255cd7d3413f8847a0b1af3dc96c80ce0c5cda79389db12755b19129376ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72de19cb8ac8659694c5875dcdf80ac30e3b5a3e523f3cd54e114c4cd45c9fe8
MD5 79b0f8ecee3c9146b2fbacf496216333
BLAKE2b-256 dc5a180239ede61dbae9832767b16568c02a6d2785492df5de55a94c8f6bc02c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 893511c94657bed80a807c14cc1e4b0b3ca2f4b556055d97a7e5ba75eef17828
MD5 a82475f427cea3fb2001eb651c3c6d80
BLAKE2b-256 bc6a51dc3945d3ccc449f8557874a12d3b34402751fb0461d951035e4f816bbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 486399fb91b4819256b0a961475d7c81cc5d958c3ae5e367887ca5167a06723c
MD5 46847a2f88b68f0c88c63144a6fe5374
BLAKE2b-256 8bd8b1f401ab6f302407862b332c3f74b3072ebeb2227ef3e0b7acb7b7ad474f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a4bd70f7f029e6f4cafdc025e252b5a290d87dfc50700f618fc8a2b0a0499473
MD5 3230f2ca7aa9689d167837cbe970bcb0
BLAKE2b-256 bf94f07ae4fe0044cff3bec82dffbfa286d212f85a6e44576f95c8ab61cc62e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5384a55c9dc28b7f617bfa2995366176f99004e6f4847eb84047cf9c52c81274
MD5 fe52a066833820207a6638eaf74bec39
BLAKE2b-256 1c590796862fca3f37506fc11a935fd43e34f08c558e7d0983d340b0caefd6f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 156838785d8b6caf7f4344f103d5fcca857479678c1d738258c90d060ae4cff5
MD5 73d0576d45902b2abfffd6207849b085
BLAKE2b-256 acb35f450286830cd346d739d6876f390c80fa6c37f0ef3b487cab45db5cc045

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd2e094910fc82d08e3fc87794a003bc93019ab37d6700b8efb681628f63e472
MD5 55aa2d5b57ef05ab191e13fa9fe993f0
BLAKE2b-256 aea26269419aa2a9bcda65b8883fa6594387c13bafbb283cc6322563df133726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a01d67e30fd69a2fd6fdb345d5caea2f85f4680ba658ac1d54d417d7be3a66f1
MD5 1a47e54d41206bfee4caafeffd01cf3e
BLAKE2b-256 14ea9afe792acf7b71f37c33bd5dbc0e47d77b7a113dd63d057cded96d2671c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 527ccbae570ad0864f58cd1bde05c5edc766dcae8990ad0151e2617fa1fae355
MD5 4119c005025418aa0f07fbc22afd9595
BLAKE2b-256 8761504b4c48c63c59ffcb5d8d2f545e5b7b0bd0de531d66920e83da0b532496

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8542657d80ea48ba57da9c416e3154436c1fbed1522589ddb749177d45975d01
MD5 52a20d825e892d24c9eabe2a1653bac8
BLAKE2b-256 bada19adfe1a3850fd22d151e833901ab14714e2fd236146d308cd2b4aedac27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14d1c58079d7d649e1ae4acadc60fe805d75f399aa96f81a9d56b8c37c7e4bdf
MD5 184f25fcded19334fef3e285296a400d
BLAKE2b-256 1d592439f9d241a4d28b097c090516382343815e108796f8bbf769ac1ba00387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7472372b133032973fb36e930376eb7f4c703b2835c8c6a3d479e02483b55d33
MD5 e151f9db2a0ab7b8d67d6493a64284e9
BLAKE2b-256 2ded1dcf1330a48d47f6939c57a27c0e6e4d3bd722c8cd51f5edb0558e2065a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd7f24c51ef8e2533b4a24dfa89fa1549559205fc1248c1ac1ed48ff5bfd2e8e
MD5 64868590a2449bc06b431f8561a4fb18
BLAKE2b-256 77cccf28b299c2268e54e349a6a41700c50c706aaa62b39cf90aeb1c8627f3f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5dfe72e2dcd556bf42c109084374836db3db481f85acca2d4eba6214e97d5893
MD5 351918abc363a166577a92aec0c1a960
BLAKE2b-256 1abfad7369450a46d13cb1e1046cb9720413371b8d0d08218a0d18dd1f7888bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52ee44eefde3501d1792bcf63356ec6beef029a28b830f36d8fc897f1a0de97d
MD5 5832c984a0863f8819faff00e763b260
BLAKE2b-256 fe1fc3206b274511851699cd0eb8187edb82b65f0e00c93b2c9b5c0575cc3691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ad88c2b0479c8b524aab65719c62e590074001f67ba029ee8569c5a84f7231a
MD5 163313453e98c8076088648c80bcd06c
BLAKE2b-256 b188d59a50a11beb8eb385d01b1453a1ee565af4255301f0c5952145b303edd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 b2b2278d78f6f8ad7df80df3ab76705e9887d839dd7e7e75f5a282a7de58749d
MD5 2c4c55add4aeb2025f4c5aad15a67a98
BLAKE2b-256 e3669f270160cd06e5fc72a0056c6850f2dfaa238e7084c82a09167f325463a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-win_amd64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-win32.whl.

File metadata

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

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 e8e8222f6ea6b0a20d2448a6529473bf8393434fdbc5f22b1f8ed7dddb2e85dc
MD5 1a051cb8e9ce393a26c176a48c1d6478
BLAKE2b-256 1ec0163110ee2e5f128aa882a073c2c36a606136cc3883a3d024d358383d8054

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-win32.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1d768143e432ed806f29cab2080227c93e8481dcd7c9522427d2b73c4387e30
MD5 7415047ef1b0ded6a6567c578955becb
BLAKE2b-256 20c0a6bf5764ee6b78fc4f9bab28277a3b5b2aa4ab1f5c25a5a9ac57482aa1c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50d39f7cb5bc740ed41769188148495633d5c396fc5bb961320e96567d1e1910
MD5 7a5e8f12f9f40ae8cef5e81057c498c0
BLAKE2b-256 69e9ed7b70b662202cfa53bbd3bf4377d4b11f8e3fad643c50f561f2d427cd31

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 082a72917147407f84d86b0866e5427d1eb2bdd2b8413119ac3c962e7295275e
MD5 63474c2b84b852acadb04f4d26c9cc8e
BLAKE2b-256 ac732391eb30ac2674f34d63aa703bd046e6308d37f0e177b5f6758b142ae757

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5d51e613fd9cdf9f69a7c12b773b634a8007755b389c4fc4640c89b815dbbbf
MD5 bae604388d47039cbde50294dab474e6
BLAKE2b-256 7e49acf3cf6225172b29aad363a213333aeadf789119c798c11f899b6244c523

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3dbe4dbf55512ef0f75ffa4ed13e9fae0d8898c971e130326d68c5323f4551e
MD5 904a2847946848cbd2fbc904f1acca78
BLAKE2b-256 63717a2718646d2c7d803d08fe789d01fb75561312939ee0ab9af6cbc4041d02

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f2e88dda5a45cc1ae84af9986bc96dee0f49404a29936a73a7d0126b520381b
MD5 ba735a5c4c30adb157e612a334ec056c
BLAKE2b-256 887b8d437e4ea2d4ced7f5e4eb2916ef613e354d20329fa48c0704438640203b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb02b026d7eca8846aacd74dd7e7a8531a943965407bfee6ce2f3e54cc50bd89
MD5 097761512f0edb630464de815c1fc754
BLAKE2b-256 02821687ee33d5f439e2bdee8dde6a49b68ff4f277d2b6c3685081be7dc6df9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0ccd414806665015025b84132f94f52fb7eb3243d6a72cd37ec203c78ea2a19
MD5 e636075a07a1e54bb1efe4bf8ba196ad
BLAKE2b-256 fab18c5cb570705f2246db403be9e0a29ef6d6e0ab9c0845f8bb03ca748cb58b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8328791350c2c015d0f91cb196d8e7bcc655aff64ad2852381ea36055bfe34bc
MD5 37b3041d11c3add6413768a6bc83d751
BLAKE2b-256 13304cb36456f57824db6ebc59bce5c6c99bfb8fd73355aae1a3dd57ef5b114e

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 31baaea54472a2ff2d4dceb0c34c30c68c3e46e25a0cfe60b6a433311a9161d0
MD5 f5a7182a60a84e48caeef0f4dd4c2571
BLAKE2b-256 e0e27ba2a90c31b88c8339be9ba88ed59c736b52b2f892da2a7bf7200ff8b735

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5708d9437171bccd50b21b137e8e521fa807bb88be53c5222613aa609dbe8765
MD5 a4da2cb3bd36e4aaf754306b8abb935c
BLAKE2b-256 efe846532cf8b35fd53f3a3525235c31c5f559d3a263afaacd59cc0b3cae5e95

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20f2783b36da570dbe3b825187264a7417c1f23a0bfa57f133c3f3c317895447
MD5 e453b260df7463b2fde03f351075658f
BLAKE2b-256 844c17d3cabd5e6e19aaf7cffef3826266137805c963498ea4a25039bc6f43c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp313-cp313t-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7c6f5ab2b63fd3d2d134702775fc8560ee0f79afb511d29f7c19a94f4482a2bf
MD5 6bc833e42ba3f53e616d71c9b36b700b
BLAKE2b-256 ad5c072b3fd2a20c0481010b852cd7d630216245c0b8adf9e3ce51ffabe18a72

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 152898c3a5651ec73b9ec55e0c69b86703203ccafb78cbe5494d3ea266e76982
MD5 e315a9c36986343c8836ba0b6f54511a
BLAKE2b-256 3d2f3d8fd224132c5c35f6866785673f157d5ef983bed8a541e84ffac1c8ff86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3873a7b85839df8cba3dc002fe2f436eae8c1b5f85d2abb8a47afe7d2a185d1d
MD5 b6e45aabefb8d8ca56aad9d25227546d
BLAKE2b-256 5d6c282e059ab24285ccb37aa1475470ea41c83b24b9aa988e3c4de55b6ded3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42bc5408f39d3808124a5f3a77a5607796f3e363b92cc5de470d2bf7567e9fff
MD5 00389d0776ab7c1fcba012ffebf1855d
BLAKE2b-256 70ca0ebbbcfe0f49b2394043b7919d29ead22680e644f4862358ab32c2976556

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 836d47c9a5052b5d177fdf4929e76fd4d6b766883cc7f7fd5bf680ae19a3f2d2
MD5 30ed1dee28f2366c138e240b036bfa90
BLAKE2b-256 e6e066d51d716ad8f0be1c9f56cf9148ff92e8d5842195a936f83b498ef7af1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e52b9bef8435aae1312c69d23f5a3b8918e28bf9aa5b17fb38bd807b3a56f3f9
MD5 077b2d88216e6757b47bf498e3c579a7
BLAKE2b-256 399b9db061d55dd53755281606a2372bb97478cef6a8744a61e514e30bbeb73e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b6154a79279772ed3843f065c88c475a2448ffc87a2d4ec76fb212f0e559f44
MD5 f21599d6fcc27fa74a16077ece5a227a
BLAKE2b-256 935b2cfe02489946de0fb489a54f8ecb30aadc71fd239b675b46b6d4ee00317d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6b60bb709a2f138741056ff05a085d368d394615c24e91da07119664056bb76
MD5 118a836aa66895ba6ffc4cc101308f7b
BLAKE2b-256 aaf630c06401800179c4786e87e131fa4d4ef09db50f1850425f335bd1807a9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d7ebe69678d50eb390ea2cc568e72e71b4f56ffb394a87b297ef2147b0e4dc99
MD5 bf8bfa0562c9222f0fe8edcb1e777990
BLAKE2b-256 d804843143c1c6b0ded79205a321b64d2e5ab25b4ca24384638665651e5d1423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 555c497bd5053669843752c9985635f1831ab3cb8def13fbeda61bccf6eb57b1
MD5 a012c4c9212d83f1a774f486c11c0492
BLAKE2b-256 1db9e6706763f5ce975cb8331ce8404f4991a788438c8b3114e395ccf4c761c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bd125afbc8b32919b791a5f829a3458afd72e4e91991c62c3319b87fc73cd69
MD5 12aa134791febf66381725daf481de67
BLAKE2b-256 971970a4bb9027e1a73209ca330e2258dddbc47eb7f7c986c4f013c7e2ae5c72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26cd1acfa7b4e30edb5a47f722fd95cdfb2861e318d8ffd7a35c2e81eb1b7209
MD5 f8f5500a92307f9aa2b4bf775dd6e53f
BLAKE2b-256 46d7427a831dde6288be9ce79b093c0b176814eda13927878ebe0b57ba9be0a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0a2a4d8bc293304eae04ef300c27e28e9b4cd2dd41415d9bc8cc3261e43c2f8
MD5 3af3fe10ec051ccbad53b403225b9ccb
BLAKE2b-256 e10fa72bc081992cf6c418ac9bde7c0af12a825c3a3d4bcef44eec2fafe8099a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a54da2430ea868f8efa7b2152067ba8836207be1b11d758524eab35d3d38b45
MD5 056cf0b05af96330c11e2c4016c1dcfd
BLAKE2b-256 68382b6306ff99c89cdf0bcc7c0e6b5efd8c4fc03317cd6907a9e6643f076174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c1a6c34f2d2249a2b38fff0f211bf20d84bc1b595ad12618aabeb69673155387
MD5 7dbd48c1d4bb14aa256ab03788d93ce7
BLAKE2b-256 6a7707c9ba3ecec47dce24ead4713c76804ba39406518d7e29628720485be48f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 65da7a330ba7780c5c35010648c8cc674189b7dfc34809f2a766727920ddba22
MD5 05850dbf5b79ac258aad4420e2d68379
BLAKE2b-256 0855bedf0a81a135f70fcb2d5915d44f90afd0918e571c05f69c6403e76595ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b2eb1595ba169bf3134ecd4aaf88228888fff41d09569bee7d8f9aee69ed953
MD5 7eddd642df9484668086bf422a1aa7f7
BLAKE2b-256 40e0a105cd9b100a9afc3a18a24af9efaa274fdf003b029625849ecf3e796613

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 caf7cbccbf08eaf73b26f419e6bbd224907b11523204354d1c29dc35f96eb439
MD5 fbcb94ac2127657d47f638780be2c624
BLAKE2b-256 db3727bfbde2f084e1f139829c9d4d25d9f977f91f4986dd914a0913a9040952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 312a6796ff6dd609f0cbf847862fac6c0ec3194e1d575a2b2f43c5c755184348
MD5 131e8b4068c36b90bb43424f155924ca
BLAKE2b-256 dbedc1d60440020fa327ca9801e726365f3aca0f722b04849fec797aaef0aaef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 112ae7470c5f467c169a04b677cdeb44f824aee4909a8eca8e25cf30b021654a
MD5 38ecfa649a97a1f52597a68c54a1f7d9
BLAKE2b-256 dab6ab1a0bd1f69ebfb5b4ecd927f1a1f33f7de632ace5c788107e3c707f69e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1def980613b1d28ae2cb986119fc35a5da3d2503c687aadb71e34c3def84614a
MD5 4bce765fb2a17f32f325638c7af3ce56
BLAKE2b-256 c4c7762a172c3b139c02d5cf9f54df2297d98ec26e95951259ebf913ada12c40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f4ec43e1c64963d14b8fee8726820490aea3abf9610c51027f3450bc2eccdf9
MD5 732fffc4347964e1e277514a59c51b5c
BLAKE2b-256 d15cd6c16a4bdc78c81136e8296388bd2a6ccbe85267483ae3fd5a7eb652feab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75cd8c389655578a763eb622bbd1de4edea7c1d5268c1db07d3b9d94f9b89bfb
MD5 9a946127391c4fd3013a0e39293da886
BLAKE2b-256 f253b55f891348de0d6aaeded0e3d40699e1dc275e31f8854b64ad0c3692e032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04f8f9f66555c4c1a3b0a19dc5a270ed024119f662ca677b3fde81ee23921fa8
MD5 934b3359e28ea7337d516d55c7d02fb1
BLAKE2b-256 034d234f9f628ae296f0677f6725e9fe8ebb131673650c2d6e8ab2ac7aeff7f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c134f76deb0025d48b050bcc426d42649fa2612f5574097fdfa4b74eebfa84ae
MD5 783ecf7452a7c35ab933551f4fead2c8
BLAKE2b-256 8d9870de743eb7c4217e090515c8a8e2b23be793b5e0e0e6dc7d044e9b174dd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de02162a30231f732b8cea1d6984d037f42e02272054f1657a0d32818b8187ea
MD5 2585851a0802f25711151789a5b73962
BLAKE2b-256 7bc626bc7f3d3f0b32866705934fee444f22dbedf3f30e8014e463775a847c91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfec3e5e371a6e645dca24e119c9e3d9591a6123177049625a714f2f1cfbc795
MD5 2e1169355462a367d579a26d859be5f4
BLAKE2b-256 9e268010fe2b27cd02b4594b49ca8f5d5ccac1df48207f53c021bb780b1046bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c636e42111d00f7fa8d3d1ef8b54a38040641900c43fc84c70105ad342280aed
MD5 e85d74b54ee9e98e8a3d1f21f52266db
BLAKE2b-256 4d15b23a25d19a3a877e251d86789ac4aba2d38603d176e1aad53d914d492f9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b1f7b2996bfed93dae02aee6d0f199cf92ee78e943dd14b18f077a633dccd362
MD5 15dfac52817126528fbfeea7cdb987f0
BLAKE2b-256 f916cf62696c18e39fcb2f9317cc852dcfd62e3615d43771368c224d14100d5d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b6c3a34e992d1c95d8ca70360ac4caf39eef7f73d97d6a4050b2d1f7b0d3bf21
MD5 c2f2e46b709823e69e92906ca01cf7d8
BLAKE2b-256 a38f0b36f28d2ad5e400faf70f7a07058f0c1658ed1f6a984ae7ec134ccee931

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 018a31d7dcc7a35a3faecd91aee745bbbcf6643f299d926ba6d481e0175a97ef
MD5 856e0e58281f1fabb57dece4f21033ed
BLAKE2b-256 b01a6de931115a4a46574929ed231c881bc91343e44fcec6357e3e82c9d99f90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1995861a8f40fabd6fbcc3a2f861f31538ea87674c4ec041193102d52691b7f6
MD5 fb9c7229988bf87a6bf2f1c188ee8b78
BLAKE2b-256 9f51329c400cf950e0fc01b43ade0ef6d8bf5b8590d90dbad565b86c3323dbf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e905174a3e3c3f68e6d16c6864ae1f717d103c005ec3806f74295c3df3813ac
MD5 e6ba8cff290eddaac62e2059b600182c
BLAKE2b-256 1c8a810089ce7fffdaf8c8ec838a9f22ff35ae4b799aabe9845c20ef1f3de13e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0c82b9f95928fb2c9e1cc12f09c1c0c96488d5f25f1366913d6ed92a0ecb23f
MD5 853f4c090328e848c6809d81a6d98a9a
BLAKE2b-256 eed631d8a738dce352ede14e63b1e3d181d88e10a88510fae0a7cb92c100d273

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f18dbd750f934074eec6b792b31f5639c2818ecfbe88daefd17c6a0da921687
MD5 7312eb9488369bfd13560906ef44a31a
BLAKE2b-256 f47862d96b768c29b97bc8608b53ad5bf305f19be8c70ecbfa79dc0de7aed534

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 36d6e14c7d0a8ea2ee5cb18bc7dd5e67c78edddd90fb39840efb6b601453834b
MD5 a56681a6797884730e8b32310e2435ab
BLAKE2b-256 7c3bd646b0353ca4818c886142480839abdbdaeb507a241114ff73da13361882

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a643e4c276ede8d3118b2417348e10dc2e03b247154f284f13412b3f3f74acdd
MD5 fd1d456453bd299df97acea748761c9c
BLAKE2b-256 cbcce5e660c3d43fa3ddb9095b0ee741adfc2c7408cfb96bfb66fc28c506ffa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34a99996e54df91a6c6afdee34feb9edaffef773609ab90a8c908dc6c3d96ce1
MD5 9a2369a93693c4d00460fe5e9a5feeb8
BLAKE2b-256 e836ecf8d34bf6c84b27d520db80d7d55c6a28fdd4b3a0856da1c89ccc514b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13c14b5ff8a6a735caa918aff83699ba1b8c0c6631632fac24f65f274af61c58
MD5 e65fe416ec7bb6ea342c319918dedc68
BLAKE2b-256 9d18b17e6c68ac84739c4fbb8d15d52043f5ccf1288a28439de2f16bc6133066

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03d7a71e57410de4370c8701ec770cfcaf688918a5554f167357f1f13bf5bbcf
MD5 6023c09b88b1edcb1edfd5f487cae4eb
BLAKE2b-256 144b3ee9a5eca656b839c5015b8ebf314eef06531179bde1775d43ad8ddaef3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 503e0e1b5e9cf87bd8877cd406cfae7d3fc632e1112717988eb70c4ceed6fc2d
MD5 953fac65cf31453bfd8aa32988bc8517
BLAKE2b-256 28260abdabed1f8c8b0d44f690e5f9758ca1efd0fe5992451bd7498be612f1fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bbc1ee1bafe4f26153cdbfad79bc7ba0dc76d3dc4c941caa4395c04b7ff0c9f3
MD5 b0709bcc7d7f8e2f0d3692b57d34709a
BLAKE2b-256 cee23702860c2fd32e7b96ec169e9bf2262b85f2c9da11811f7837d3a9ea1b35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e6919f6be72dfb329c9c7b1b90be2a8d7500a1fdf37eed05e98855e60a58bee2
MD5 80a8044d8ca3193d026e3a99ea2c2034
BLAKE2b-256 212c004916a979463079cebd48c741dbf98859451fdcaaf513d98dbbc055d9a4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e010df0b74d6fbf210ad14bb07ba06da9a99052a89ce73f232cdc3d7b5542629
MD5 732cea717b8755683b9b4ad9be217bb1
BLAKE2b-256 a64dbcb7b59bfb4afa21631760ecca8fe6abc1bd9e0a0a7c04c24d1b63116279

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e23d127beb2c5c8ed95a57d1dfd6996cbc3163feebef64e6eca4bdd83e89979
MD5 3d77cb6e03b6de47ed271ffb87b8bb97
BLAKE2b-256 caca0bc2c78e65925ade8ccd051d9ab5f6bbdd66c4e5b23f4581a6f811ee3a11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff3a06b340662d83f1727b2f762c427146ad180008a2150624a3ec52e85e5fbb
MD5 58d670f1142b7a7bfacf7c8e95cf94cd
BLAKE2b-256 076530d4f3a3903437e784fa5693842da505357752117f04c01e309433709943

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 305d07433dcb7c1990831d47787804c2bd9a6fe08428e2e12920c9576fb21388
MD5 4909f081f576050699bd9ed89719a14c
BLAKE2b-256 92d29f0bdd632700318f6a468c6cd50e84fb058e3285efe1b3e6d86de815e6f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5927be667e4882f104bfe054823b411cdf0111ab6cb55fa12057bfd369a03d45
MD5 862e3327167f4e3b59324a55b260fd86
BLAKE2b-256 1590b3bf85753434dc3f9fe6aaa13ff0557ec2b06b9aed29dc624fb91dc83524

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dea7e1acba826325b16a640e464bbcde619ebc820eace60f3efd2880dc5d5a48
MD5 3d0f52fdd41c6d11615c569099cd2976
BLAKE2b-256 30e2877b3f6713f41e057fd6c6f590ff8c7a9a0ea97b0061e6a64808eef27e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54e354de5f700bd17445436931eba0174e1b43cc0f56e68c0d4623016b4607d8
MD5 9599a39adfe6162278ab3e2c9593c742
BLAKE2b-256 b9d0bab80db033d72288c1802ff715f79f421578e871f79570f9575f5e3210ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 142c5a3fa2896ffc2bf4a22af07fd95371f41639f7c75800b050e7dbf38c4274
MD5 92c0fedfc6317efd3d8ec7a71013d41a
BLAKE2b-256 44341e33cf12a95e4d8a309d3ea27085924ea94be29cef5490d8a164d19d25ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55d3601a35110fccd1c713c946dfb693344bb2b6c0b81330173f2fc98298c75a
MD5 0c730f834b5d3939ba24f328aed37be5
BLAKE2b-256 e1e7fe107076c5946e22385e4c6fe7a82f8d702ff85bff0664ed1715815a25f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa82015f4358d3b9fb88a8c05cf70fe942c74d0470d431232895834645c05942
MD5 6142172a511aa5794f64b9c0a3f783de
BLAKE2b-256 3b817eab3122d8b838842f874718e758c4985fa70903712f23c6352fd6c8705c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fe8e23f865a61f6eae270fde8224f9d70c5547a63b94e577b53861598ba434cf
MD5 c84bff76f158338ebc838dd8307b85aa
BLAKE2b-256 e6e45e5a480d9cf8d0a34802f5ceef2020cbd4c060c575ff7aef6e734abaf40b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26f1077160fd6a68ee639670726fcc0ae08e8ebcce1c17ae873bc10e5c71d03b
MD5 bf0c8f9597782ccb47160b730b3976e0
BLAKE2b-256 3f7b35ca40f1ebd4e660814804fc59d724a782d710e1298d6184ca6b1df6bd36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83d49de9feccfc3ee3eb4429f905595cee27bbf1f1350dc222ed5c255ef6cdc5
MD5 e59355bd51086a543e5c03fba1f24a63
BLAKE2b-256 0c96bac29af4bca9129b89628fee986d797e85ecd92f6527a434c11330c03e3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b4-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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