Skip to main content

Modern datetime library for Python

Project description

⏰ Whenever

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

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

✨ Until now! ✨

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

Shows a bar chart with benchmark results.

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

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

Why not the standard library?

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

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

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

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

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

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

Why not other libraries?

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

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

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

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

Why use whenever?

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

Quickstart

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

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

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

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

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

# Comparison and equality
>>> now > party_starts
True

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

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

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

Read more in the feature overview or API reference.

Limitations

  • Supports the proleptic Gregorian calendar between 1 and 9999 AD
  • Timezone offsets are limited to whole seconds (consistent with IANA TZ DB)
  • No support for leap seconds (consistent with industry standards and other modern libraries)

Versioning and compatibility policy

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

License

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

Acknowledgements

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

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

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

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

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

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

whenever-0.10.0a1.tar.gz (397.2 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.0a1-py3-none-any.whl (107.5 kB view details)

Uploaded Python 3

whenever-0.10.0a1-cp314-cp314t-win_amd64.whl (640.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

whenever-0.10.0a1-cp314-cp314t-win32.whl (615.2 kB view details)

Uploaded CPython 3.14tWindows x86

whenever-0.10.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl (883.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

whenever-0.10.0a1-cp314-cp314t-musllinux_1_2_i686.whl (927.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

whenever-0.10.0a1-cp314-cp314t-musllinux_1_2_armv7l.whl (970.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl (810.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

whenever-0.10.0a1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (668.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

whenever-0.10.0a1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (700.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

whenever-0.10.0a1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (673.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.0a1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (693.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.0a1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (633.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

whenever-0.10.0a1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (716.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

whenever-0.10.0a1-cp314-cp314t-macosx_11_0_arm64.whl (618.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

whenever-0.10.0a1-cp314-cp314t-macosx_10_12_x86_64.whl (649.5 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

whenever-0.10.0a1-cp314-cp314-win_amd64.whl (641.8 kB view details)

Uploaded CPython 3.14Windows x86-64

whenever-0.10.0a1-cp314-cp314-win32.whl (617.1 kB view details)

Uploaded CPython 3.14Windows x86

whenever-0.10.0a1-cp314-cp314-musllinux_1_2_x86_64.whl (884.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

whenever-0.10.0a1-cp314-cp314-musllinux_1_2_i686.whl (931.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

whenever-0.10.0a1-cp314-cp314-musllinux_1_2_armv7l.whl (973.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

whenever-0.10.0a1-cp314-cp314-musllinux_1_2_aarch64.whl (811.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

whenever-0.10.0a1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (671.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

whenever-0.10.0a1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (703.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

whenever-0.10.0a1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (675.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

whenever-0.10.0a1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (696.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0a1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (635.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

whenever-0.10.0a1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (721.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

whenever-0.10.0a1-cp314-cp314-macosx_11_0_arm64.whl (620.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

whenever-0.10.0a1-cp314-cp314-macosx_10_12_x86_64.whl (652.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

whenever-0.10.0a1-cp313-cp313t-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

whenever-0.10.0a1-cp313-cp313t-win32.whl (612.2 kB view details)

Uploaded CPython 3.13tWindows x86

whenever-0.10.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl (879.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

whenever-0.10.0a1-cp313-cp313t-musllinux_1_2_i686.whl (924.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

whenever-0.10.0a1-cp313-cp313t-musllinux_1_2_armv7l.whl (969.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl (809.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

whenever-0.10.0a1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (665.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

whenever-0.10.0a1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (699.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

whenever-0.10.0a1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (671.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.0a1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (692.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.0a1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (631.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

whenever-0.10.0a1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (714.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

whenever-0.10.0a1-cp313-cp313t-macosx_11_0_arm64.whl (616.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

whenever-0.10.0a1-cp313-cp313t-macosx_10_12_x86_64.whl (647.5 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

whenever-0.10.0a1-cp313-cp313-win_amd64.whl (639.3 kB view details)

Uploaded CPython 3.13Windows x86-64

whenever-0.10.0a1-cp313-cp313-win32.whl (613.7 kB view details)

Uploaded CPython 3.13Windows x86

whenever-0.10.0a1-cp313-cp313-musllinux_1_2_x86_64.whl (883.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

whenever-0.10.0a1-cp313-cp313-musllinux_1_2_i686.whl (927.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

whenever-0.10.0a1-cp313-cp313-musllinux_1_2_armv7l.whl (972.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

whenever-0.10.0a1-cp313-cp313-musllinux_1_2_aarch64.whl (810.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

whenever-0.10.0a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (669.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

whenever-0.10.0a1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (701.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

whenever-0.10.0a1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (673.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

whenever-0.10.0a1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (694.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0a1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (634.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

whenever-0.10.0a1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (718.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

whenever-0.10.0a1-cp313-cp313-macosx_11_0_arm64.whl (618.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

whenever-0.10.0a1-cp313-cp313-macosx_10_12_x86_64.whl (650.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

whenever-0.10.0a1-cp312-cp312-win_amd64.whl (639.3 kB view details)

Uploaded CPython 3.12Windows x86-64

whenever-0.10.0a1-cp312-cp312-win32.whl (613.7 kB view details)

Uploaded CPython 3.12Windows x86

whenever-0.10.0a1-cp312-cp312-musllinux_1_2_x86_64.whl (883.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

whenever-0.10.0a1-cp312-cp312-musllinux_1_2_i686.whl (927.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

whenever-0.10.0a1-cp312-cp312-musllinux_1_2_armv7l.whl (972.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

whenever-0.10.0a1-cp312-cp312-musllinux_1_2_aarch64.whl (810.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

whenever-0.10.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (669.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

whenever-0.10.0a1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (701.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

whenever-0.10.0a1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (673.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

whenever-0.10.0a1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (694.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0a1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (634.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

whenever-0.10.0a1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (718.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

whenever-0.10.0a1-cp312-cp312-macosx_11_0_arm64.whl (618.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

whenever-0.10.0a1-cp312-cp312-macosx_10_12_x86_64.whl (650.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

whenever-0.10.0a1-cp311-cp311-win_amd64.whl (637.7 kB view details)

Uploaded CPython 3.11Windows x86-64

whenever-0.10.0a1-cp311-cp311-win32.whl (611.5 kB view details)

Uploaded CPython 3.11Windows x86

whenever-0.10.0a1-cp311-cp311-musllinux_1_2_x86_64.whl (881.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

whenever-0.10.0a1-cp311-cp311-musllinux_1_2_i686.whl (924.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

whenever-0.10.0a1-cp311-cp311-musllinux_1_2_armv7l.whl (970.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

whenever-0.10.0a1-cp311-cp311-musllinux_1_2_aarch64.whl (811.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

whenever-0.10.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (667.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

whenever-0.10.0a1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (699.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

whenever-0.10.0a1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (671.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

whenever-0.10.0a1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (693.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (633.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

whenever-0.10.0a1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (716.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

whenever-0.10.0a1-cp311-cp311-macosx_11_0_arm64.whl (618.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

whenever-0.10.0a1-cp311-cp311-macosx_10_12_x86_64.whl (648.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

whenever-0.10.0a1-cp310-cp310-win_amd64.whl (637.7 kB view details)

Uploaded CPython 3.10Windows x86-64

whenever-0.10.0a1-cp310-cp310-win32.whl (611.5 kB view details)

Uploaded CPython 3.10Windows x86

whenever-0.10.0a1-cp310-cp310-musllinux_1_2_x86_64.whl (881.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

whenever-0.10.0a1-cp310-cp310-musllinux_1_2_i686.whl (924.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

whenever-0.10.0a1-cp310-cp310-musllinux_1_2_armv7l.whl (970.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

whenever-0.10.0a1-cp310-cp310-musllinux_1_2_aarch64.whl (811.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

whenever-0.10.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (667.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

whenever-0.10.0a1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (699.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.10.0a1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (671.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

whenever-0.10.0a1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (693.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (633.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

whenever-0.10.0a1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (716.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

whenever-0.10.0a1-cp310-cp310-macosx_11_0_arm64.whl (618.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

whenever-0.10.0a1-cp310-cp310-macosx_10_12_x86_64.whl (648.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1.tar.gz
Algorithm Hash digest
SHA256 a3d58ccd97d7419c4748ea50835546c4aed1b2fbb4470a2616b84d56374e5c02
MD5 01a2583a96b9d084580dfeb7291d76f1
BLAKE2b-256 e75f0b9aef563d76402112320779587bfaedc288528e0692067e6e5d0d65084e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 3a86f7c959b6046de4113231713f8c65415514756498c07af5dcfa620f50dafc
MD5 505735d804017e85426311fe5178bc66
BLAKE2b-256 51e12f045e7c3264774339202bb7b2ed1d504a04029afdef6b257ed99034220f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6a69bc5e24013a3cdaa5e5fe4bcbce990ee2c0b2289203d9f014a02ba488adaf
MD5 8bee63ef66a7b035e0ece82615fafc8a
BLAKE2b-256 1b272c1544490ac773e440f93de3e72e7de967367f2cf17d844fcacd4e4c4754

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3813c76a97f399bbe390045c6195ed6170f47f1c11e7126bac3e5715c8f47465
MD5 98f1a5c5e1e78118692cb3b1d529af27
BLAKE2b-256 8c37fad7f64d6aecb35b117a0c807324c41241425661bc0121739af3ed8b9efa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10de47a5db06bc037ef6df662d366ddabb382154ee53af6b19988cac287c1a44
MD5 4d5887112b3678ee0907bba8cf22187d
BLAKE2b-256 48ee9e364724de91d5bd13a95573af4aeb091e16ca997298e5b4cbba566d2d08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39d48cdf0cb1c5e0f6da9a027763290c4f91cc0b0433d03d859dfdd2da4fea3b
MD5 071ce77a832d1068e43b4079b8575796
BLAKE2b-256 17e8e6e390482364ac20a29c1fb45c0131267c5d93ec4877f86626e699e9d139

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9fbffe0a3ba9f51cd8e01f254cd4c3bf2285a97e07c31dcf2c35382df5f17088
MD5 ac5a48003ecee4d33f5be3fed321479e
BLAKE2b-256 5a630d535e4c908b968de38cd432f52d4b71511253b163da8fb317ddfef92abc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aeb18409ddcb25e14663fecb970df2cb0c183d2a5392e1f0d3a5967b1c6dee46
MD5 d1911b9d3c18004fa94a552786d4ac25
BLAKE2b-256 b9a401027d53e196695498637cb0c36cafcf37055bb5a5b93b38cbe0cb2c638d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 172de4472575c66e6288dce1beceb383741fecdc0d7937177d0f8c0ef00a5d60
MD5 c49bd44826bc780b44254967f52a45e7
BLAKE2b-256 e5878b82001cd09f5699d4c64355d777f5dec2fe48d434272b9d7ce6c27030f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 408bf8e0200b5b0839b05d2b42b8e01ddd6271de2ed4a62690dad1a3ee84fe37
MD5 402287b3865e8c2aaee4c399706be042
BLAKE2b-256 dec6117034f4cb79d7caaa0e29de644402e0c245ef61f4e94304f659e38aa2ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e17418d175f7fb3dd3d9085eed49abb499120db205ab9de3fc241aaa448a810a
MD5 8d6f075b47d4f570af9a16d0289e949c
BLAKE2b-256 97a91b7dba81ae78561a33acb235cc6b2403fe87ca230841a9dcb63dc6bc8f59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b270f30b184561d1841e6d98b8198e114a6cfbbeebbafe7e9c21215df7b658d
MD5 ead4f691c611cb91d0b4c35de87edeb7
BLAKE2b-256 fbe64f5acc6cbb28b6d20c084fb937ad12834cd75b9a077940f2c9bb6968e4d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d09a4fcd11e1cb44896582ff0d628c15f39c17ac0076a86700fec9888b7e0eb
MD5 e1863e7a44d6db4cbfb36529faa84dbe
BLAKE2b-256 69bd416e77353ed6062e4bcde37dfcd0837c5a102560abf5ad2284b9a2ea1409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6f7298f006db5683e4d462c1f7c87b18896ce370aaf56df4ebb2f02b9c19f1a1
MD5 4c21f9aa181a4205f4ad520f9338ae81
BLAKE2b-256 d85e0d60d76841a7773aa386779f5945b293056b5e8136cef2c6eff4e7d0bcee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 346a2820fa71e117e46132a38b599435492f559b4a0721a6e5a747fe2a8d4338
MD5 6b6927b920aebcae6e5d3cb999219a02
BLAKE2b-256 de7c584e3a28998d6788992ff9605c27ad3f298a63fc48508e16c3ce5b76ff4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8645822598337285a80b544f0742dba35037f86f6bfde212ab705e5e386294d5
MD5 b261b324e0817114eb347441578a94fd
BLAKE2b-256 ac50f2995503fc9c1605af6b923ec46ef830f49b6e36924fb2b0049c1e92c081

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 28084e54efa39dfa47e22c54f869369ccec39a1b2028baffea9796cdbecdd620
MD5 dc842839062d9cbbc36c6c89de0bb246
BLAKE2b-256 d00da8089a13aecae87e50d255b907253ca69e6a84a1112f6b2122b5c3db3855

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3a5db84b311eaf346bd071413dcfafab5b7d72568de24b312072f61fbc3fbe97
MD5 4a0b2bd8decc81e11150e9a6dd49dc23
BLAKE2b-256 b23225fde967dd250dc6d5cb577a0fb4daf1c65a76f9a5bd82c956ea21def467

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21bb62e42229231451242387541a32225d1e54f2fc1ec8e2807756127156e55f
MD5 3036c51b203dc26598b7d93d2dd0c56e
BLAKE2b-256 b742e02bf094d572e85e8ede1c1d7d711fc368eb5b18af5d12ba75970ed0ef21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dcc6380dfd9ec3e935496e9af059f49ba0344561be9cd5e4549e6b41a1d10897
MD5 9a0ad63bd10a2586fd9e384671605aa7
BLAKE2b-256 835c651d222b15c471e2ae1af6058d9eb9fccfeab79ca386bd524b1739cd8026

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e3f9f32026582f8c067745f6055f1863ecbdea339895b8d982d81f3cd3e45227
MD5 e9102710c06577574815c6aa3b3a98a4
BLAKE2b-256 ebabecb950ab33fab4215303cd8ab6b7d4f68f9055c7224c3750f32cf12ab2ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36996872d989e7b47f120cd9f93ce7b4d739e3aa888d3c44302ae2b099fdf7f0
MD5 465730df31094d6d6a416b49aa0475af
BLAKE2b-256 4792c11f704259a2730b7a1a08e7ce0dac72da157edd9d3ba5ef718704a4ae12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9dc50b9e239ea96dbcffaeeab9071e5c1208d188200c34085d11b223840bb80
MD5 2c3535e7908d67f17a66054ae5f48489
BLAKE2b-256 44e51c888bb61c0718febf5b5262a52b77780a2e98e4d347b5ad01a37da0abeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a790ab3297d83d4e0b019570812fc87ef52e3ebc824d47096b0abae5bfa5a580
MD5 de18b0e0277ab09fb18584b523863449
BLAKE2b-256 6c10faba4e04a34e34866f55977423d28dec84cb2cd9140785d33a701904f0e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be672ae470b98558e076b65ee481acc4c739cb28a53bd81f792eb4100e28f837
MD5 0f1989902b58b841514870d0ff06291f
BLAKE2b-256 3683e762adae6859473b09f3d700d3647c40a7b6233d4ba06f4d3b9dff8bb338

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff6efdaa59d9260ad4394099146cf46698dd4f738e6f76db7b54ccf1e19871e2
MD5 ed06819a289a0c2001b95eda079d891b
BLAKE2b-256 b4caa9ff0cc757ac3daa5b30dced61e353799468c528fad38925c60044678712

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c5f7beb9d96d8ea537cda5dc9c76dd9b2a69ae0ab0a71413c59f10de54c9b3a
MD5 c0041507ccf0785cc23dab9afc3e9920
BLAKE2b-256 205973042924eb8a3574a5ba956d378723415217474cc377265f917edccfea09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b0e776a66a6119477085dbb244b12ea3d2470687797d831f930a8497e9aa19c
MD5 43d9ebf0937bc682417b32c542df7607
BLAKE2b-256 ee5fbfae361fac4217dd95ccd1d00de85e94dbfb5f7e578eda6e41678a777da4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c37633e03f4fe85fdde0f9a781b52dd6bc61fad66f5f25f11dde5c0baa0f3df8
MD5 d47532807db7c1462551136d79afcafa
BLAKE2b-256 0210513467970a82b0aa9357e862f72b5c00d2cdb742c08410c7dc8c988a4d07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a5f312abb1d9975eda4515f1f4ae4d780553017d320fcd1f8f41a1ad78993a81
MD5 923dd6b8bd38f3b16a2a5c7868a36314
BLAKE2b-256 e08cc919517ed4f29a1a86268e45438e385bee349549c8e16e85d9a3b6bb71ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 1d0dcfcc5cbee5129fa00463cc01fd2a338b35bbdea91e3ec01bd8feaf152a25
MD5 ac148deb0277d496e340261955650093
BLAKE2b-256 a6e46d85a5ab52c15c97c75607926762891c11a9e32cbec22faad3fdf8eca050

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 37c121af3206128d61fd895dc53425863021ee097851d1f2e7457d3eb32f2692
MD5 25d0e60eb500fc5aea59fef10d6dee87
BLAKE2b-256 75f818877c7bfa3e65729d35309cd9c0d2eb0d4b5b5f4cdacdfb32042a54b50a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bab26eb3d5c881192174396babdd6aed4355dfe3c8d9730ae62dc4fb2e7c162d
MD5 c50f0bdee6c0011ff5a1e61bf72be045
BLAKE2b-256 331fef4583a0f0d35cf9b2ddbb8b337f20a083ef476325381691a3f5432122d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1886809293d63006aadc80c76a470ee33cecb729a06c22395b2f9969905890aa
MD5 c2b1ce4ae8cc2ebc79561eb971c0a665
BLAKE2b-256 ed938156ee82e923deff6e3d45721f615834c6bd9cd549a3fd0a4c0f37806d0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da08b76ae658daaec82835e97280476235249fdf49c68a395538520a8a5766df
MD5 39467ce2bc2d378824aa2fbc5a298c12
BLAKE2b-256 1c9fe997c1bb60900f55f22009e13c557aa391530be98315930ca508b988cfab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f001dea0e30c4de0290a32329bd9668e9ea20c7110aaf0431e9e65dba2ca71a
MD5 e854aedf0bd2e8948d92fc5e0a09ab15
BLAKE2b-256 be1fddf233a9d5a94217c14290f09ab682cedeea1e2c660a87f1883c8ae86b44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43cef888bc1a31ff8fc2eb7378dd3152534cf243063a3e9fe95d54f75780a595
MD5 32181c38985f79dbc36f7e35cef57999
BLAKE2b-256 1813a07bf5dfba60f49db5e032f86065f1105c637a11f055e90edb964bc9eca9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c384dfe05659916fbeb696395722393a30e37a0ce07ac175062d4e5ac4dd914
MD5 755a1de7486546a3cc215bdb395b6079
BLAKE2b-256 966b9407f5fdde48d94ac729540a133be9b5c1a460b37a45cf36859f9ef1f1ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7a57524c693a87cd12e0336674af2a7d84edc74ecc0249763268bba4beefad9
MD5 a8e4bc23c810a70434f612507f36d2f6
BLAKE2b-256 29ed75be64b517d49e6f519bf20b8df201bb6a6a13369eb2b43c3a3160d35ae7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab2ee13f4d54671e1d463605ef14b0308cbbdf5fb007cfeae7f12a2635c8f2c5
MD5 3027d8eb8812c83987fa8b32dc146722
BLAKE2b-256 b9d8dff7f25f65bc286fcc2ea60ad0931bea1101b8df17e41c4272f339b30bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85702c1c392e3946d8e71da102ae8deb4438c2ada203912cc5717590ec0f4cbc
MD5 6dc3accfa5ba201eb13012a2e3daa8a0
BLAKE2b-256 c221a0b0dff38d1f2343e935ac7298a11712996cb05cef30a3feca36e598c706

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03392250a7c9b2442bb44e39cf8311ebac68908a5facfefa08fc626ce47c0ca6
MD5 98dc81e9449e799502f3c8220c24a371
BLAKE2b-256 1b76358164e9f1b4aa3c934b5f76de7e7297aa31298510a123c0cfeee3f96e9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be5e730821a32407d51169d3a0d2e0da5cd394464f095f6e4fe882a1845b8a77
MD5 fb49dd55f659ed3a9c35dcf654436a6b
BLAKE2b-256 bd46c5455973c96e500e4a00d67c4699bf028954d454ae7d0a960bab87a02677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3abf14a904071b9bbf3a437374b355d64349a729562b0b35c0a298dcd6aa3431
MD5 f1e9ca048ee09a9509dd827294001696
BLAKE2b-256 a63550ec6029c0d1f2b69aa3501880e1d530b07a59a04e504f79e5caf6c29a5b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 11d3ee1a14ebd0a132ca99a76a04b78c5100eaa59674ab2ef59cd1b09db17cc7
MD5 2e17578bf14829b35ae2342cc7e77aca
BLAKE2b-256 6067be330ad0a59a730c1b660077227b7f5fa44872485958353852ef9d71b897

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4b9f8d155c89f9ad3cd7af38ecb2d4bb93fed886f1a0a6aa7769a24c1886662b
MD5 4e6902cea88645b0b660b29669448fd4
BLAKE2b-256 1470c84a57c8714aa476bea999132106046f12228c5a7594a6cd956c9b0efd98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf44bf772a0a09afd74797023eb475b2675f809aa61b3b18226e38587d444d77
MD5 67258263b07bdd558730a047713a83f2
BLAKE2b-256 8e29354d1a215daffed60df9d38f6d0383ba6588ac55d14a330bda6b9b3b365a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa067dd44767f524d8a78f33adc6ff85b858636e75fb0541f43e5201f984d75d
MD5 3f135fdd115e67d752e8ce8d707e4377
BLAKE2b-256 1de4a4e0d6865d2b55bdb40bcb5f2570cf2676f5f0c1076846a7a499c5abb64d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 26648b5171506f0936ad74ed3b49e64ee16d4ae23196231054d037a88c7b0b70
MD5 c2394ef07c17c040af73090206e6d225
BLAKE2b-256 f1acc201417ffafaa87cef79473c42d25539e9fa805aa3ee3e46ee56a2c16e3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70e4355a712cee678c2112bbd737a15c13c0bf0a71eca40f04bd671234663596
MD5 976d3f5902cf7f28011559352e9c712b
BLAKE2b-256 4edd34f6bdea57da560dc93d630c547998bee3cade4c7ef7d6fea1548bb36c4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 970765765e5825c774c1ace331c5877d0da392a27b30260ad7a15db57940a517
MD5 724b0fa34dca119379c7e4aacaef9720
BLAKE2b-256 553b8c1e5011a2bb3470edc89bab80724d36ef48b4a71afc15ff05aad7cadc3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2778c8fac213b882643525216131ac87af20aaf63d989b5626c3f41ce16589e3
MD5 555d9c7331dbd5bd268cc86dda25e544
BLAKE2b-256 1b7162288df1bfcc63c349fbc476ddb0eaa9cc7dbe1830a7bb6a03188ca5fef8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ca83bf8f18604b64a6459bfb493a77095f50390061365417bf7e8fb859b1a1e
MD5 66fe00c842d544f46f4dd8dc9f9200bb
BLAKE2b-256 3726a03b60eb8e706fb839262888c7ad9fe9e6901695c3962fecbcddb2a9c2f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03722b898e78a897272c0b32b83a5a74e0e5f2437a4e2df9085576b9d04b767d
MD5 7d750161d5e9b6b33b2c5a3d7f19a0e4
BLAKE2b-256 fc5592a314e5a8985b25f574d2d81453b59de0039699dd78a8133f465cc77249

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af05dc5615b8b40cf947628403c5de6fc328a924eb975fddbf14f5dddb969444
MD5 dfaea9882593fd21e3fcc55cb145b939
BLAKE2b-256 f8b6395f03da4084d22cb40a635345786f9e233af15cb9b0b63cc054e6623077

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2bce62244a1349ae73ef39f6eeed63d496469415e751c8eee954c68846159787
MD5 5cd30913d5410d0a5b575dca08a7ce93
BLAKE2b-256 32b6ca6a97f04a376f3fc2a7e546008b26c8919ce353650e249ac078d39d9125

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65ed3a2e7e422cbee0a1af042c017fa85d82f3e36795e70373dc0fad343421b1
MD5 062d6bcbe03d3789e7e0bac6ce7f50c8
BLAKE2b-256 fa8a58f275137ea46d771d676e8b31bb3ddfc7abe2790cb249ae0fd5de12e1e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b583d57b9e89ffcf8994bce97ef4cdc689adcc3682166cdaba34e04a884638ba
MD5 848a4be7611f818789f42a80edfc5e98
BLAKE2b-256 adf18ad08c603391547d432f19fef3a2fad37915df901381d38b0f96517780fe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a9407fd51d771b830061114cf560f369ccc0c1ec94a3ef79b777755f02ef5d27
MD5 a14ea153d0ebbf62ccc5fc2bd51687e9
BLAKE2b-256 5c7509dca082590a3302e2acc223859d04c8c5326072599f591db42b679c6e41

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ddb62f2da5a17205c9d8a5a37d4258a901732e529720da488d843668ed49826f
MD5 12c23c203d33789b2ad630f9dc32a1e4
BLAKE2b-256 5cd6c7177d86cc8cac3a95dce48110b6275659237b70c69d45d02087a6c16d45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8122bc980a7bf3a548faca4cf6fa1e602fa065364582de09c03330d6b20f7c31
MD5 cbeade1c4852faddd4471c1a61393127
BLAKE2b-256 68dbe08a3f732d4aa7b0039494b09399331e0ade9975a1d0853deef32e561179

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 651541fbff897d1f6b191148d451a50bdc753698db5ff821d74ac748e93aeeda
MD5 6edf31dc5398dc78f0fe82cb77908358
BLAKE2b-256 ca65914160a93782da3c890374e9ba5ff5ef751fa43a52255b56b7adc5a97dee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6c24e4c0c50ef999e2502b537a0175194057fe853a8e10415ea4cc71871b73a
MD5 730d7ff0a4672698bc392205c11ec9f3
BLAKE2b-256 b4c3dc2f3576cc7f87b4ba7d2070fec71c16a15631bc91c12843ef6559de13f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbcaf0cda07333577ec1202afda0ad1cc157cfcab5322cbc1e36257c550ae3ed
MD5 3dcc2222f71dc2a32b5d36cda686a12f
BLAKE2b-256 1ddcb429dea9bd1291465d3c012896b0f2cb923d12d47a39b225860588d1d4d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bb4a52ce1eb0cb14e8e71745dc753cec774e9a37dc4d6dac455b50f06033a65
MD5 e38fba868cc4e3efe954941ec6f68c03
BLAKE2b-256 6cec1cbf8b653348467e63137e575f6871d1d2c1621e8d9783c18fc08f24f76f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34da671fd86d702c30f25a8342c918f154fbfa6c1a1d206f0041dfb6244ce1a1
MD5 816f9e0a1502e159ce86ab916188286d
BLAKE2b-256 897052aafec0b60e6c8e1e27b75e406ef4a9affd1aa2046155d9d8a8ca899045

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17d7ac58413d158cbbd44f8830c167f916d64ad427086c2663677377b4f4e9e1
MD5 2d0c46779b43e8e3ee680227d1ca8f90
BLAKE2b-256 ef3351e2b9a18f8bc41db7f14efe2daa626d25670dc6d19eee1ef9dd269b0c0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3a2c83164151cc9488ca042233e3cb0f1dc9d75940cfd24a1dc30a7053eaabb
MD5 ccf28bece2a37e7fc20155fbf60e541d
BLAKE2b-256 0c715df9278746fa5e4299de2efe72044de587a8cef010be0b0149fa9e855dad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f04c7a637e1a4a9a30ea190b7b013ebfa02f2424bc6e546fa4d619f6b08bbab7
MD5 e73cdc24a755c6ec4c12c3a365ccaf8b
BLAKE2b-256 de46128153577836e10dbcbfdfd1f14f96af11242d0aaa340edbb68a35425686

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b83009509ed2348ff2f60f8397989b7971897e8a267bec237e055e24c3c7b7dd
MD5 d4446fbd1dd94cf159733f5addeb3d30
BLAKE2b-256 e46901747a21e99eb1a882230277d33de2678f0d3dac3d8773f4dad338a488a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77dbc63162a6a425ea37aef84eb3a892702848bec52781dd80f62971e7730ce6
MD5 d21f7eeb6644b0e6e241126d491bc548
BLAKE2b-256 d4dc71a11e89443cce55064a3ac694343e6fe166b0c981e9ed7cba748d874e2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0588cb1ef005dfab7963910db71494ca9f1ea84d11612a6265a82e1fc30b0430
MD5 017f3472fc5821bba8ac9f21c8997d2b
BLAKE2b-256 a20f9826a258a1813cdb6201f294546785aedd45db18167ab37ad21d9aaebe44

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bbf25401011e4b07d1e64f24d4ab449983ae760a20879bc4a43d82d3cbb82dd0
MD5 feac04d7e2a7423de4c4b1c2e997550e
BLAKE2b-256 353aeeedc80d0f1dfbccf4d90077ac4bb525d0bb945aea72181f0fc07e9804b5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 163c88be5bd65269459da1589c7513fc078d469ebde59f7aac5fad5e42916efb
MD5 4b7dcb664290e23b1528d6cc052509e3
BLAKE2b-256 7d93df68779f1af14ee918b35f51a292db3d85395496e0bf1f2e7b6f7e835136

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fee3155eb8642e01bdc750cc0d950e547217c1881230624d2c1cee19148070fe
MD5 c5dff373df255fd8a945e616f699f306
BLAKE2b-256 b3be56da0f6ecf9970173bbd520898a025ac3ea74cd2f8580002312ee0803dcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e116e8ae91af6c47a28533d18c00c0c6eddea5964b829d792bf834badffe70e5
MD5 8701c9a83dcb2afd1c6200120948b8b5
BLAKE2b-256 b2842c9c58cee053398075119e8f96dbce1acbed44f21c8920de40dc0b12e071

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f7677bf31809f570ba710b821559ed44fd0df8a3444a633f0be9502dd86482aa
MD5 5da1911a4f77e961c4d44cb5970726a6
BLAKE2b-256 664a37faf9154ca8db93a6b8b710b064f18063b8e2e581f3b7117e3bd0fc6b80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6005f51b18c6f76a5edeccd1cb43864b894424e25b47e9fc77d7124663fbd310
MD5 23c93455c6d11a9471f7214f3954745d
BLAKE2b-256 238fe729bf7e13403b5c94b5b7227c55c8fcb6240b6707e7cf47c5d144d409a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd2cbdc79de2bc0bd0218259059d5ffdbd746f0f6788dceaecda1943fc6f6371
MD5 34127c0442f9c7aecd9634bf00861e6c
BLAKE2b-256 9a35c4cc7d7ee0962a9592e4bf2df8d83349591c6e2a4f8bb0aaa3c2d9f9d230

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b1b9d8599b35df9b9d24b24c2446235f62ec49cdffa8862a302d6a89dc0626c
MD5 0e0f88b995d48e5d38ec736ecf55234f
BLAKE2b-256 49be7b0883234528fa4fb7b2d700eb2f515de7acd5428bc82e1252738f1de075

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18eaa762b872969070a82144df2e26052b75ddea72fbf477d0dbae529ca15e5f
MD5 95399e7a0bfd2c6539d75313fd5dece9
BLAKE2b-256 6a22b80eaf391a54ad6ecc5e641adc55898c2649188c65984d88d85e94c3dd04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9b13f0a709b9a87bddd1127bd9adcb81d41bc8c10505fba72c90611cdcb8f9a
MD5 e5b376e58a5ec2f4ff78f8d1f022b0a9
BLAKE2b-256 a5ff0a2a1b3c644ebf930c103e56f17ae04b3a6681ef41ef346d714424e3b28a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2016da7a76a07f6f151d39f90ef3a5ae6ae5f0ac81776481279cfbb0b736d170
MD5 e9975f6b9d815979c60d73182a05a48e
BLAKE2b-256 213df43de5b1398492ba392ecbb6b3adc16b0eefb62a216e4519f6174216304e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c71ea05850051b9e23046a80bc2fa75dfb4d64a9b9bbdf8b0188ebbb87583ee6
MD5 f5d79d71ae35b792e242d4e7499d8ab6
BLAKE2b-256 a57b12aecd6dbf0b64d1fe3f5360783fbcf4593e630231ebc2187122665640c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73e6057baa729cb7b7045e07010ab65ebf9fce7d306228b275ca41cfbe08e37a
MD5 be5834f0872ebad604f455e539318b5f
BLAKE2b-256 fe715faef9cb692a91f6ccef867d43dd52bc7c05e16ac328cc47a645e623f6f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1fb47418eaf5b37a3064f514a74802e12c8ceb21d9993cd0561e98f7a32323b7
MD5 320ee1ca43c8d3d80d01d8dd7f5be7f9
BLAKE2b-256 0799c02ee17251f33f642ed9d831396c0a77b49a7462af8f00de67ceb11a979f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1c420af919eec2cf5bb009d5c677d0770422780d7316e65c77c06b8701ad3bd1
MD5 c505f5a2663504361147b8b4dcfc1d63
BLAKE2b-256 e3cff0145d3558f01dc73c0a9cdad82d7354dab294dd21f787c8d89b1b3ad309

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 22c69cfa4529bfc2e9d3cde85e14453967ce0cfa31e31d9aa442188ccbe1fa32
MD5 24da3ff0bad2c51146db667fc3951963
BLAKE2b-256 4cba0291ecf129a5083c44bc400912db05b8723afcbbbddccc47f1ce0f9b9cc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de5769e5e91bdbd525bf81f42c6224b748e5fdfc87d574a7b642547cfb8cef65
MD5 765a7e5289490d4c8489a5e978abd7c0
BLAKE2b-256 203c0e5ae49bf800f0e17dfbd6a24d048b982dc5c0572995a0072a5e7af34661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a13e378f88fdde6eff0f59d7e61d94d5bbac72ee8ecf9f5d755326023ca7064
MD5 884d5998f75ee9b16d0d44ed58729788
BLAKE2b-256 1a3fb0a8ff04ebea81b45540b573f513b34f98ea1cd80a6459675dff3b750bff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 513b380c19220c0b7dfed2a6dc718b8e8e101f596255285ac73b77a2cfffa11a
MD5 54c478ca06ff7ab65a8839b399b7f3f0
BLAKE2b-256 b6a48f697410456beb41a7c369980c84e0965ab03bf6a1c730969c616a3806bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31f45bc30e2e41d17fd4bfb958406816d9d552959f9f5d519631c6e8062230e1
MD5 13d59a30a72c1a0b96115b2f1978fe2d
BLAKE2b-256 88b83d244b90b8677eaaa91116d71a3f1fa0bd564cb82f2083452fd9675c305e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c78647d8d25568bcd5502557dd1e88e0af74e8ebcdf049ccd9bc3ed29a89cfb
MD5 80c40d2ec6fdfee50a0019aeb3f85da0
BLAKE2b-256 8c4db33831fc0b056cdbcdeb1db9827a745be494b8d86dc6b5d771b8d7567dce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbc1556987c9a0a31c1165ef825be947fc9d923d73e88137f8cc784f20f571b4
MD5 6e76015a09d3739b35fc92797e8105c7
BLAKE2b-256 4ebc58157f93b3331ae0df15a5e0d6be10dca3d2d18eea3e3eb2d714c1e27fd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 132ff8815d8e4c1241b942d96833f14ccf9b479a15d5896b9081a737202fdc11
MD5 4263d35394b239103e7eade24d2ecbef
BLAKE2b-256 52468abe9f208981e1903576e0e56085a199eaac845cef050bbcf547f4c238f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 367c79b981d0ee650d2a066cdc9f319798ae61868cea0dba9ce8f0beb6d9fd35
MD5 8e472d802bd83928f5c6a8f671b0aa5f
BLAKE2b-256 39ae4e440bdb7c9e0b589c67c61396b337082f5109084c44f66b0bb7b0fdb712

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81306f1b8cea42331a46b0fcd632112d061b5035a21a54aa2da3f28653d26d49
MD5 fdfcae3bce23ea572333553041df68b1
BLAKE2b-256 eab6ef5ca5960ed5a873a646dc73a965fd5dd4f205fff4e10fe48baa0764dc6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a66550badf5755f5d61f6783b6162cd9e401b3fa402a970fb88575737dbd869d
MD5 8d9315d8432f48d2fc7a3650bd0aac76
BLAKE2b-256 fa972a0ae581f8bc981fff847b24df0be7ea98619e89dbf6d81700613ea48b55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2537ba2cfb81688f4e8adf330d12ffe6acb349c5bcbd34e5f9a4d407c1f2051
MD5 adf96110321dfe1c770e7886ec790b62
BLAKE2b-256 8f47055c2cb17dc5c1e8237be0f850854b9dfad7f43a4bb877c56c01cf95f748

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0a1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2a8a6134de2f68a738866fb064397346807aa796d5a8a4db9ca00d95ac7e9cf0
MD5 23e7a1be9e50f1fa5bcc584851bd6914
BLAKE2b-256 2a02d216f05c2095b1ea6a73b1667030e977b2ec73c67e1fcfa3b4d9fb35a719

See more details on using hashes here.

Provenance

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