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)
  TimeZoneUnawareArithmeticWarning: 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)
  • No support for leap seconds (consistent with industry standards and other modern libraries)

Versioning and compatibility 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.0b2.tar.gz (405.8 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.0b2-py3-none-any.whl (109.3 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: whenever-0.10.0b2.tar.gz
  • Upload date:
  • Size: 405.8 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.0b2.tar.gz
Algorithm Hash digest
SHA256 b936bd108d34a0abfe23aac6bcb2c8171758ee74a88c68b57ad890de6f4a21f7
MD5 d2db7454d421d99e69e23ea2dedb09d9
BLAKE2b-256 7d49f3f60624e7664f9981fc6932147d3cd870f64404e7578a210c5c786d3261

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b2-py3-none-any.whl
Algorithm Hash digest
SHA256 d42b401f70ad1254618c7d4b756c7afdaa3813da98c5802c8b9e65cd74581694
MD5 84b94b1ef606754a5ba913f57f0d6b81
BLAKE2b-256 5bbcb57e5daf80c1af119fa01aae2dffe4f238931f0c02631ec963306a198a13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d45fc2c2736e35d853930c5e580a397c4158586cc704d26685638c66db94c61f
MD5 2e940537287dfd556898715e19f3895b
BLAKE2b-256 019bb6e94f7915b3cba65b213bf180d91fd3c8ecdb0432899bd500f8869420f1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e6acb44a6ea3f1996e647682fc641e0ee51cb2ce425cb3c71ec188eca2ea9e6d
MD5 dfb8931f6062e312e75ce8eae637edfa
BLAKE2b-256 6ed819772f461814641ff91822f9cb363b5675d915b3cead1834a7b79d972b56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93ec0ae638c12a0155e2f8c2a28c0d92cb8a29c7e55e29b3cd0f1014035fde49
MD5 f3696b605de3a4b93d040ddf8e741025
BLAKE2b-256 c54f47662c815e84774dfa3bcf3b7db898ebafe079dcb26b18bd6724ca377a30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4396bb5d16266289a7d64c73d5140e2dc40eed7d2b35e8a2944497ce4f98f557
MD5 ef6c8fdafbeb1b0f46402d3e558e22d4
BLAKE2b-256 de00d0a9931d42015d36eb49a2f6accbd83fcac369673b2a337468fea5ef9c5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd31dd7ab79815522eb864a72bd994e0d279061819f91b752cbe9a8ea1833b51
MD5 e9ccb23e0edd523cb3847d633e2fe513
BLAKE2b-256 5015ddd44d87c9684de4f29fed4ee52ca2a256151658ca315b149bc383969ae7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79c200b2b780089d17171e4d7c17468bd89e3b9dc4fa931da13ff068b70a5f2b
MD5 3b1b41f2bfb3d3a31e1b76cf1cb96727
BLAKE2b-256 eaa437ac3bdf110ec1fac7d4001d69b62364d76dbe59eb4800242665aab66284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 faa3d049811d66ac11e7ce6a891642239b8aa9c40d87fb48964c383b51ca875a
MD5 a09b3ca12312b96e27f20f3c72ebe2fe
BLAKE2b-256 87fb6b9b1e17756c3a5d6646fefa4a4d48e598c5d284a4999d62a96efd82e568

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 508176eed4311fc1795f208f45b96a40018d6a8183311d5d62320106b54bfb0d
MD5 a2225b9037cf597f4e4f30d84e7387b8
BLAKE2b-256 fdd0a69fd9b6c7c694d6a7b1d7a34f4b36012b87df4b9095adfa4525481dcb26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64a6bbd432567bb4d4559db832c1eebac5e50c76c95385e1022de9e50bc265b5
MD5 258bb8ed15c49ba8d714b807eac545ce
BLAKE2b-256 8838e95c20728f99c52600acb85c2fb6bc4ce28c9929083d4d1c89b264670c15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c07cd8c01f1166dc5a74ad168c76c3a51bddb640e78fa96ff0c0cb9aa0aab7b
MD5 70459097390141d1d3cba5cad2c87caa
BLAKE2b-256 2f0d7b435be6048cb9c099548b162b549f1e3bbf5506601a97eddca98ab40650

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0af365a8f9d1d848ac4056fd7bcbeff67aae856f816e9dcec12b222f09741a7f
MD5 c0072242f6d5b5870a33ad33f8262690
BLAKE2b-256 5d76f99d5df181cba6c5ae60aac5e417cc84f6054a01f24d34ee33f56feec513

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bafa7205ba93edb0c1e9e52e161bb72dc0014b5b52eb82fd6850a4c9ba33c8f0
MD5 0df9a39f2508a022d7690c8af4fe19fe
BLAKE2b-256 45d4900d32b1296cb34c1493c4f9379bae563f9870f72ffc2bebcf921dd1f479

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07df95a6110a552f07ecda4f6c0353c9262dc427abe2b8f13b44184b6fe1a9c4
MD5 9dd8b3881e7b4ad6b07968e58a87c0da
BLAKE2b-256 b7f1aa9d526223a62e670635f1cf5627a682a64010d0ac579e0eea4d23485fdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72afc37a04ead198420f8ea2ac5fe6d2aa6324c221b88ca07e681734dfe2cfb8
MD5 b1ce2ab7d83c555286f6dd3cedcdc497
BLAKE2b-256 3df47bc977d826dba6f54f6a16ce65bf989765c4e072446ca6380c2d08921804

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 faaee8d217162f8f04223d6dbdbd831313647dd1edd6216b8cc63cd5b2167c88
MD5 8c87529287a21a05b145eb39d8481e02
BLAKE2b-256 eba56cc8963c67849aa190d3ae2aa0ab00fc6c816f75f782c3faf91695fb7364

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0b2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 624.7 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.0b2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2be251eeb5bbd4bb7091bf96a19266af07de73ba234431437339f3ef94b6ca65
MD5 5f708a3379dc1c40d265b3fd3f7c9b69
BLAKE2b-256 5258c07a0396d4999319ee74e8e99fbb532c010615ca08bffb81d3f493044cb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6bdc357408ea2aebf80eefa66c0d3b9bb33f7d37cf31697934431795afadd78
MD5 e3e65e13d31e06b42bed308062fe53b4
BLAKE2b-256 ce0eaf75a3c138ca4a28eec397b870adce9d1b83491303b282d072bcb5f109ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1114ab9dfad1f072939efe906902b13ff9ca3dc13c63dd0b3a3d68c47fdeb1d
MD5 3e0fbcb907ff8a8edd951fc9110e6563
BLAKE2b-256 2b07845c2ec43b27b8f307fd823e9abd3b102cd4ace255bc362541e22a0438aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9aaf75f023972419ac1e4e827aa58866256eac11ab0243c09586243b80f6bc1d
MD5 5dc572f9d75669e8baa67ad828d544eb
BLAKE2b-256 d3c3201ebdf5dd62a18f3a5aca90c4780c36975bbed7a8dd97b542b988d21930

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 708ae74afc5a4e3a82634ab3119549b9326508198f57f21b933563593c40ef8a
MD5 fbad5194b5321b4851fd5be8355fbcc6
BLAKE2b-256 b94d8029184b4d616311a76fb04dc296287c7979d32d2e2b35970c7ea7ed87a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6d4bb4c91ef6cf31f92ae93138c4a728d98b16df5ddc33c8bd4f93f9b35d958
MD5 300ca0a520067afd8ba4dc685d199845
BLAKE2b-256 5841d349e29029e730ae6c968413c12724ef28ad7fbb5aff7eb912a268a7a797

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 768a5bc8958c034c1476d0cbfb24a8cd7301bc4533fffd849903f0c89ae76569
MD5 dd89f00240d68705a61df69d07a23b7e
BLAKE2b-256 22b271bbcb969eb5eeedcfab1cc6680b9a5533160fb7b7057ed0c76df2ce6df0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7f3959d207b5f08b9f45ff561662ffa6824030c0a9e858add39a15cd453f3d3
MD5 e1d078007447a7210f52db46a30fdba9
BLAKE2b-256 2a356c08b7001761e3dc8431e7a7a1144b3ce22a07359050ad946e9485cf58b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04b16460375381433a13451ab19ff3d4d6e570a86116c99a1a2a776e4a9cb8d6
MD5 85a8ae21f697a139a0b1aa33315eaa15
BLAKE2b-256 ea7ae5217f5f145e01facfdf04d79764db08dc7f9eb19a8a7610043ca6eb0f2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5053b3e17b22bab3c3e966bea247ce8f0ef6b0a1f679e1e8d17151fcd321266
MD5 50b285f5259767a24d007b63c34f6a90
BLAKE2b-256 70d937019284fc0b617e4eb65ef1856ccd04475edc688125dd21115a6328a67f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3eab14114fea38d9466cd64072668e168b5064de20ef1c02ee8675994c1504df
MD5 cb51d8a5ea30e748a9954c1eff14eb1e
BLAKE2b-256 9bdbfbdfbce0ab5be17e3f0089f5fd1e38d06bd95e24cdcd07a82f4df5310821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adba0060c094b371246e034d901528f69fe7c1ba5cacaeef0004ce4e38d07ce7
MD5 e5e5ae984c733bc133d5d39de145aaab
BLAKE2b-256 5c2fb99e15f7aff4523fff60afc80ed52650a12044c1b8126b4b8fe5efd7d38a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 49f96d8fe881c93ded0c23755c7b6a9bf1748daacff4747f502d04f542bc851c
MD5 325ccc4a49e9051e9336c3bd80c42ea0
BLAKE2b-256 06ec3d9758baf8cbfc0713098058159792a9604cd1ff8ab5c7fbb56028d4942d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 08e72745e8c930a0a084e9e3bbae7284efcbd0bfe3a00d3dc9a03a2f59efd01c
MD5 72e8a58d634d73b11e2ea69688ca0495
BLAKE2b-256 eac33e46f75fc53dd53bca1e8762b4b0d62455791d8dbfb4e945c238578862ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0b2-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 619.7 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.0b2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 57d59b424620b9a051ee011ce65a69f4803a176bf7ca50a0ee6aa4639f409e9b
MD5 f9ae286c243c3e500b58b9485f3f5026
BLAKE2b-256 f2378f54b88bc26366446343e3ce0c161c70b2e970455f2b66b031f8a9709a14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4cc1d4e30d2833d89eb33203f0b0f5ef11b1a4e90d424d5e47ac580efb6bf14
MD5 25005072a5ecb71e94f616520f2e9e6a
BLAKE2b-256 d43f112752924ccace5a755aa9a6c3102749cdddca7c0733efe148079284d0a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7391c7c9531dbcff9b4473d5658dfa7a165f3fdfd5f20d7f27c9e11ee8229f84
MD5 6424a22b28817fb7750813b3bb635b55
BLAKE2b-256 b7ac65df17730a0c0c20db477128b9090f440fdafe4c1c9edaac851cb9787599

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65437c380bbe1cba2e9c88e593b0de74e013898c4d3db4fae2f273c8a4350344
MD5 c4d867e1062a7012563f30c91eb338c8
BLAKE2b-256 713b5b48812e58c95d969abc24b61a8951ca8a532d60fbc01a9ae0a0875c2e36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8af6013855cee52c210826cf8265831fa586f4e7cfbcc620e57a9d9c2dac21e
MD5 62fd95409e26016fa83233dfa95ffc15
BLAKE2b-256 2e317a6c7feeaefcd78a8aa0b18f977f7928bfbc68bc8f4dc0611e2357033e0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62be4df124bcd8e6b11f90f3412652c8a8794aa60cf848e436a39dbc65592d32
MD5 0d8fd2dfdc25bc13f2ff37cec18f5861
BLAKE2b-256 d7366ea61794955e9aa1247e0d143a697f0eef008565f0e04c02942ffea02877

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4c327d87a5e7cacb1109f0901688065923e627bba1589fb75a9f968f8234234
MD5 0e3fe0c2a7424b90c364af7d8f16ea8a
BLAKE2b-256 050b704f9bbadfc33e1655859931e9650fc2cf650ecae1f88989366567bf5d2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7423eb261e1cb2773c0278d3e0cdf8a0e41503e997802cfa7a644596319530f
MD5 49bf38ac9e1bb78dc1db00bf7a21d4ce
BLAKE2b-256 a576aa416bbbe09eaa047f10c18109a227504e67d97c26c2596c987d3652e1e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 214b7c1696d2bb4118bbdb081459940ba00e57b4b13b444ff52a26075e991733
MD5 1639d04520a329caaaa63c8f4dedfe3d
BLAKE2b-256 ea63df47fd1c190064e91be6f7b2bff5ab50826095084986b058fea2c36334cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2050094118ec9acdb39e45398d1ca0a3840d7dd4b4823121e840a63e61897936
MD5 0f05f41459e40b2c29c215613240bd49
BLAKE2b-256 f0f0c7e08fc8c0eea5fdb3a4131b27e31d80c32f8c1ef8eb5b0dd94e866ae4fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c9fad66955f7aca2d7a4beb34dd0706f0e7d4b6a7b5a64fdebfaf4000a73ac7
MD5 9a0c9f883556de330966a8718b34f34f
BLAKE2b-256 eb0e528fddaa8942b6cb9d2ed57ecf17707f75b1486e2b8acd77bca5b9ba9e40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c5dbde5d161ef03d69332a8563d6582f63cbff483bd12cd1705e8f06aca66f7
MD5 f72b755c8d94a508013383d10ca75ac5
BLAKE2b-256 6801ce26e8eeb3d73f42a5ff42d292332b7aecce82e68844fd082eaf120c49ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5fb265674a33f50f54d4251a77a47291a1f7cb9fef1fc9f6e488a97a3cb3495a
MD5 1177cb521a4984058a96ffdd4c8febba
BLAKE2b-256 31a050a48c3673fc537591d9f2569a3b3b1dfcb61fc8f50815b7078aaddf6e29

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c52191ff4de5f8ba05664aad55410d942fab183f8c11a8957507d2c9292bca53
MD5 f9be75830c2d114e82fc2b61cc0a4c0f
BLAKE2b-256 78dfd02d134b0caf4642e06e6d8ec06cfc00eccc2bb86f733c52e4e3506d7df2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e0cfaa50a8194d8bcbb44755d10948ce1880b645787a2667000392ea650bc269
MD5 3c6d38dec7ebce4b3ca9199bff532a58
BLAKE2b-256 2ce0f8992cc3389b5191b989b5af3e9acaa9f93844e4f9b992e81316a5f6d384

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc810d4ffad64b9b0406c12ebac0c6d3e9d2449cbb9f63024fdc87b76d431d3b
MD5 818b44593b12ae68481c256bab93cd3f
BLAKE2b-256 26d164cc6f70f570e51189c19a552445905e300c3951817f683e7d8723d0a637

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3bad0d13a6bdd23ea9161cded6494271345eeccd98f059aef67dd887973ec58
MD5 27935b79b12be6c51e3921bcc263380b
BLAKE2b-256 0a34656470b6d00b38384f2a2c505ed57411e368b814df6d47b7ec220ee97dd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6bbdf910015079b0c9c8b71045240639edbb7994cb3e816f9e9f5a50d4ab35f2
MD5 71ef86980244f3b6269496531e5c488a
BLAKE2b-256 d2f53e319f763a3ad587484267c8379c8ce17e0cace8f8d61d4d3bc6e9cc09b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34720e9b2453c991f97f3615aa100fb056a38f5714995a6ed107b580c5da624d
MD5 045f5de171b80ea5b43833c9372d4513
BLAKE2b-256 c36cafca25899d909912a0bff98673ef3f37414fbc644a4a03db4df51dc24773

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d0bcaa03ff404635e7c1e7737ec81c69ad66bf3ab760c407e1f4ae3d5c1bf19
MD5 110c546ffc8b1a50321e3bdee8ff6fa1
BLAKE2b-256 ad96015b2fd276860d9900a130f3785c915458f35464e91716eb3e3474250b41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b803db4c177365194b34da15b86614a0491105148504c5dcc230a63f6e54aaa
MD5 b3a275d2b33054cb908116af85353c44
BLAKE2b-256 f6b971312df65bf9de87e3c11eba916c96fcbd1ef3080c124ac8e60ff76a474c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 95680f72df65f762861a7f3793536df69c944cc5ebe36899fd926460b8ad8dc5
MD5 e52f4d13a661a9a6f9bc24b91c6c7f26
BLAKE2b-256 fb656c95da839ed004e9787d38ea963d11dbd1404ac1cacae7abc9e240a2afcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18e5affc51c3612d227afb9354873cdd754631695e1bb09613568ff39ab65bd7
MD5 304bdc7eab068c10a346abd8db7e303b
BLAKE2b-256 48aa9064188a552f3f03bc3be96992e31ca6b48c4dcd0139f86014a7d06e6fad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a18bbedee48e42a9ba5abadd930eb9aec895408be22ffb21dd8615ec93801711
MD5 14e852fbd901f608663fa4eac921f132
BLAKE2b-256 a17b21ace6cdc10ed55bcab6ea64039e39796f9ef9cf0c5e36da6f34b82362c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e6ad2012b91ea2a8ca65c981ed86ef32c2e7c49023e70dc7cb36c72dd421e73f
MD5 6fe6b7ac1e624c72d503192aeb72f487
BLAKE2b-256 332a96b910b9a897753e9501b065126fab4b55b2def3a92b4ad09f021b183e2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d12eaadf7005ef05baf3f3f4c5d09b03ab1f9eb31646ae68e54593b628590cf
MD5 5a7816c711956b086484883b1897e56d
BLAKE2b-256 e5eb0912393d8a11c7ecd6af413f14218105e12c8e271685974efb2a2dcd759b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0352df15989df37b9de89655e1a48fdf88d0fb5a604ed75e09be3491041e4d6f
MD5 10b65fe8793e296513a5d55940c73fca
BLAKE2b-256 d51ab26ef6c0afcc25784e1246bb65ff446e9d8d8f97740c654a35bd7f722b81

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e19fd3fd3a22898db7883dd3132ef883335576c2c2e3e4cfab012cade5e17b7b
MD5 79a844fec19fc6b7094ee27624baaf88
BLAKE2b-256 70ea7883a5ac4293d3541176031aba56226ec517b56bed524a37d2d33e62267e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3a5c71a7266ffd79b2ee3b9298dd9927dc8c8cd397f8cea3f745fdf2e71095f9
MD5 9d510a3c22e99553c1f1cf565a603a43
BLAKE2b-256 7c81561f24ff80083083181b8cfc06ceb677af9129db55baff41f7449fe274e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f801dc9bfeb2976cf61fbb216001812ea8d99b9646ce69b852da541ef25c1f8f
MD5 068213c86a362eee08cca4e9e972a7af
BLAKE2b-256 fb5f1996fb375bcb89418a1c33c9cff37087173ea80919d62b43f3eee09d7101

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12ab2f4a117c760ed09451098cc64b1829dbe47072b1e2f37e46d0f80bb39aed
MD5 c4350b4dfdf9eb241e1b3b43bb8a24ad
BLAKE2b-256 2b24e4865e06dcb1118396ee33f97d0abf459652da202f1b26d0c799bead5876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6d756df6fdd1faf948df5e501f252d718326e3ea30e86da1a188721e8e1dc62
MD5 5a73585737bcd72d06ec5972766c581a
BLAKE2b-256 5c3f5021c85152ec2baf819391e220873799d6bd6e72670bf65fc39053550dee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f68f35d554536480a2e890e0eb879200bfec3f706cd4324c5185e2a769b2d12
MD5 5b879f00377576f14bbb47e933e9ac07
BLAKE2b-256 f0da15137506fd2a49337abe09932907bbdff1d937f7a8fac2a3a9a822b8644d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac5a15dd6fbf5822f4d0a305b44488dd573a2699711ea774be935df6324f3e0c
MD5 381cf74aabd26691dc39bfb5b8ecc33b
BLAKE2b-256 3e6fa7126f26f2f6f98d7da087b98631146555da0f863555d353ae5ff11bb6f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fb9478a94e4d1e58430004821effe8eacc3d2dac6c86fe296052c3aa1b966476
MD5 d934cf06a9b4444d0473ad24c3a39e09
BLAKE2b-256 0c3defc2551e4d5aa44adb3727ea811ca112111d6d7c4c23168060ce0d2d13b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2818f0dd8e6230b680347d58ef9a3c4acb0f28d562491909cb42edae60fdea46
MD5 2420998a1e30dcb58951e598616f830e
BLAKE2b-256 9db0e083f9e3049d5c9edb9a332819c412953bc172580d24d73ad95469544a0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fe42c5ab341bec4adfc727029a28dfcdff6badd46086896ec7fc295050eaf4d2
MD5 e1f0b815609d4ed8ea6963678a6ea521
BLAKE2b-256 49f04134c315db2963fec32dfb9ef4ec95d42a44dc9cc311aeb00fb1faef6c72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bc1d1b5c97852833caabe4853c53dfc2c1ec140942aa88082d81bee9125dd5b
MD5 75faff086c1a60f9ab33d74beedd57c5
BLAKE2b-256 4df3207ccddb4ba65eb8991d7d6742522002e223dccb164de50de38ed7e0f3fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 77ae821f771f466668fe16e569716682b40b9567912db737fe2199b759f2a5eb
MD5 df44d69e36d14d5b87e2f68c9512e5ba
BLAKE2b-256 b80f9cb9e1564fabbe1ce3470a6f3505170ba603e588dbc86a673eba5dec5367

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b07df87a527d1bd588b68d7d4d3ac59e172388253a64616c3d71543092035c74
MD5 1d0c6b5a3b73ba1c0bb86cc02927d445
BLAKE2b-256 d0722b13f3bafd4ab8485e1064848df63dfb2558a9db36999c50e5833a7bb790

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f15f28e6fcabffbe02450cec5ea19c36def720d6b42a4322d78a120fb4f09c9b
MD5 3c027b9e38c1c246347161b8da326518
BLAKE2b-256 f69746e21fce07046c493babfef1a986cf5f30fa8d55943619b5c895280d5d4a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8d4b612b022f19266b61594c99bf488b1f152d47e07f38e8f2d4096e2fb86059
MD5 7b9e7ad1be37bac20db15893e95d1260
BLAKE2b-256 07c120c82618a22815a09f66484a6299c48c4907adbe6d3229cf32a79d24f48d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0b2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 619.2 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.0b2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 962d0cc149b984db0d79026b3774d4a36bde0ca349c72847667ba1e368884c62
MD5 9f4083a55d3422a08caf2c46c1a00cb3
BLAKE2b-256 737fd7406e2a8d68496473a5552878500bbcb55060f56325bfe3653eca49fa1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 213dfdbc4b9c1bf8417274a78b17288bd1f60811f684c641d69b49498bc12f83
MD5 9a0d18fab502a26faecf3db69a07e0d3
BLAKE2b-256 f1382913781a808fd6759ba62cdd36a5a6d20b53144ba3ca1df23248d560e60d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5d6b35dbf3362559a06f03a03f10979ac98cb46a7343a8469493b92dfb2709e
MD5 ecd00f998635a39a22e7717ff18128f0
BLAKE2b-256 b97b3499eba1981f9af7c775e0b0ed16803b7645fdad21a15e22f5893205c270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c82a740d011fd8ceb843687650baaa29723be91ff0ed0327de03626b8a4accca
MD5 a234c50c8a3c75dce94f5b19d0cf77f4
BLAKE2b-256 6ed5e0f94953693d7296f5315a91e1d79836e4ee2ad8336d17e7eecf8b21f24c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b23f0c92ed4e83666de0fcf78997350590a4cf0fa49a460c19f351aa2cdf4c1f
MD5 24a2c3589330d35b459ea72f56afacc7
BLAKE2b-256 ae92428cbfcb14983ca3a9baee967b1d39a7b9e0a62ab2f051f69a8c7a7ac12f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c6af247b34b8531762b964db8e68637462f8ebed8fe1331d35547c4ee64f063
MD5 9a12c9da2c4c531301d80b3e5b3de59a
BLAKE2b-256 f59b5e93bcc51074e86111fe8967e69801ac1cbe5ebcc42c10d1d89dc5fadaa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50e602096a64ccf35c9510ea7199bcb3346702b3b1f8c5b36b47748f972e367a
MD5 aa2fa28763275985576bd6185abcd7ce
BLAKE2b-256 e33b8bb995786aabf698f2323afba0a32abc387be808d91557e7d77f948ea1ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48db62d0edae4531d64c31074bed35640baf7225d156a3125ed6d5f734d73c69
MD5 ab44e71947113daea3451bc6d9485b17
BLAKE2b-256 3c48572f70332a61a4db93ea3ff1c86a98735fb113a0c80624f766d2101ee888

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23cbdc74a523a41ee4027ae5b80709a6ea8b9b895546e798f923446087e4284a
MD5 a56541c32b17cbcd9710a0e7d082be1d
BLAKE2b-256 ac2105e5e7492ee227fd096f12181e88f2ab2ed11da0413b3a5cdacd6ed35689

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fde0cd6c9e07a19ae1c14f81c85ed80672b4757193031290ad54f513f7acdd06
MD5 0a5ac9765923ab5ba0863b01396442f0
BLAKE2b-256 64731e4a6e74e3a0f0998908cda10abc56e5cb8d2826572829bb913f59646998

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 60b03546efa61af641aad3bc58e53be618411567b18e834c1ce6993459db169a
MD5 dfa4e660e9b2e28303280d0bd3995812
BLAKE2b-256 e66681520bff3e49435704539ed19661573e7b95f68862065a47235e781754cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8a197986c5235611590db2821f9fc71bedf10da5db8af6f60159038fc68affc
MD5 55a74a00d2ad08d0cdf5e90d1c826b72
BLAKE2b-256 e7525adcd16ff4eff3466bf51cf461e07e9f55ff5b433ed79e373852ed6c480d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b40f04b9635057a3893f0fa04aa407c61f3a43706505b31a3e245d44fdd861f0
MD5 df656402a7d4adeaa1a0d78c1b1546b2
BLAKE2b-256 e6a2dcb712c92e6845836ec93f179b3d30e520948c33f3a35fba870a9861051b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b5acece3339e94b6de157e93615e69d78a092abb7909b6f507c0588b8f94ba65
MD5 ae596aa28649a65f676ce4c146df0e2f
BLAKE2b-256 2efb06fb08ec49102847dc063e30b2e38ae2dded365c9b6981613601de061f20

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.0b2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 619.2 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.0b2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4e1965559428abb45f5ed3329db95240760819b795be7176083fd7cbdcb39bca
MD5 ac689d268a5acd8bcac760e0ffce080c
BLAKE2b-256 812057cd5b42c4195e992788842df7dd2865484d6b15a2078cca4f45bdf4c0f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c2e6a65a08f30ee518bb441971852ec6f9722a5cbc48f831f067179c353c511
MD5 ae22c48b3d3c8ee7b9e4aa439cb06c9e
BLAKE2b-256 e1870272bb7a028836ea6e8c8e8a09169cecf3d2770a624e30a7ed01d5193062

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a36585aab13af6e59b3975de2acb05d19032dcde4fa715cde412ab12a4b13f3d
MD5 7fb5f6f69c7c1540a3d4b310c5f054d7
BLAKE2b-256 c07444d7b24eae8b0884866958d4b7c5213addb28314a9f895c51f215a943587

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 578fa8049fa6fa59bc8971aedc938f3f26fbbaa3506a27ccb7eba3b0bf9a7666
MD5 582686ca097be27c2cf6dfd6cf4318aa
BLAKE2b-256 57e994772f53e9b7520eefbee7f31ace76613c09bc8b87e8ad44dfe87e523f63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 994853a7d94a87eecee89a45c157fdb92fab19d7db4e6ab44c405a5b6b3514d5
MD5 55fc298213738bd8bd661a232493ff14
BLAKE2b-256 aef1d37f8513e58b7071dbffeee1ec17f33f7e580244e6d734a8fd360a1408e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4281d4de01a8ccb918700e4cdbb845f104b0a25c0517535059ef4bbdd7d26b85
MD5 d58a9f22d4e1958e03ee2427ff4cb379
BLAKE2b-256 dab444f5e568015ec7cf4cb390a1e9ff6a2d7323180e7d07d6485da4d38ef147

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ef1ab09d169f1c81e3627203af4071b7764f76747db9299ea0ae8d4f610fe8b
MD5 c511c68a946e6abfbf004fe2c12cfeda
BLAKE2b-256 438130d2af378d463bb46297b715b6435dd47881b4923f621ff68a18ba9c7e7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0756f05bec6e3d8c93ddac700e659064c9edc866fc5cf2290d81920e6622436
MD5 bc87f074d9489a25f25e7abe74ca2d7e
BLAKE2b-256 2e09a98e8c7bbf154b2cf062a01b31df56a2aa31dbdb121144900bf85fda8ff8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d8c2b95a003f13f27123889a796498980f88a56962cd720c6989add6b15ac43
MD5 7ee03173990c9e01f6e3a8f3d413b49f
BLAKE2b-256 8670a422395176aef19a52f9e054bbbfdba428727c2f149edd86baedd1abf1eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a70359f029c1e4aa6be3bb165026635f0121eac4f78dc3fbf8d47397556083f
MD5 0fb80ffe3c969a26e69c9da82671db5f
BLAKE2b-256 78af8b4db0670b85e5939634001854c674275d201a977113d0f40876b25f561f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0bd40254f196d2d611060938daa421d3c0b3b82aa577ba72f3ccc8a6cc1f3b40
MD5 df8298ef25bb5e903738e5c4eaff5f53
BLAKE2b-256 9a0cb4e458744576152f5e20b6db7b66e32545fc7ea849969f2abf25575d77f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67a71e359aaa5a021f4d38e56ff66af29d836885c882d52c5ea688d5a0541631
MD5 010e7d4086422173993740fcfc3bea58
BLAKE2b-256 3c469c84ce75794ab20f11ecaaeb0cbaf53c3ac4b6ea4b1618ebfba1c8af0d34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 682fb4b1931217098348db17fb1c56881462948a281919b600cce93aa8e9df8c
MD5 2fe272a4357b7c17bc6cd530280d975b
BLAKE2b-256 662534de5f53c72016f59fe0371470e9578f706522b191d0adde031273cd2a20

See more details on using hashes here.

Provenance

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