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
  • 🗄️ SQLAlchemy support
  • 🪃 Pydantic support (beta)
  • 🦀 Rust!—but with a pure-Python option
  • 🧵 Free-threading support (beta)
  • 🚀 Supports per-interpreter GIL

Quickstart

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

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

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

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

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

# Comparison and equality
>>> now > party_starts
True

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

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

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

Read more in the feature overview or API reference.

Limitations

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

Stability policy

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

License

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

Acknowledgements

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

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

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

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

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

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

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.1b0.tar.gz (429.3 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.1b0-py3-none-any.whl (119.6 kB view details)

Uploaded Python 3

whenever-0.10.1b0-cp314-cp314t-win_amd64.whl (563.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

whenever-0.10.1b0-cp314-cp314t-win32.whl (617.4 kB view details)

Uploaded CPython 3.14tWindows x86

whenever-0.10.1b0-cp314-cp314t-musllinux_1_2_x86_64.whl (831.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

whenever-0.10.1b0-cp314-cp314t-musllinux_1_2_i686.whl (932.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

whenever-0.10.1b0-cp314-cp314t-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.1b0-cp314-cp314t-musllinux_1_2_aarch64.whl (775.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

whenever-0.10.1b0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (618.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

whenever-0.10.1b0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (664.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

whenever-0.10.1b0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (645.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.1b0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (728.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.1b0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (599.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

whenever-0.10.1b0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (727.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

whenever-0.10.1b0-cp314-cp314t-macosx_11_0_arm64.whl (582.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

whenever-0.10.1b0-cp314-cp314t-macosx_10_12_x86_64.whl (600.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

whenever-0.10.1b0-cp314-cp314-win_amd64.whl (574.0 kB view details)

Uploaded CPython 3.14Windows x86-64

whenever-0.10.1b0-cp314-cp314-win32.whl (626.0 kB view details)

Uploaded CPython 3.14Windows x86

whenever-0.10.1b0-cp314-cp314-musllinux_1_2_x86_64.whl (841.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

whenever-0.10.1b0-cp314-cp314-musllinux_1_2_i686.whl (941.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

whenever-0.10.1b0-cp314-cp314-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

whenever-0.10.1b0-cp314-cp314-musllinux_1_2_aarch64.whl (787.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

whenever-0.10.1b0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

whenever-0.10.1b0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (664.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

whenever-0.10.1b0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (645.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

whenever-0.10.1b0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (729.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1b0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (609.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

whenever-0.10.1b0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (736.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

whenever-0.10.1b0-cp314-cp314-macosx_11_0_arm64.whl (592.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

whenever-0.10.1b0-cp314-cp314-macosx_10_12_x86_64.whl (609.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

whenever-0.10.1b0-cp313-cp313t-win_amd64.whl (562.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

whenever-0.10.1b0-cp313-cp313t-win32.whl (615.2 kB view details)

Uploaded CPython 3.13tWindows x86

whenever-0.10.1b0-cp313-cp313t-musllinux_1_2_x86_64.whl (828.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

whenever-0.10.1b0-cp313-cp313t-musllinux_1_2_i686.whl (929.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

whenever-0.10.1b0-cp313-cp313t-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.1b0-cp313-cp313t-musllinux_1_2_aarch64.whl (774.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

whenever-0.10.1b0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (615.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

whenever-0.10.1b0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (663.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

whenever-0.10.1b0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (644.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.1b0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (726.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.1b0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (597.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

whenever-0.10.1b0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (726.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

whenever-0.10.1b0-cp313-cp313t-macosx_11_0_arm64.whl (580.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

whenever-0.10.1b0-cp313-cp313t-macosx_10_12_x86_64.whl (599.0 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

whenever-0.10.1b0-cp313-cp313-win_amd64.whl (573.2 kB view details)

Uploaded CPython 3.13Windows x86-64

whenever-0.10.1b0-cp313-cp313-win32.whl (624.8 kB view details)

Uploaded CPython 3.13Windows x86

whenever-0.10.1b0-cp313-cp313-musllinux_1_2_x86_64.whl (840.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

whenever-0.10.1b0-cp313-cp313-musllinux_1_2_i686.whl (939.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

whenever-0.10.1b0-cp313-cp313-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

whenever-0.10.1b0-cp313-cp313-musllinux_1_2_aarch64.whl (785.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

whenever-0.10.1b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

whenever-0.10.1b0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (663.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

whenever-0.10.1b0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (644.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

whenever-0.10.1b0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (727.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1b0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (608.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

whenever-0.10.1b0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (734.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

whenever-0.10.1b0-cp313-cp313-macosx_11_0_arm64.whl (590.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

whenever-0.10.1b0-cp313-cp313-macosx_10_12_x86_64.whl (609.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

whenever-0.10.1b0-cp312-cp312-win_amd64.whl (573.2 kB view details)

Uploaded CPython 3.12Windows x86-64

whenever-0.10.1b0-cp312-cp312-win32.whl (624.8 kB view details)

Uploaded CPython 3.12Windows x86

whenever-0.10.1b0-cp312-cp312-musllinux_1_2_x86_64.whl (840.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

whenever-0.10.1b0-cp312-cp312-musllinux_1_2_i686.whl (939.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

whenever-0.10.1b0-cp312-cp312-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

whenever-0.10.1b0-cp312-cp312-musllinux_1_2_aarch64.whl (785.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

whenever-0.10.1b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

whenever-0.10.1b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (663.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

whenever-0.10.1b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (644.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

whenever-0.10.1b0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (727.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (608.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

whenever-0.10.1b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (734.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

whenever-0.10.1b0-cp312-cp312-macosx_11_0_arm64.whl (590.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

whenever-0.10.1b0-cp312-cp312-macosx_10_12_x86_64.whl (609.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

whenever-0.10.1b0-cp311-cp311-win_amd64.whl (562.0 kB view details)

Uploaded CPython 3.11Windows x86-64

whenever-0.10.1b0-cp311-cp311-win32.whl (614.9 kB view details)

Uploaded CPython 3.11Windows x86

whenever-0.10.1b0-cp311-cp311-musllinux_1_2_x86_64.whl (827.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

whenever-0.10.1b0-cp311-cp311-musllinux_1_2_i686.whl (929.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

whenever-0.10.1b0-cp311-cp311-musllinux_1_2_armv7l.whl (993.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

whenever-0.10.1b0-cp311-cp311-musllinux_1_2_aarch64.whl (774.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

whenever-0.10.1b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (615.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

whenever-0.10.1b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (652.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

whenever-0.10.1b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (633.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

whenever-0.10.1b0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (717.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (597.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

whenever-0.10.1b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (725.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

whenever-0.10.1b0-cp311-cp311-macosx_11_0_arm64.whl (580.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

whenever-0.10.1b0-cp311-cp311-macosx_10_12_x86_64.whl (598.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

whenever-0.10.1b0-cp310-cp310-win_amd64.whl (562.1 kB view details)

Uploaded CPython 3.10Windows x86-64

whenever-0.10.1b0-cp310-cp310-win32.whl (615.3 kB view details)

Uploaded CPython 3.10Windows x86

whenever-0.10.1b0-cp310-cp310-musllinux_1_2_x86_64.whl (827.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

whenever-0.10.1b0-cp310-cp310-musllinux_1_2_i686.whl (929.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

whenever-0.10.1b0-cp310-cp310-musllinux_1_2_armv7l.whl (993.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

whenever-0.10.1b0-cp310-cp310-musllinux_1_2_aarch64.whl (774.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

whenever-0.10.1b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (615.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

whenever-0.10.1b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (652.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.10.1b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (633.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

whenever-0.10.1b0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (717.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (597.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

whenever-0.10.1b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (725.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

whenever-0.10.1b0-cp310-cp310-macosx_11_0_arm64.whl (580.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

whenever-0.10.1b0-cp310-cp310-macosx_10_12_x86_64.whl (598.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file whenever-0.10.1b0.tar.gz.

File metadata

  • Download URL: whenever-0.10.1b0.tar.gz
  • Upload date:
  • Size: 429.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for whenever-0.10.1b0.tar.gz
Algorithm Hash digest
SHA256 ebfbc76f73fc75617dcf9a6b1a41f1b447fb21d9b1945823b25e1d6dbc188b93
MD5 d0275ea7da9085a328403827c9b7bbbf
BLAKE2b-256 2ea5bf282d7b5aa333739f13a6a363afbd9d8ead54220b99920d9b81db137698

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-py3-none-any.whl
Algorithm Hash digest
SHA256 7c64b9b1f057bc7eed764b9ab2e7ad23d33e5c19dc815f731c3a0ba489a22348
MD5 494bc3c9cb1979470747990a365ade9b
BLAKE2b-256 6fdbdcd6810407fafc3acec5931a99c41bc850ffaab4d1f4e837de88f3be598a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 63a098f127aba5be12750e9087f5c803885ef05e3ee52136bff7ac3d1ebeee0d
MD5 68469079b3694df2539853082b6fc64d
BLAKE2b-256 a36fa3a4d6b34fcd99cb352419a50744d8779676d1a512ab7de8cb1a2f5d7cb6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d9e1662b4dc8d8f35bb98b4f4766a3789926c322acbf9a16b0029310d8b6f212
MD5 9e18dfc6afa9768a87b22d929bbd0099
BLAKE2b-256 0d472136df9c570127019eb0cc6d023aaacaad3e66c9f16d17ecca1e93f7a095

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5473b55e0dbd240432490e63535f1e64e003a2c38586ca3c20eb5ef1da921a2d
MD5 d7f8c17ca4d5fea5b2efd7ddc2716d31
BLAKE2b-256 de74fb742571a98da5ee99753b02441a45a87aba50fb73ee983b010e0bae4b82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b9989f837e15532b37111b69a10f01552ee3aac607de70f1b30dfdf5979956a
MD5 2a9a5baee1a31603c105b64fc0cf1e40
BLAKE2b-256 996ce4fe3e9343452fde48d56b3db6c42dbb0ba103d07febf5311ab976303623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eaf7700f2ff258714e2015f2175662d217b885c9fbce0abf72862cc5a554d9a5
MD5 9ac2af4b72065bdb042ecbb15bc31aa5
BLAKE2b-256 d442c0473314d31b5eb3aee0baf261b27d060f3acb0d89c47452533ce81e076e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ca567a70a4ab255e213d401b49aacfbee8f15a0715d1008d6d1e6c51bb64279
MD5 6ef3079691217c4114303f722a5e0120
BLAKE2b-256 a21bf314a2a4efb0dcacfcc063c0dca0011346ef2abd166863f96178ec387b9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfcbdf7c6cc9c94ed39fbdfee13b60e053a76197998b51630a2350316f78ad3f
MD5 4f7461490075ac5c45723f331ded11ce
BLAKE2b-256 563c264d5c858fdbea0107b376118582303275a673804468a3e0f9a48f461a3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0e6638356a16c38318ad899346c662d4f8f39d11f5c9471afdca198ce677466
MD5 b69d78ae99f91ed89c8c90cf57867741
BLAKE2b-256 d43d8f173b36581a80c8ef4b0e302a1690323b82d7c1e85df366794207ce533c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f52a37e28b1da707a00d99315bccb28e64d09fea53ff9d9fd1de2f8c52f265b
MD5 7de6cc50dd56b35c4e63a50ba444d1fe
BLAKE2b-256 10e376fe581e3bb9234dcd56182d32f62049035a7c1deccf491ad9c2950ced43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 771c6195b7409a838fac8e997d9d126b2a20878ff6668a3f77415e0ba834b81d
MD5 401f11d424dc613bd66cddd401efba67
BLAKE2b-256 98ada3618c89e0636ccc97bff53bdc10bb3c004a2816c5f947e9eaddb0f66911

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80e506c8968af237281dc3e901758cea65ed8a79d5f86d9d4d3de123f86f9d7d
MD5 089291ad8a97ed18dc40237c1b660cc7
BLAKE2b-256 130dfe0d3489279a46d8078d6d599dc332702a0d26da8351f8ed72da452341f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 830aa5122a40c82886ba118f1d64eb7df410d5108f73a103ef430fe898ba8131
MD5 90e0b998c3820abd76bf078855967ffa
BLAKE2b-256 28e961a8c5f87ef6a4e2d8f8ea7ed46e9092cc91222c8c5a78424b998eb1d111

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd669ff1937e002781e7d5792813e5496369d9e7f914e44dbf2047d072b32328
MD5 ce51513e761fd532c1c62ed0cecb2612
BLAKE2b-256 cea24e94e97bb150f03fb2cc52f7df8c3a54fcb0f6f41455bc68d029f405878f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6efac8a748abbd38156fe874d57ad7fb89c58fed9196e5efa119cf769e1e6b14
MD5 4fc2879481b49da996309617644aa527
BLAKE2b-256 745941785aedc273043491076f4315d11cc11571f67569cf6370aa13cb49cd46

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 de56d935c0392b9dec51bc7e98b6dad8e22ddb72e94e6871facc42857672585b
MD5 044b1f3d4f62d2e7f6faf18c6c6275b1
BLAKE2b-256 f8393a678af3d21e19a9eb0813345c18f447ef4ec883b4fff5a51f02cf632add

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c742a48452d353f5c304deb2769f1a161e8211843b6c3fb925de37e19434df89
MD5 94c71a55daf79029abe5d9ea8b830929
BLAKE2b-256 24bbbdaf840e7214021cc7efcf856853383a88755fd9f11e9ba37d66fa704068

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c1db3f68db1aeac4c4d6f729704b036186b263d2f36ab2d70eb7acb17ef6619
MD5 b114a7a8354bed3d5010efe8bae47587
BLAKE2b-256 264ce0db6f9a73ff0194b3e4277e242853de1a54e4d2f52befeb2e03edfbf9c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af41e393e5d0db8b234631e24b356ff0af9dfe550ce5c855afa031bf9df6f8de
MD5 9c18866906b396462f1feddaead9960b
BLAKE2b-256 f4bcbac0961fdb42726694a0fb6358a882b5ec42322a390aead67e8894ed7035

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 50dca520b7508b5f678146ddc16b1c7c10ec42be24ae393a20cef75edd0fad92
MD5 65ff866e676040695a9ab57da1e63e9b
BLAKE2b-256 1f1be4410fc4645866830d4b35de6cb979abe8f452ebeec93c5b6e8105646aeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0480cb65c9c38a5c7cc77aa219d1321545276eeaa13a2774531c10d2193618a4
MD5 bbb0d6defb6d2147fb5a454a054b4e53
BLAKE2b-256 ade144406f67c5063b97716c163a11b31a64c0509fcd0dc6d4e9117171cea71b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ec35799dd10609c01a368e8a03f0572097d7a0dcf927fad5ec0776da5f14d70
MD5 33cd8a8b6e9543ca6ff97dea47f02bd8
BLAKE2b-256 d0618122e337db62f9630be419abc094c456354d085e77583c7372ddb398677c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10ccc8f1f18759832b365552ff7fb86d74702fc0572171038be2accb33115938
MD5 935e03d413b44f25e2de204972b94ee6
BLAKE2b-256 689d08176c4d7b1a3c7d915b230b788d58ba77dbcb3f9ee12ef1ed94db1d946c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 077f0a901abb49be23d50cf70c0a9425347f269953ba56e52f6675e66ad4c94d
MD5 2f2143766c5d2c701e3aa0d8abea720c
BLAKE2b-256 0490db96c1ebe975e4cb7dc42b1a0371d4ab2e25ead9a0b450a334b817146675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6e768faf52baf6291f66f74449f90f1dad1b5c1c73c57f9ea7043481b9821b62
MD5 ec00fdfeab894a54472c5d34d2eb3f89
BLAKE2b-256 0af0b41bc6131a6d3571aaf57a081f40c85a6184d9dc5d112377331f9bbb3033

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 688dbc2bac1156f4b3341e672e8dcdea215b3fb1e03dafbce31bbcf1ff0ce41d
MD5 0e483c5dd10fe1a5b47f79ce9bde037e
BLAKE2b-256 22b287cf48c1f59f3702f21d3c77395fd27bcf3381a270cf6b3bd163b8a1c10a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a5af5e9f6fab0dc3a99b23c423243ec72d27b865aaaee5e936b7c6c9a4d08aed
MD5 404f41c59bd667236e3f186192af80fd
BLAKE2b-256 1990d028e7426a2fe5da959e73b6444fbe7e34ecac7afe18703788972c0face2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ef1db54f3daa368069e2fb7bc87a423e5296ebf1e626aa075c0da779e822b50
MD5 01573fd3ad247eed7204eccf0187f52d
BLAKE2b-256 8304992c3ef020a34037e980873d3167ac5b0c8ddc06ca4561d18af7b8006efd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3110f7889a47d9fc35a4cffd3628e00c3a477c9fe47a2ed4b4440c1324aea6c4
MD5 83efb412bcda0423b6bd040c8b876b75
BLAKE2b-256 852431635a6c78063002e7311d0bcc6ff620d39fe3a6c37bbecc94ed419295f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 687c49c60284f30701c31bf7d2f77381f8f06ea2ec6dc1e647d6d18b95a700e3
MD5 271e92b226f79f133745d40749758d95
BLAKE2b-256 373dfea4b5ee00640abf1f68ee5f089e36e6b7a2b6ebc4c9b1122ff763a5fb71

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 42a754e645671a0df76a0c67a527997617853970011ae708af0164c5f7c44128
MD5 81754b6095a52e8453a73987626bbd4a
BLAKE2b-256 6daf2990d26f61c04b073387e216a420343f6911dcd2b511098dc4159b1839bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f71935342bdaf321a879d50079abe9a86122372adcef063d7cecfc5aa7b82ed4
MD5 2a27908e9cd8f5648e3db89f9e0f7f6c
BLAKE2b-256 4efc835bd20bc630f21f679cdbe872771ea888643e83edf2e2c6969cee51fe3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e78fe8cf396a41077f92663cc2d75a50436ff52a2d194905a4ec484bae626a4e
MD5 6760b2c63fe0982919b14eb27f9e37b6
BLAKE2b-256 caf037b15428fc76af24f754ca71af7a2840da4959fc0f5f492984022f428e76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 79c2365be304dfe2afd03a1268b4fcd1a29be36b00575945830bfd43301af23e
MD5 e4763b354ecef7db74ae2c6c0ba9bcb8
BLAKE2b-256 bd75b9724e2b004440f113a0ea080c6c72f7d3405a8b53896cb34695b0496200

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a52b833e41f06b3b33c0e79fcec2414070416d441114c67ec5992a8dd43bcab
MD5 7105ed90c56b3419ca04d41fde6f0efb
BLAKE2b-256 4aa3c8bb4d20d7de48c7a7545d610d7a66c5b097114f201adfd3107ced04296e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fb2d357e8909ab24636248e7cf303105f99be22e749aa5c53c19cd2579c6d39
MD5 6a18f8a6866bf6b6c395289d13244f44
BLAKE2b-256 f90203940287ad22a4af7dc8f5ce6b5762ca75bd60f36675222b086d7006b2f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18fce35cb2568eebfca8e4991dface65aca9c2bdce048908f3cb8635774334e1
MD5 dfbed232ad4467e5ba390e6ea74788d0
BLAKE2b-256 027da0c86af58211147b103b4a35bc25f555c5899d1e9a3c3fd1dd78e63c846e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17014db7256ad9418a016e46517545441557009dce0efd6ce0ae5b3974492e33
MD5 5c8fdefc58e71ac5b83ebf1664e0ba90
BLAKE2b-256 c245511d106aea0c8a28d8056d41bf0af03a0c2d8b5b44411aa60f13807a0492

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66e29c1006a6b7d03b625a971e006f47e61671c24610f97001d935f2d85ebee6
MD5 6c7f1a1ad50b39427d860bc71438efa8
BLAKE2b-256 cb144bb99fe50c560b53ef330331bb9b690cc0660b454a713f5ca6017336e2c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3368e2689aa73ee597264b03bfcd0cca900e50ede07279ad6f59315e40dca36
MD5 81993c2fad616873c68851b0c7adbf88
BLAKE2b-256 a16defa41f6d71ec7d815b106545cb4331d24a5b5ed5cc1d4ff856724da5146d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f50f92e4bd71315c9566244d3f02c75a74ef6c339d0cb03d58df08ff17f7a952
MD5 4fe0a75617b2b0a79fe77d311aadf35f
BLAKE2b-256 02d82dbf2eb53260c19c086f49e6f0a277157e75bad2f71f33bbc3a03d4f9729

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7497e45e1a762a8f75ce555228dbef284b98c7b7f8bad6237cd88b5aa4b6f09c
MD5 614abd840dcd54154b47417149e61427
BLAKE2b-256 0e9ba3781cce8fc1894467faf656d99c0e2f25f512ed00f6e1a93607cf7b5613

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec92fd95138749debc6afdb6bc22a3062f0e43b4c161cd95d9e46c57ae0d50ca
MD5 326f37f67995f641aff1c4402aaf1db5
BLAKE2b-256 36f94aef7ec3e5d2968739ff49df921ef31aa7064324e7f007e8b7789a9cb0d1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 159e823f3a21a074b714db78a4cd1b29bb0b60a7b3da43993aa773b5e0205cef
MD5 de1e35ec8520806b1dfe3dd5a30192ed
BLAKE2b-256 f80cc6a1fa12296d5b94578f8125b6bd0ac916ff8a328bef7cab56741b9eb6c5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0d680bb302f0bad08399ed44ed7fa27686a0e530b0a2e7d729188590f4c2dff5
MD5 1f1a89dcfd4322254359db514d1d603d
BLAKE2b-256 0187120114a528d230eecac2d1e34046aedca9be821ed89e8bcb556196524bf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0b1b1c0874602ae752f241aabee56cd49ccd578c73ad895b8ed5b4a45e669f7
MD5 4f4197253ac2e53657b5291f90c42ff6
BLAKE2b-256 fce0ff09ee482abf85774424658d383281b35cb8ae55f6f39337f27e3a1c843a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23047fad1fa32b69599ede8d1781dedf9c0e1dd83e1172e2e015494e0b46cbc8
MD5 cce666d7bf38f72065c6f700181069fe
BLAKE2b-256 23fcba0fe14e2b92266a81a44eaded91444d6550adc33583e8e51ee83f1a9db0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f0d76d99e503cf4ff97af9a098b40521b827e521ea127a47684dc1f20807bbeb
MD5 923fee8968b9fac42f7e3af1d99f9517
BLAKE2b-256 45f5d57bfb38756fa551b484f9b9445447ecf494cc6c6db21b66fa1af3ecf158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7750e6a3d17f7715e698177a4abde8e4d66f6af6f08f0f85fa7106fd17c64164
MD5 784325a36427fe77f94fddd75f8dd13b
BLAKE2b-256 76a4a2ae9d6f8754889a5c4eaa5ab32d00c7ef456c4af8b18041d45a1bbfbfad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1f9abbac58e98ffc4b50a90724108843b303881d5ad8905162bfe932d01ddf4
MD5 38d86493992841efd2bc630bfc31d05b
BLAKE2b-256 215613cce8d2826767f8bc99b051c79fb7e9a3c7f54c220d7f8ff96fd5afa3ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9da8144cde14dd810f92f2ee75c078ee77cfd6a6536be0760fca370c57e96d6
MD5 0d54f7e5816e512c6bac04a2b1727d95
BLAKE2b-256 273302ed6651503fde281faf18bd06ca2df3f89fbc31cf3de46ae30fbb19f6f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1cea45ccf15a542e0a033f1cd6750ac5506b88ad2ed4bc12098788b047af1449
MD5 d87d63410b5c44360ac9f9466e03a3db
BLAKE2b-256 cdab9b46256410d7c343f16c970bf94fcfa64ea51649580f829ae1d9d9c5c250

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 729d861cacb0f196867fa20b0bd949e112ba1b73866d7625bd3b3a5675934a8d
MD5 f10019750fbef649a3046e2bebf344f5
BLAKE2b-256 f3fda34a4a8ff20437ff957d2c7545f599d4d204fe09cb67faab2fe8a6ef555d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 793fe61053e35e5f286a6a666dd30036dcb96e371d5125035c9cd263d9005342
MD5 81e59cb170449c990862a997c9d96362
BLAKE2b-256 da649e842785c41c96ea13d4d24e4047dcbdf7d86f8e140dd3fd0af617d36f2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a6f9038852959b90aee374e1f7db4383f487078d2b925ea3b6fe3eed984d5eb
MD5 838c6e3d56e777286b5c15c580afcaee
BLAKE2b-256 b7ea5455534500f053dd87d706751fd90317d68a8ec3c1d61bcbde709774357b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efcb7c1e75a97e06ad75ec1df8033229fdb3d38413f4902ef39de932259fad8b
MD5 aecd47702883d7dd3107b907c3556c02
BLAKE2b-256 2a8c2528fc1058b10f6eb7cb93378ad1839a67802d19563c189fae8d4bed6f38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8061f092af5f6f6c8f9a57fdfa10259f5aa974c130939055925755243ecb533c
MD5 c755d509bc889edca682b079730ec763
BLAKE2b-256 89f7daddeaf623bf6603177928e70f63ebe9a60e8c476c4dd8c58e2f6609575d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a59edff11ebeada39b53aebf6a7b3e2581673acdd5431672995e388028e4dd61
MD5 9008a394ff2f37fba13da6ae36311627
BLAKE2b-256 bc86f1735b93a17dbf4fbac0127e9b2ff4efd931031d1fc4a41f3c5ce82362ff

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e30169259ec0aa78f30b07c14a942705a5931a87cbd915ea27773bec7b2bf955
MD5 a3df11f6968145d4153fe03c643ee145
BLAKE2b-256 6729d01d7b74a6af7c9e18de5cba5f7a18715bcc4a81ce6593370066e2790b5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 061b31e70b1c7719904641eb8217e9774c663780283abb9cd211cf397a369def
MD5 a89fad6760b73eb2dfc264563f41dd65
BLAKE2b-256 b3a44513da3cc735d0848a696b2a8cd81c989fab6cfc6d2f29cede419cc1b4c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b01d18bd9154f7a88a4ca7742798f917a7bf318a8a9d01fe321542ec3af2cb68
MD5 569f249edf5f7d0ec22b11cd52e7cc29
BLAKE2b-256 94c00746e14ef3f741815e021c61e40194f9ce8c9b84ed1644aa287386aae9e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 76b3b1ed141b02e4088a23f2631872ca00ae0b94c1fee2f67de8a2efd299ac91
MD5 98bceff702916fd0f6a346124194bc55
BLAKE2b-256 23c9c31df9c3026fdf090a84141c647fd2b60b4f2c309c4ab4cbd65781a676c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ecaa05bc5a7ad82cb34f549178eec0dbe07249454191f88709062d98380114cb
MD5 4dd44c6ce74d11375452200c3f906437
BLAKE2b-256 d5e0e54ae07f39e67b9d98047a117db39d61341c75401fe5ae3841db2787fda8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31a52386318e531e45524642ea6435d713d9c38564cff9a3888d963a428d9bfb
MD5 499233b637a1e3bb6cd728770f59b0db
BLAKE2b-256 2213d4198308a1283889a4fb03c4920ed37baee18782d41715d7d0a66da9333e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ddd421b3c50cfcdaeaeca31479bbe1c1e648fe1f6c01c099499ecffb355259a
MD5 6b0244d74f0847e4e1396bf396b0cde9
BLAKE2b-256 312efb48953f54063be4c7db2797bd1dc7fa1e125a06b54881e1ba306e5010f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 834964ceec521053e6b12e49b0cb5783c6b2ff9d6e4f309efc6bd1878d6f6f98
MD5 1297434b818d123906005afd5ecf0fff
BLAKE2b-256 e44ecca722d65ff9dd167c0ec95b89c1b5e8cb6e18c95e73f40a91c1179c56f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d54ee489fe7461ca1560bb3e8f5b77c853862aac767679996f05d2f63d3d81cf
MD5 356655f09a33669bfb8ca52140873076
BLAKE2b-256 b9a7979483c11d7ab403034416f5a448021c972dea053585036ff57d3e75573f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72226ced98f81e63610e00c0dfdcc8484dc6883a27ae396b0065846113732e30
MD5 310db11c028c52ee45a3c155708788cd
BLAKE2b-256 71c5432d3d25b312728b932b553991fdb1830a9c96c067d385f8ec519a064320

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a52ca1f94e4ae921ca1de4f103a9731e5165b4bd533233f90d3df5279c061a3e
MD5 d68be11983e329b856a50eb3f7ff7e74
BLAKE2b-256 f709db75286334420be9df869ad3887eef44594d6d753c5165dc22d7eed31cb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fcbc7d204a426f4c2a63c7b1f4b09a8a2c2908f93e287cd182a03fac9fa5811
MD5 3d487eccc24988d6b77131b18fea1774
BLAKE2b-256 e7a11629068507b7f45da526746dfc6fc336a7345399b1cfdebd4fe259809743

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82448206b6a557533ef44422de5cd7c77323ee77617090971c1b5470ff5ed604
MD5 6e168376412852608a6a07ddbad1722a
BLAKE2b-256 69ab8191f1769392df7cbc3fa70f45520b037fe2f84dcc5389058bf97c9444fd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 252ce898cf2fd6d48fae434c83bac4a69a5694d46ece9d32be2c622333db17a1
MD5 03aba6d655acff8cac14f96700d855c4
BLAKE2b-256 8d4a39f96b53c0de629901386e48ce48feb084e8d0442d46377e1341297cc786

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ba5decf675dd14c42c983f082fe7f16791c078ca7ca03116693f09905f5943cc
MD5 7a10552387e4a45f87ea3c120dbaff72
BLAKE2b-256 f75a2467e8fc131369e01943612633f32e25e15a86a06412df66b951bb73615d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e50ca42b583190b8a3fcebc7401c37b24abdd32fe113fa1ebdee6d8cc3da33b8
MD5 3ae4d6bab442c988303b1089190aa302
BLAKE2b-256 5376d3ac952566168a22afc29ed39d3452d7466b637a42dafee7a4bf3d30bd2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c97b6fc1dee436b1ae70551d6717628c48f758b4cde3ff73ec42002d2e2485f
MD5 d137fb0255e9b68784f72461117a1837
BLAKE2b-256 b8c57fe4aaba9d86fc7f7a47a2ad339a70799d52de7c6b7b3b46709ab4480534

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 43febe331f0c0706166eceb0c964ca6bed883d1ba3a74b479d3d698110613d3a
MD5 8bd323f597b17f8bf56cb3dbaeeb6e10
BLAKE2b-256 da44999758cfc13f13ea081fb901043f0962afd9651b305badf68f3052ca8241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ec8a9e494c322371193e8607c3688740826817c098726a6014a6893ecd87346
MD5 6d7c70da16e6ac6a3deb0b7a050521a7
BLAKE2b-256 ebfcb2b8a686793d26105fed8292c0508d9552aa5a4973783138ef2e01c65a7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f68eb9dd143020421761758119a86497e53b823705ff30d5a557973ee7f0b22
MD5 791d57c94af43506760fc9270ad7b04f
BLAKE2b-256 c95dc31217e5eee9355d5f5a0c1665a030aed3c6ca55d21f0ef8881fcd4b7ac0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 662c00b1e7d367458f5feca33eb9e19ef8dc378a6afcc739a40ac7d77b01f1b9
MD5 09254ccc4e01279e3cc1272f0ccc78e6
BLAKE2b-256 77f5004d682af7dd21a610dfa5a76673c0568b4036b1971e0f0da09c9ba09b43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa3a9c3fcafa60fc94557074b0826c089925efe6729881c16171f0f2fcd00891
MD5 ded0af3799fd228f126e32639f394387
BLAKE2b-256 8d6a9ead612f05f1e85e6f8516bf1d3980bb07027d6a2b539cb93effd48bbfd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56ed8969a8c843fed113c256657cc8d579233bab239494a8d49463a5149115c0
MD5 69b56c861858b9fc4895d27ed4fcace7
BLAKE2b-256 85d310e34dd7c772834a61aa358bc5ae8f737e9963b5dee1e22b593e50bbe6bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67d71664654e61a4e47082e416a13544037dbf4e4b11325f53a61cca6931b10c
MD5 e97ef46e17d504b6135829b9ecbf3418
BLAKE2b-256 fa91ae7a5669ff5d17f1b8627ea9fa56f0da6cfa5cbbb99eb3ac33ae6d1e7abd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0d8be82e87cc7bf28efc50a8168a25ed4167ba0ac5366e2a4d8a726cb0910806
MD5 e7436aa5f4f6c431ff8ab153cb3d0960
BLAKE2b-256 9098ef22070a59cfec2bc89597337494bfc2942f729bf24f968eb848f80263dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f18004e9bbf7f2a71aeec3769e969eaacf566dbf4eb233672c1294cf01cb7c5
MD5 c28713e18b11c181d76f4abfe45fb514
BLAKE2b-256 9ddea3d66888295f5bd1947e4e3a026987eaecebf5d0f2328b4dbc1e897432e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a1dd6146fb038ac0870956ebb96bf72c62923e98c1d0cf78447c38c584c0090
MD5 07bffd3ef4db2eacb36deb8ced265385
BLAKE2b-256 f5cb71f4b22e36ef5891fba8590c9a2d34dd9299fe510d65f84eba38df13537a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eb99f830bbdecff6e672b5213c6332e65c39ce09658f2884c7050c5a258d737f
MD5 312ec5cc3639c5facdb98a18dcb4d61e
BLAKE2b-256 428b3835f6693f48492232df8ddf0c4901867f364221f8c88ec8d1ffba0a3ca2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 98bdcdb4e987cbe04b083dfd103b4dc0ce7079141356f180e7847248d0e397b2
MD5 befd27d50c1fffb28040d91a93c8c82e
BLAKE2b-256 d81ba0445b6f3f5af43d54869984b3545cbfc5655330ff1f6ff94605e196da9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 634cebc7ccb30bd4486c02997bc588581d8be9ef79d847f09903be859ccd68a3
MD5 68724ead240a6e9a6605d6dd1de92ba6
BLAKE2b-256 1a6f3befa3a862c3485f7f0210859a74edec6638f7994d56c7e4fac3d63ca4dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8fb1705ebe4cf5331cb9f7e4242f179cf118d07ededd0c028c37e23451cc8005
MD5 7264cee2c01146fa3dbe1a642e36b45c
BLAKE2b-256 f7b49c37f0bc8f7ed996102aade941960e977302cdade5685c75a65d6bc601d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ccf97e0ac0dfd0949a7138d4a40e80d28a976c638d53d47642bb35e39c3cc01
MD5 d10981302218a1aa9d7661050c3d66c2
BLAKE2b-256 b1092a259846605089ee189dcb041fe1ef7f411de02509ddc089fc745a92b22a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e4123fee4063c04cf4108acfa2c2cd4e3a16fc992551af1d1dc91e7baa37466
MD5 95e960141e79d30fdba9d4d46e3458c1
BLAKE2b-256 d1e0cf364c8a0f348f8ea23cea80a9368e6c06082c9ecc34402a563dd2fbed98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c517e9ecf1eb671385698cf9206b371eec6151cf0e60429c01303319c15c1553
MD5 873bec03f8fdfddb2da3b26cdacf1071
BLAKE2b-256 39a644f6f1d436623fc8e287a33473fa7ed13da29ec021f6724cb62418b38ef7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ead6384abb45f99b3842df6fa0d89bee99efc6a3cc27c58506074b4cf0282670
MD5 778f3679b34c19b5afe8e8e427bb55eb
BLAKE2b-256 495f07adab6b710fa300abfe73bb01fb95ab4cd7783b4f9d3dbc08bc261ce0f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a213909b95d134f3f72809b8c93a226e886bd410931d8456a31bcf5000c9c46
MD5 f4eb67dd2a14578d2c703faebb91bd9b
BLAKE2b-256 e7eb476fd144105e884a86a131bbad6027accac808dc10c8250822d8f219deef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f644e1690ad1421f7179b4409305c42b59d44740f9ed9ebef136ac7790067451
MD5 a6672d915817c4fa5358649e8c791347
BLAKE2b-256 562e0c526bb0f054930a29e39d420a18e20ee8cdf83fc9ee2459dcb05045ec5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e89aa55ab529980511f7bc3f2cc86a1b9ac39c264a2eea16952c269264f091bc
MD5 e866a6d3ae61fc4e1abd3be717efa9e7
BLAKE2b-256 d5cae2d5b54da0984cbcb6cdb4b721eeae4b6190952dcb8e189ad280ce8ed8e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ca15191d8cce24eacc90f1f54b4e1063cb8a93c5ae2f2818a20edf084928114
MD5 02c34aca80c5318ed5a5aa8145a09c80
BLAKE2b-256 582eb62c247cadc21520e250549b9362e59889a812fe16420220c97025057935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfa2488a7ed2e0001d6a7ecdb1f36eaf4b2a466319edc219942a9c08fdb0d968
MD5 02fecdf30969bec64aa986e71f3de99d
BLAKE2b-256 c61df33772dd531d7f28a191d525b7c2fb8eedbadc7722c87f4c6c278be8abe1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ec7d84753a928ba111f92cf8873420c2b664246385e785e5ba1ed6fbf8c7d18
MD5 cee2be1445820e97b78c2c5c8307c58f
BLAKE2b-256 3c083fd24f2a90d7d497535c6f4c327cdb91a895b4ac7b332f9932b61f7bca39

See more details on using hashes here.

Provenance

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