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.0b3.tar.gz (429.0 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.0b3-py3-none-any.whl (118.9 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

whenever-0.10.0b3-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.0b3-cp313-cp313-musllinux_1_2_i686.whl (881.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

whenever-0.10.0b3-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.0b3-cp312-cp312-musllinux_1_2_i686.whl (881.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

whenever-0.10.0b3-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.0b3-cp311-cp311-musllinux_1_2_i686.whl (879.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

whenever-0.10.0b3-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.0b3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (652.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

whenever-0.10.0b3-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.0b3-cp310-cp310-musllinux_1_2_i686.whl (879.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.10.0b3-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.0b3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (652.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: whenever-0.10.0b3.tar.gz
  • Upload date:
  • Size: 429.0 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.0b3.tar.gz
Algorithm Hash digest
SHA256 581de95ac624ba1759bfa6849acbbfeebc81d1dcbd1cd17858abfe95150c3ab0
MD5 4b51ff79ec1b03f52ad0e7a71ed8ae2d
BLAKE2b-256 6051a95272477ea168e8fddc5d3d075cff67d3ae941bd310c29f8059176fefc5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0b3-py3-none-any.whl
  • Upload date:
  • Size: 118.9 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.0b3-py3-none-any.whl
Algorithm Hash digest
SHA256 4c8f4e6a304637053e019eb43cf7d11b91ffbb964da85e5389cc0d5e90f87f83
MD5 750fe4be59dc1d6a6b3bc7dcce97e073
BLAKE2b-256 0dd00295f6f1f3e74b523fcc849f601abfd41a2a60968ce16ea82b044783548b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8fd3b0adfad54eaa9fd4c1b48964c80132d7f025809429b46c49a391ad71e3b2
MD5 40b821515e3e3ba7fd84ee44d24e2ece
BLAKE2b-256 d6ccfc4a07e20eb2ad1816ea907040575a246db0a9b2a37ff971e49b61a0be28

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0b3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 565.1 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.0b3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2f5eacc3030061c15335c1561f40301adb3627c7c7f6f2ea32011915b4ec415f
MD5 b4becc0c2e8857622a3b179e67d718e0
BLAKE2b-256 b6efc24091c9bc750d8f102d9b338321e7e9e4cc70d1e65c6749d445d595912c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 144c7d2e646c978a1255a9c6da7ab0f3f9241ccc35fe36dc8dfc49ae03ad9980
MD5 9915de6b779045541d12f7c74b08e9b0
BLAKE2b-256 1f284ff5cc4b1e6a3c270038f5bab052d047a3163259ef50fc71134ed24e5d54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa3de3ed7fe8394d8be86445f286792beb3420464dd1b4b2bf182bc4deae7383
MD5 d3a0ff6d13cc899f90df0d21838a18eb
BLAKE2b-256 794d243bc6c4f3ded7b254719f7825508fd72bd38dddd7a70960654bba344797

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5630963f9fffc66d4475349ea2fa347e4a0a51c20d586c4673216fda10490dff
MD5 9b2b7144e7a208bf0ec1f891ab7e3549
BLAKE2b-256 c9238318f7fda0f31cbba595035bfc17afb685ab0b84e18b3addf39d261afa7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f83e303c6a33f95d8ac59f6352b4b2e1ae1ba33eaeaaf386405f8e07b8fc71d
MD5 25fb588ef1024256888a4a97754860fc
BLAKE2b-256 06201b5134b4aa70892e0d64449b1f590be5bb5662cdea4549aeade8a75b1d8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d47d13a58418d8cb1b65f9bc3406dfb9eef27e2332538fb2b749349b3b1eea6f
MD5 074499eeca8caeb411f1e31f47ac4418
BLAKE2b-256 0f6ad49197fa836446e33615490ca9e5f9822a0954c3edff537f0bcb006d97c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 517f25fb60e15b0f5870b6ded8b17f2260c275335fcb74b75c916ec9e55ecdae
MD5 6ebdf21d7cd1734182f5b978509019d1
BLAKE2b-256 c81dbb7bfaa52031ab7c9f4c8efe1492ee5c290b592fa7edd6c67ec8280bc745

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 651301d7f8a3673d3ff6a4416e404383de539b4c64506848bb17c678e8a36a6e
MD5 a6912b14e1018013fe4dc46c30465a3b
BLAKE2b-256 028cf3cabcdcbfb6eca195d146281a12283cace12bb93fccfba0dea4059c7750

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1b46837755daf2b234fc3cdce2f4807c56cc5c12004d37793ba12a0728afa15
MD5 92dc1056008a35940781ab51a03ecc15
BLAKE2b-256 3a6ff562eb7fd9a9677c39d0d78891315135ad81bebac676e6d94da2064bbf67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92f19cb58209cb856acb9d0a5b4e31f3792bfa2289e78c835b690524796b5346
MD5 db7e05ec3a28d17db86c9d242c164538
BLAKE2b-256 c7a9db0c25e78a32df4db7d51ea8adc274d119a9966b6739fa3d596238816648

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8182804f163cb4ee3551127a219a870e3ba8226501e3ce66f5b2a1c8115aeba
MD5 df42f6fb590487a8d0066c5ff74996f7
BLAKE2b-256 48f284713e243f32c97ca9fb623f9119db0ebbae45d336fbfaae5f9790414ec8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8873d58b1d4a03377bbcbec1a4da03a014615cb3e5a2cc720fa99a76b35d3453
MD5 f8b4cdba67c8efd9b2fa88429d95ee59
BLAKE2b-256 5da7ee4e3c8315bbd82b9b2c8b071f15938da2dfdbd080ebb8bc9ef198a1fc9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b43f6619fa730044e06e8445f4ec2531315594cfd69513fd86899b58abeb9258
MD5 48d08ea3413c09e817645019b4ed5282
BLAKE2b-256 2fd40433dfc8de05faee5f5a2dde6cddbcd18ac16d5cbe27d0e8fef2d6630cd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 afd3441a5e7cc53be9280e044634f4f7a88ad023945e44b4cb60901b9d578ba7
MD5 1becea554ee996369820175be8c60725
BLAKE2b-256 98a50e397079464c9b982197d37ff273880afbc4f6d06888e69c43df8d2ddc9a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0b3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 563.9 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.0b3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c04ba99a7f0bc8af9e4cb066e5bfab8fe4a60ef9078068965b175366f881ae8b
MD5 9d643a4dd136634a39056d7fbccf4d21
BLAKE2b-256 60527502462822fc10104c9ceee4c17fc243acb53b38c7ace689b16d2df36d24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07425c07bc22963522c795ad79cd84a9949551168d8f3672b4f2a191d0de4823
MD5 bf80d3afce689f752af488306fe62af3
BLAKE2b-256 1e3690b0b73608f4cbacafec41ef9aa88be3db52ce4acf15ad3f5527f483d5bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 606740748f63cb7ea8478f00d97c3776c641f39ef9731f24b8c0218444126759
MD5 f146e268550d0dbcbf3a63a32637b811
BLAKE2b-256 bb67fd91ccf42083fb8461873894a3f7b9423470b6869cbe4cecc32303d9dccb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 183e421d5deede8281d9b89f6c8baa9c598e4fb94af1d77b2a2a9c8ad53a442f
MD5 2eb47dd105a798916dc871db4fc77c30
BLAKE2b-256 af9a39de8a247a46140321dfe8803f8a853869405e7caa65bf7b8cdaf6e7607e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08c7aac606be6e3b51d5f8ee5dce9cea34321e4e4d7b98a0a020498f8ce3d7b5
MD5 7a607e0f376069f23d50d0132c6bfd19
BLAKE2b-256 bc9a5c0322a2bebdff864a5c8c24e3d3bcb56655cda3809a528af0bfa01df56d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dbed710e372f2aa2d4c6ab19c5f89e6825eb6f26c93e4b2bf063de643dba208
MD5 090a07a1ef1ace11729c1ab993009a07
BLAKE2b-256 7bc6288c44e82f39a5b548f1bbc2f8f04e4e7e79debe524ba2f48dccaa6ae488

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4be7c11aae3c14201d824082b20ebd2b73247db5f2dcf21cc15fb82fa910ea4
MD5 0e2fe8ec150e28c1e91532bd09ec2f99
BLAKE2b-256 61eb9f8d820781c15191c857c64ceabd062686af1526d52ca2722da61d151b8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d4e5ffc16b5b74dce2b0267fb20044a18933771bdab2449cc857674a9556e4a
MD5 8a7ca673835e2becbd5a04673f641f55
BLAKE2b-256 1a0a953a27b7e42ed6601eeaea2c42fab6ad0810e83eb78e75bce00f12ca8095

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 869c5604e9c77dc3b45021336b5eeaa365604eaa0cbbed8e0794f8eee0890ded
MD5 68d87f437dac9a1519232cf902558890
BLAKE2b-256 ef0172e538140f19d0fe2b617f79201c5a85ffa84241c56a7625149f6f7f3e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 073e94ce3929c31bfb915db40231601b9147cbc595e23666f9a46b6b8b6b841f
MD5 7420f73cde68663a08e702e077913fe0
BLAKE2b-256 dfe55cd52c60e5a3b0ed7fa62ba2390d82e7ae0fa527014c215f42c3829152c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0699cd690687884daf0ae148309e5a8ccbb33d3bac44312b6ea6c9b395d1f80a
MD5 c672d903a96b96fe0f9d25a0179ea5c1
BLAKE2b-256 08bd7a273fafe3c662d7e21495481f1ac65ecf9a02184ad7f707202b81a3a610

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93237a2d38c39a1a6e5362b81e832dd441bc1b9e3dad7005915e5c073c6b2c02
MD5 a45d499246f8f2659683d6e76229bdce
BLAKE2b-256 d8058d2b6fcb91a761550d0d9fb92fb1c7e39bbf15d903d0100affa479a96fe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 196f69e7e7eb639b325531b218850f5614e40be5bb435049f24d70b9a94a86db
MD5 768de4314de9ed2fcf3f8683223eda36
BLAKE2b-256 f2e925590ad53312293b35b7fa0faf620fbc7da4bb25cfcc1b0ce0a926fd8a6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 3fba0d33b71a19d6ea58d39503027ba80c6bd6d4a02b8d4eca638a81529d500b
MD5 70da2585aade2db825ad0f1c00e2911f
BLAKE2b-256 50e2a5301ba5612b62b038cc5f3b40adbc5da8570a9e21f694e20dca955cdcbd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0b3-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 561.5 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.0b3-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 bc4604dbedd32f923d8efea186e25f3e32a0b67f35b378e4c767cec3b657782e
MD5 50958db0bff1e49b9b7c5bb928a22111
BLAKE2b-256 d732adc08a0676ab1390dabe388d2687143a4f3703d49d949681cd35156cc78a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0847c3e2db0e9eb0410b942118f7e4d028dfb214564ed5874289c2f50ecb8fe1
MD5 a2bd9e0ae0daf1cd6a9245e994bf9550
BLAKE2b-256 e7c63a0643765206f201a9a7243bc88aab76f8a7991366b490c763c46e4970dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aca00d69eabbd0eca1a500bf8aa55058c5ece35a42eba04a7af070e3bb5da8eb
MD5 2dedf33ee32db620be7a05243c2f8475
BLAKE2b-256 8429e24ce2aac45d523310fb62590ff176f18d573589c714e8b563c373adb9c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b5226a8cb982a59d8622646becb4cef6b2e74f82f83d78476c82d4ee74caf3c
MD5 5b58fd82b63b0e7c87d0b23cd0c53ae1
BLAKE2b-256 ad12f0c724c2051982102295b42f6c16cfb0b5febeb07f790672b8781a445dc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c2f84fda9af8544735e06df72832c67e13cf28e6097a0bd62c62a294437c58d
MD5 fb05f74ea71c5c4f792191e9e2327f70
BLAKE2b-256 1ca536915b7ead534f3d05d74482e17ea0cac2c6c94c74193be447519146b720

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abaab4142bb4062ef0102a4070f8d6277cecb2a249f7d69d8642513611c948a4
MD5 8367cbe6e8f6687ce7b87927538a02ac
BLAKE2b-256 7e1ad2e7b40dc489c27a36e947044db84350ccae357fce78c7dd1531943333a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f488da7c907b2bef9b290dec528e1c85cedd72c698435a356157b80abed45afe
MD5 cf57206428ac56c10a29e125b690e92a
BLAKE2b-256 5520afb7f95c47820326d50e44fbae4ad13685936a2814b0b50eff5732785110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b297cb5a2e476a4540c2bb3540a1a1a596a465a4d1d44d81f879c4a111969d1
MD5 f2a15b60ab7f9fd4b246a44c8ed081dc
BLAKE2b-256 7b1b76a7b744ba34ed71cb8f6f6325843a5a3325452270b75ff0a1c906ee272a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1f68739abd583e520c92b56b284367deb1650320b01970e7b6099489f30df4c
MD5 78ba09d62c76bcde3f8302231f197d2d
BLAKE2b-256 d2bb355d6bf86dc6655c1ef97295a8bc8aff125ad32414abddcbfea5d0a369cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffa981c8cb81ccdb0eb66ef68d4bcba8b9777a7d2c8cabbbab0fc883ae902c3f
MD5 d3363d7312e63c497887a0cd49de1b5d
BLAKE2b-256 c2738e925a918763916f0c233bc11d3fc9efccbe961ed76d79c895c4cd45ecb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5d508b3653c1478efbb31e104604e566b78c10d2a70e73174ff82109661902d
MD5 743fb13083cd93a2d7b34ab205a37278
BLAKE2b-256 4b08ab7fef5e069b21f34e00ca89221d03f3d4d92ddd90c8eb0b5d553ce5b527

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c87e67d1542a2bcab1d0179002cbce532cc73d59aea35e5235f422917dfa30b
MD5 8c87f4e836450c5a7cf6e0ebac9a46d2
BLAKE2b-256 436229a79ba4696d9f931a252ec21d4a0d6cd4cc95041a0017cf5cb3aaacbc96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03896067a38a77eb703d5a35e9e7b7ceb952d66382f309090a5c79599e5a6613
MD5 89278c9dbeedd9b7418b316d5cf1c260
BLAKE2b-256 8dbc736fe19a2ee25cdd3682f46b49a7e44c59c0e1bc62b243fa2fc5e41ef081

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9bb9a55b6cc443676be312f7af60efdb1f82bb4723e08a0e6cf862786c8fc448
MD5 aaceb8fce2eeca95c03e72cf6e7e1909
BLAKE2b-256 d84e41bcefc3781c658314c2545f126e7539e7531c69b83c0181f85973271cc6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0b3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 560.6 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.0b3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 07c93712d344249b4dcecbd3001d4de7da47d9c714ca62b39fbb5ba80683c3ad
MD5 2ca5301bad62508545c74af8951e9239
BLAKE2b-256 dced576a1a3b84513739c3ab2051a8fc7db971129e87bb2a1b03f71d3c97c7e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1293393f2d7661701007942ce692ef6df44d44804c3c21327044242015a3580e
MD5 ab4bc8c3e877d6757fda00c908bc7df4
BLAKE2b-256 a1567caec316f2d091b22dec7f113fbd1ea4d69365819d354c02c7bb8f253ae7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14db529fc8a08bfa4180d4acf94cd9a73a3ecf60b582432138501648de8e333a
MD5 7eb9ba71cc52c56203f62b8401d4575f
BLAKE2b-256 8175ed065584aacfc7c118d035f0a89d699d324bd4b09fbfac84b2ff0824eccd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4fc8bcda1b43d4fa7c42af9c6d9eb86eb4677f532a0a211d49930c748bc3c868
MD5 73718e2593172accc58facbc3bd2d14d
BLAKE2b-256 dee16972bf6682c469a23e2c93774616080cb2db7dbccc23376fb19ac6232be7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d97a812bb0b76e47cef8c7ae74cd105d2c41a280936618cc62411f18632ee471
MD5 9dd08e2a48296f0c379e5e0af6a14598
BLAKE2b-256 876a6ac0056a0312f49c55e4fe640c6a434ca6d17eb49ab9ffe2cb45ba12714f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50dde91873c7446c6719871ef1bbe43d8336c3c9a3b40906a2d07e412027bc5f
MD5 6394efafbdb1a520288c5f6d84a325ac
BLAKE2b-256 83b702443c826f032d819d6722e9322ae5195333305623c6f313c33ecba04c84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0651ef2553df5d64779d892fa25cc67abab81914da61947fda9b4fbedc0c9443
MD5 6d2f452defbb27d32de5fadd1a9ea6f4
BLAKE2b-256 d9cae80f34fad70a98799222637bddd58f57354743e04ba6489ee54d1d259e4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2208eab9d36b744442794f5c65fbe5f3c4ae6eced810c7c408be21dbe83a1762
MD5 90b47add4d4b8bc0447924e28d2295e8
BLAKE2b-256 7160ddeb681cc0a57346b54657fb540c5cf6f9c5ec2070a3a27524f3ea528699

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12d70d3bc259917119725e05faa789eae249579ae26e31c4981f9b4b458b89f5
MD5 e2c2c13cad19b280bbc0d1f212e68aec
BLAKE2b-256 ed59ac5494bcafb59c0fcfa59943f47d818ba81a7321c2d9d3cc337a1b4664d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfefa5ead79b0f1f5f8f232c210d774378a7d79235f3a9e8e55c3caef5baaa67
MD5 7b6a9f84111bc7a4855eb870e1ad4f7b
BLAKE2b-256 2d514266134f166f443705b88a7e16bea048b8a8f6dfe3a1636b4f974790ba3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd90ac8dc022b99bb26d05f39b250d869892ff1ee0fb2856f0805faeb4191295
MD5 43c573008d1b485018ca6668c4d3b8c6
BLAKE2b-256 20b01b52ed079762caac34b5e163365372de1526710ad3bc812e5d213fa31416

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c66b1d46c5ba18e433a7417e3ae68d2806cfc97e45a4f24c92bb15a9c848a2c1
MD5 2fa7c4b38a25a775550522226bd4fe30
BLAKE2b-256 116b519ddbc882a359598739b40e8e2c715c3b0a498ee02c0c1fa770bbf7d499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b55d544188d647e48c5572f834bea337895766fd9a9468978c5f72da388e9c58
MD5 5146e4ac15828d37c7320a32770c8974
BLAKE2b-256 3d3a0a2f4abae9055907a2c7e1dcec885ed8a36a49d342993f5f2b86306b22f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cab94bc3ba490be2ebd241c0edcc5f0c3002ca0d52f89012b806bc2f4e471786
MD5 1d0d543111117178d276b74568a88764
BLAKE2b-256 197dd406f61b06861cd528481d83abee53bf536cbc95e42e4f94608f72ce93d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0b3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 560.6 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.0b3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d6f975e7717b412c5a0cf1e9575248aea8b04076cc69ca9cbdc104d3807fabdd
MD5 5df2df7cc88d199f9ad8532d2ce63c09
BLAKE2b-256 dc7bee2dde53e93b4ebd4e180d2090db538bc0578fa034410feacd7dd72f7e8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a56a3657019ae0704bfeddb136f931fccc1ab4f837b83effeb93e4a81d3534c
MD5 d89e6d329d09308c5fc6e0e644335ad0
BLAKE2b-256 54b0113a02b3462411c1c9d4f8fe01702edf130b4f97a4b0973ce19103c7e126

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97db94b043dd8cf399715a23fdb776f5823a1832c341132151b5522835e273a2
MD5 59d430651e942be2dda5bd25072a605f
BLAKE2b-256 b02bdc8a92e9f57991a05d66d47043805be01bb55e5bb9a717980cea39eee10b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dcaac7c16923ea8f397db85df54a97d1c7160eab29fa19e7d042b385dea82104
MD5 ab59205f54bd57f419bc7d38a3892253
BLAKE2b-256 8495d5077614d2aa797eb0f386f7b1484eae57980a772482a3ccd096fefbeed9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f626dd6776f189c1f444fad38ec2ff5dbbeedad1db5c4da0b7fc5441a0d97b67
MD5 a821675122fb754267e808dcca41b828
BLAKE2b-256 1207a27d866bf7a9830dc367420803d7d488bf8d4d345c96c24c0d822045b7d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 018eb962d83952949f92496cc3a37b8bd11034e23554ffb0d69097bd702925bc
MD5 c5a940045c06a763053e6b42348eb0c8
BLAKE2b-256 b4fd3b68c1f4aab6e600c8eea4f6ee80fee8a11508b444f25dc02d4faf2fe7cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f777faac2085e9aaa237a918f991969958eb6ce71e7f15e36666a04750c22755
MD5 96f74ef2e092b0b5723748c189e73a05
BLAKE2b-256 b0e6bc1114504ada55540effb7fcbd60a93ea74f148d874f7c8c3fc95e9d0731

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c57048dbd956623b0dddfc8625336b8211a7df61c72830e4d2f7474cbac38031
MD5 978e8d9c824fb1ea47fd53d819624f00
BLAKE2b-256 24c55360e047140bdab9fb5a36bee286b1157b8853b84e48d8df759f61224d29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23ffb69b0b64842931945fda7bd3dc6b6f6d6dc051060ed1a48fd9f2a9845cfb
MD5 12e0c74d34e92c47d63c870d8d9dd246
BLAKE2b-256 7bd57837ad64f52a22ae2d14b257cfe21ee407989f2aa1bfa04f4759136c7bb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eec2d9f197e0826789b95e17bf22ee8b9e0f86cb1f89da34078bfa8ce4876f3e
MD5 afefff068e898627811a2dbdd0869d19
BLAKE2b-256 cdd9a82ca4a8dd07cbb57f44aeb5c669b25a7e485a1b0a37833356f18f278e04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2458b06f0b39c485e730a36bad5f4cc47158329d907dd519b62fd6e34d4c0b65
MD5 65002fcd30174a876df45a7533ae143e
BLAKE2b-256 558f0ab2238b350d27591d43207269e7f24593b9dd13a38cc25cc89f2db669df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d22a29161c17c1834060f85110fe98cda47b2596f906a0c3e59caac616bdbb80
MD5 876692bbfab8635831c068727ef65eec
BLAKE2b-256 76862881b8ce5aac6104c0ce9f4922d84db9030ec7912e4f8db140a182c1f15c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f9601365d2c42820e6be27a0edde4b1803ee7751475b0db52d3d24e240c66e67
MD5 896b13433c15f84488c8a8e3e5e6db25
BLAKE2b-256 c74efe331f340be753886bc5894e305f2486a338f364d01aa435b48d78412d51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bc3468da8b70595453618a4ce87a634121dfb31ef0b6135f6c99b72247db132c
MD5 6bf129512c5cc9eea032b06854883c5c
BLAKE2b-256 9e195c9aca726b8c65e100a85e09c3249f5030a3313f038787ac073cb04efc0c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0b3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 560.6 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.0b3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c055d5d376d71ab6219e02dc78b283cbe25494bada971527c715f9b60edba127
MD5 f691216b160db37b3b95cc54db46d17a
BLAKE2b-256 7179b33a6ac089ed5c1ba18ad4103b4e482873f82438038aea0183ec30258b87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1a4e7b52a85f821795581d60c9ffa0bc7de40e2e6c0e712eb858b363150d62a
MD5 dc7aaadbfebd167c973789fc0fc5f70f
BLAKE2b-256 0985ac6766a9f38d66ab5a98033b5c1ee1577837475f290cf9a508c228c17f54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55d63b727794690322dabd6a7858337553ef329885e189ead0f6a3ac0d256ce9
MD5 762f0252e17c8d72038a7c3b47434323
BLAKE2b-256 68fbe0fa36759bdb656bf6ba45b8e8cff29e2d1bd43fbf0da5868f4087d7627d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1511d92a70d91006c731b2d4b17a4006c0cee45947aa540d116ffb0b4b84be2a
MD5 8e5cd1111b1187e6eb9f0043acecebbc
BLAKE2b-256 31135457238bbd6a8126d6fb39408ed229bdc8a094ffcecf71af747956393238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f160d73340de808980c2ef207280789b8cfa9c59e3a603e74016cdd75bc1cffc
MD5 acfd4ace0ff423679c5ce61fa56d6ad2
BLAKE2b-256 5749c08e9eecc7eb290c16ebfb443b9037226c266138816fe519c09ca8520de7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 261dd3ba516f09c591be9dbf9d8b59ba2754bf4ef4794bdecf0562c66f55d548
MD5 9583a73a9ef2333305e00271c26daba7
BLAKE2b-256 126221df85d6bd56435f47ac2a3c5977b315047a547ae8804809d24906f496a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d873420fc8230d9caf48f9ba3f84196028938292edfa88d98d523c2b2cc71010
MD5 c353c04785d3965b6e92779d1bd3369f
BLAKE2b-256 783e85d3e99bd222b75e9394048c84965c559ce95bd133da0987afe581c52ceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5687efe166eefc6f997127ec1c0a7250c54f99a818307cfe355fec208e210aed
MD5 a64622fa1174c77a4cae56ece1565d48
BLAKE2b-256 4372718fcdca14c6d7924f48152cd229aac67c93bcf2b223e09014a67a6ec5ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c7cf1838d1455b695a2e494bf4f10319980bf58ac33763464c2c35f6a1ae955
MD5 d3b0b684f79600359bc8d23c1217170a
BLAKE2b-256 89e7705af3e33cb688f8220c2969a0625a41a1f453fecacb8fc0430f2a442b5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa6b32d3a3ee7f417d5e7744f76e533870bca24a40d69617567f43fbd733818e
MD5 4479bd24c33e8f51590f2d963e85886d
BLAKE2b-256 391fd08f847039b044bce92e4b15cf4cc8a65d03e7b957e6a1753b5cbb003f44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4fc765f2e4e02c016c579f6ee1693d09c9d0025bec0340fbefdccf7a71f4e8e0
MD5 f429ef8e25ccc0d4daeb9da769df0e23
BLAKE2b-256 c50100fa8ea08de609a935e17b88a995dfc1d48ebdd0165c77f3a9e3db877d70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00942b004bfb77ad65b931e6ba7c18ba52a7b7a22d23f334dfc17c019ae5aa23
MD5 c9f669ace65a54d8e514c9fa29e2ed24
BLAKE2b-256 947252b3ea036b8ae8497d575cbe9835bb7c58b693fbb41d950aac197524995c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a3555094c652bded6cbd867200f9af114b8a2abbe65857e744a80eaa30f7b04
MD5 677f040223d34c6f7f68720a1ee85c81
BLAKE2b-256 66c3886d1c504d64d2fc4264348f031a150c29cd7d00ab72577bafb5485fe368

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ae0205ca92d78887ca9ccc2df6d82b9082c23e1b6a6b07b53d548fa3fee0ed72
MD5 950e8c4db984b76e432ea07ea5e14cfe
BLAKE2b-256 bec6ebe3eca8dfb12626734c8eb6f070c835bafd3b02992ba2fa674e43758c8c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0b3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 560.6 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.0b3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6fde8dd0c1da76d0d214abbebd85bbe8c3ff46ef0b4f71dd2edbbb80a0169f50
MD5 d72928d6c23b88725fd856570a28fb37
BLAKE2b-256 df9dc3aa9e0582127b764d7af5b2833871483cc81d54fe423dc7356ed1840c0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd6df4f66e363202c9319362694f1b8f2cfc2ed3def8b75342ffc7c2df4ff475
MD5 34c09141ed8205fd4adc4e6cad45f0ba
BLAKE2b-256 3a71fe9cea1abfe4b0d89cd88706880c0794ed55f49cebc4bfafdde06564556e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ae05827eb46834757a4c158e73705a03313e52242427bf2b0d4d2938b4965ec
MD5 f243464f1af10e121b984cd6bfd568d6
BLAKE2b-256 0d8d28a70d9715bf790ce545ed5eb3fafb0be0608e2e759c17b0360d394b5b43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e787d39cfe0fa35ffc47b4050e621253bc098a2b62c50e0d6c4f5e33ce9c2735
MD5 aa0763573353f707f14ea325740cad31
BLAKE2b-256 6d638c26b847e929dad9fa31b8bc37af8d696d59206bff13be99de396625a6e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1c151c99c30a7b55fe95eb710184bdd4b8173594da3b9292d7fe8dad3608f87
MD5 0eea2db16aa8c0b573d20aad5247b4d0
BLAKE2b-256 84ae7685fcc088e09ab6c686912ccd2f24546dc8498fb3bd4b94368fea63a1eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c70ba57fec5db6c97520632c2577848b8e92edc8ef282b5b08a31391a57d175
MD5 fa336fa650dcb817b99fca5a01ab1bab
BLAKE2b-256 c2d78957a9efc904165d9e53537c6af6e5e19160268818d3f857de3b862a7053

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 860d4541b267b6100ad3e7e459542044ff85d628ef6844495cda96d10ec777c3
MD5 e156e9ded524d139aa5b686a3c8b145a
BLAKE2b-256 8796130cc708ec5b5d7b8184b99580ba986d18af1b83468cfa9208edfbd70a9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f7a99d5a3d77f79786a7b0c5905eb5aed7314336649926d0532380722c3ab5f
MD5 dcf7a44c442a8eb3446944713a0b45f1
BLAKE2b-256 1677f9d6d96a0f59f341ff6d873f51c2592bdd7a2551f4be4f5b0e745f87ab14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 800536faa6a4f346127a078784b9279568746f3f8629cb42490b6b67171a79a5
MD5 f671844dbe2736ee723faff495658738
BLAKE2b-256 ca9f206b46aca5b1f249b0beb648f572cc1522a8d940c61a93580b91fc1e8533

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 031ee425a2e9ee555ded93ff9e1bb1a3420e8dfd254281f58313c2b44862e8f5
MD5 6b0573c5a4d40db068cea3e9c3828390
BLAKE2b-256 b41e607a68e41c0196562348e42c1ab8c412971582dd69c840991d0e23e6d075

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8958681c370ef3fd36d6a2ccecbc241f62591b74ae0c459847f6c91bcd3caee9
MD5 c78e173edaef960f77f7450d9989ed23
BLAKE2b-256 87f3daa0f9ca7ab3a4b0dcbd7425b77f9693aea2bcf158f5c48204d3c03b07a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 946b1a7465c0ccf3ffcb2ec742434059a293ad6d1b86324ac717acadd2159ba3
MD5 c94173c44c9ba0c8aa29ca52ec230cee
BLAKE2b-256 c1519cc67287ec9db848c70c3aec837d3561f06a533a5e522da77865351465fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24cf7919160948e263abf867a53e4d84d8b96a88b43b6e4a97e97c14892dd048
MD5 8a66d243fa7f2f45a948d344bfc5c6da
BLAKE2b-256 c6ca67d5a63de2e7fc5f3a5e6cb877014431d39bb969984349c50f2784e50ce7

See more details on using hashes here.

Provenance

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