Skip to main content

Modern datetime library for Python

Project description

⏰ Whenever

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

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

✨ Until now! ✨

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

Shows a bar chart with benchmark results.

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

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

Why not the standard library?

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

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

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

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

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

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

Why not other libraries?

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

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

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

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

Why use whenever?

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

Quickstart

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

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

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

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

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

# Comparison and equality
>>> now > party_starts
True

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

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

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

Read more in the feature overview or API reference.

Limitations

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

Stability policy

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

License

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

Acknowledgements

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

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

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

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

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

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

whenever-0.10.1.dev0.tar.gz (429.9 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.1.dev0-py3-none-any.whl (119.1 kB view details)

Uploaded Python 3

whenever-0.10.1.dev0-cp314-cp314t-win_amd64.whl (559.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

whenever-0.10.1.dev0-cp314-cp314t-win32.whl (563.1 kB view details)

Uploaded CPython 3.14tWindows x86

whenever-0.10.1.dev0-cp314-cp314t-musllinux_1_2_x86_64.whl (831.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

whenever-0.10.1.dev0-cp314-cp314t-musllinux_1_2_i686.whl (882.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

whenever-0.10.1.dev0-cp314-cp314t-musllinux_1_2_armv7l.whl (929.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.1.dev0-cp314-cp314t-musllinux_1_2_aarch64.whl (774.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

whenever-0.10.1.dev0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (618.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

whenever-0.10.1.dev0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (649.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

whenever-0.10.1.dev0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (637.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.1.dev0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (653.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.1.dev0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (598.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

whenever-0.10.1.dev0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (671.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

whenever-0.10.1.dev0-cp314-cp314t-macosx_11_0_arm64.whl (581.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

whenever-0.10.1.dev0-cp314-cp314t-macosx_10_12_x86_64.whl (600.7 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

whenever-0.10.1.dev0-cp314-cp314-win_amd64.whl (560.6 kB view details)

Uploaded CPython 3.14Windows x86-64

whenever-0.10.1.dev0-cp314-cp314-win32.whl (562.3 kB view details)

Uploaded CPython 3.14Windows x86

whenever-0.10.1.dev0-cp314-cp314-musllinux_1_2_x86_64.whl (831.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

whenever-0.10.1.dev0-cp314-cp314-musllinux_1_2_i686.whl (883.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

whenever-0.10.1.dev0-cp314-cp314-musllinux_1_2_armv7l.whl (929.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

whenever-0.10.1.dev0-cp314-cp314-musllinux_1_2_aarch64.whl (773.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

whenever-0.10.1.dev0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

whenever-0.10.1.dev0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (648.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

whenever-0.10.1.dev0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (636.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

whenever-0.10.1.dev0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (653.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1.dev0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (597.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

whenever-0.10.1.dev0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (671.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

whenever-0.10.1.dev0-cp314-cp314-macosx_11_0_arm64.whl (581.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

whenever-0.10.1.dev0-cp314-cp314-macosx_10_12_x86_64.whl (600.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

whenever-0.10.1.dev0-cp313-cp313-win_amd64.whl (559.6 kB view details)

Uploaded CPython 3.13Windows x86-64

whenever-0.10.1.dev0-cp313-cp313-win32.whl (558.9 kB view details)

Uploaded CPython 3.13Windows x86

whenever-0.10.1.dev0-cp313-cp313-musllinux_1_2_x86_64.whl (829.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

whenever-0.10.1.dev0-cp313-cp313-musllinux_1_2_i686.whl (880.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

whenever-0.10.1.dev0-cp313-cp313-musllinux_1_2_armv7l.whl (927.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

whenever-0.10.1.dev0-cp313-cp313-musllinux_1_2_aarch64.whl (772.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

whenever-0.10.1.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (617.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

whenever-0.10.1.dev0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (647.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

whenever-0.10.1.dev0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (635.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

whenever-0.10.1.dev0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (651.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1.dev0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (596.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

whenever-0.10.1.dev0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (669.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

whenever-0.10.1.dev0-cp313-cp313-macosx_11_0_arm64.whl (579.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

whenever-0.10.1.dev0-cp313-cp313-macosx_10_12_x86_64.whl (600.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

whenever-0.10.1.dev0-cp312-cp312-win_amd64.whl (559.6 kB view details)

Uploaded CPython 3.12Windows x86-64

whenever-0.10.1.dev0-cp312-cp312-win32.whl (558.9 kB view details)

Uploaded CPython 3.12Windows x86

whenever-0.10.1.dev0-cp312-cp312-musllinux_1_2_x86_64.whl (829.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

whenever-0.10.1.dev0-cp312-cp312-musllinux_1_2_i686.whl (880.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

whenever-0.10.1.dev0-cp312-cp312-musllinux_1_2_armv7l.whl (927.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

whenever-0.10.1.dev0-cp312-cp312-musllinux_1_2_aarch64.whl (772.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

whenever-0.10.1.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (617.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

whenever-0.10.1.dev0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (647.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

whenever-0.10.1.dev0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (635.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

whenever-0.10.1.dev0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (651.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (596.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

whenever-0.10.1.dev0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (669.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

whenever-0.10.1.dev0-cp312-cp312-macosx_11_0_arm64.whl (579.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

whenever-0.10.1.dev0-cp312-cp312-macosx_10_12_x86_64.whl (600.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

whenever-0.10.1.dev0-cp311-cp311-win_amd64.whl (558.0 kB view details)

Uploaded CPython 3.11Windows x86-64

whenever-0.10.1.dev0-cp311-cp311-win32.whl (558.7 kB view details)

Uploaded CPython 3.11Windows x86

whenever-0.10.1.dev0-cp311-cp311-musllinux_1_2_x86_64.whl (827.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

whenever-0.10.1.dev0-cp311-cp311-musllinux_1_2_i686.whl (878.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

whenever-0.10.1.dev0-cp311-cp311-musllinux_1_2_armv7l.whl (926.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

whenever-0.10.1.dev0-cp311-cp311-musllinux_1_2_aarch64.whl (772.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

whenever-0.10.1.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (615.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

whenever-0.10.1.dev0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (646.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

whenever-0.10.1.dev0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (634.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

whenever-0.10.1.dev0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (650.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (595.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

whenever-0.10.1.dev0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (668.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

whenever-0.10.1.dev0-cp311-cp311-macosx_11_0_arm64.whl (579.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

whenever-0.10.1.dev0-cp311-cp311-macosx_10_12_x86_64.whl (598.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

whenever-0.10.1.dev0-cp310-cp310-win_amd64.whl (558.0 kB view details)

Uploaded CPython 3.10Windows x86-64

whenever-0.10.1.dev0-cp310-cp310-win32.whl (558.7 kB view details)

Uploaded CPython 3.10Windows x86

whenever-0.10.1.dev0-cp310-cp310-musllinux_1_2_x86_64.whl (827.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

whenever-0.10.1.dev0-cp310-cp310-musllinux_1_2_i686.whl (878.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

whenever-0.10.1.dev0-cp310-cp310-musllinux_1_2_armv7l.whl (926.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

whenever-0.10.1.dev0-cp310-cp310-musllinux_1_2_aarch64.whl (772.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

whenever-0.10.1.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (615.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

whenever-0.10.1.dev0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (646.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.10.1.dev0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (634.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

whenever-0.10.1.dev0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (650.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

whenever-0.10.1.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (595.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

whenever-0.10.1.dev0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (668.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

whenever-0.10.1.dev0-cp310-cp310-macosx_11_0_arm64.whl (579.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

whenever-0.10.1.dev0-cp310-cp310-macosx_10_12_x86_64.whl (598.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for whenever-0.10.1.dev0.tar.gz
Algorithm Hash digest
SHA256 8f64d02c4511721deb31771974e1469e2cecccb2320002d62e3c02291478ffd8
MD5 2414b583aab1ac14e5c2c80edc303854
BLAKE2b-256 89b6df070442e787fab918f928de0d166f3ad6c7a599bc739364441545266ed1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1.dev0-py3-none-any.whl
Algorithm Hash digest
SHA256 8fa415472f8998e566fe93839fa33a3d6421d82bf2b91ff4e013327de3eccdd0
MD5 76f92f416808bd31a6350547e77fba14
BLAKE2b-256 edfa8fe12acf5fcbb014e642fe53ddb1543fac97e0386de8e37d394206750f22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6d3f8865efba9b6fab4f2e81aba5c729d81d8bccc4c9f1f092697a0c8c63d998
MD5 3512b19e1aee5b65243db3c35de618c6
BLAKE2b-256 280afb76031d0d637170f2010f64cd186709f33d0b70b551cc338a4e222a420a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5658d40f39fe7ad5ddc7c8cb726d8963134a2398b1f2a75c1d77b83b24211878
MD5 64be7d5d66d8bf9468207be9ed4c66d5
BLAKE2b-256 2db48a4fcad7aa2c2f2c899859b21d3ae00a0d21e5c0a2661358303113f5c564

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d05ccc25a9b6c07417f226aebf7466bd8f5884a1ade2a498eb3bcbd993a3d2a7
MD5 09f890afd20d14de5b09071ff213043a
BLAKE2b-256 539083158e950b128af07b8f628e5772a5c883f44b4253625e8272a4b1cef64c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 977419a1f32fd6a5594431b6cfa70c4ea209f2c5c196c68295f4f1470a50fb8d
MD5 6091bc2367eee9c79277518c131c1ad7
BLAKE2b-256 2320f08a321a88559385462eb993540a5c855633effa5a95907bc6ded921cd84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 44e19a7dfedbd2da70a2ad07210678391f722872d812ed2d58e8c395b6180a4c
MD5 1cdca90438161a525578da0d7c88ea79
BLAKE2b-256 eb7f7a8ddccb5b7de52f8729019ba9ae8b2dba4167a89140a6c92f3302de95a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8cb608d34685b5699ad05b20e507b71ab331b75705f6323d410322d33638c31
MD5 505b6e2363d96b8fb467aea1e8756fa9
BLAKE2b-256 95733520d19dca676a1224438719d2006b52a0d9f3ab4c0096f5e1650cfce66a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c22a76ff95d3bafc5be6aa3cd003090c5db0caab0e53366b610bde844c079f6
MD5 590e240f1c855250877a83f31818e8af
BLAKE2b-256 ef468d9c3f2152fd6c0f9aa0fb47c5f4f4bffa3d9a9303e6335257c31adc01ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb6807d1100483b3ec64f629b6d3734b129af72611872ed45b4e103f19191a78
MD5 273f0b47f75312291e12fdf51c492c2e
BLAKE2b-256 83a58259bec9f6ca0ae8dc303c9dd6536c872136feb0385976dd24f44776b019

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c9d48f68ba08e89d1fbdce197c7a9304eb4ecb708bf2ae268173044e5722aeb
MD5 0d578f3c4f75e77a3e642552f6bef428
BLAKE2b-256 64b4549a0627b1f0d1e839274958919125dac0ccefcd380a3ca933fda58564c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f58d44fd0480ed59a3f70f280126dd352d30e2c9600aa589c3211ae6c69154f
MD5 419ce91dd61c4cf9ad802d850c813a86
BLAKE2b-256 635a5a9952064868df6418cce21e6b788ef849b07b67ebe31d7c07eebbf27bc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b9eb92f47d83e412a63a8b10226e7f00547a83d0dd27624744693119d8cf2eb
MD5 66a423458985603a35a627e65f8b1e3a
BLAKE2b-256 53e023d123ba097d49f4c6d78e913ecd7e301e0694add8e8df85d28ffcf49424

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a41e5fb0296946d17f3ab9ccf4febe9e1592c8f0451ffe431ea8a25638c65146
MD5 611b1cc537142a96ee0118e55c4dcbf6
BLAKE2b-256 0864eab133a3767bf4e82bc5efda02704ed75c64aeb76c109d3167f142afdab9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78ad8954c8170dd0486044aa3153768f819363278f9fb07cb171ed2c4c4ba2b4
MD5 8c769200430e943d22524d1507716022
BLAKE2b-256 aa527ba858608b9b5aa6dd571fc69a6a5f1b6c7a4cb2c76124632746f7723da9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1470ce9ea7acd0be8ddb690ff7318c55109caae48b90f3a5ab07834702d45e75
MD5 b67a628709c559acb21b3f8e79d7a6b6
BLAKE2b-256 3d2f8fea7c3171f0f6bde0d9338457ba6cd081cd8d9ef4be1dc99b099de4a033

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b12a0c99373f94d1c5cc316e0202d5330ee1b880a486e06f1546ebaa3c53fc5b
MD5 0a23a442d6554b0eb7fc9a1a1791f829
BLAKE2b-256 9a399eeb986a3cb5468680ca069a147b9e55233a5d12e114a799dd29b399c657

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a04b06f3bc8348af85a8b1439de5920b23a06506b220cd42e3e1a30b99a05406
MD5 acfc9b9d0448447af5f2a129992a5aba
BLAKE2b-256 5a7bd531cf30d17d1ef341d6be8a86cc3e698bd54520b6a0a8c794305ea47c62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d88ac21e655610b730e7e666794ee0f0bd2a9a23885716ad32670c89f38f3d0
MD5 1325272a069781fa4855903f23f18edc
BLAKE2b-256 e7810ed1af2798479139337dcc3ea95520fbad1ef87a4e6d33a32839a024c727

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43f0fd9020c56ef605e2757f9ca996fa63075b0bf16e7a83480622e81f46dcb3
MD5 945bf939556db66fa47dcf5f5a74ed88
BLAKE2b-256 ea72076f18e309d19f4841fb50455e4c478580b7905b2a27300e7232466354b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aba1b4ae7b2866e5e8aa766bea69c9582e3d8f501ad4c5a6fea0394e695ca9b7
MD5 b111b571993ac46d5cbcc2d9505a7a29
BLAKE2b-256 577191bc595e3076a6dd95cd8479043eaf02d7ad5f5f94e4e1d5e4c5abcf25d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abcec0cf839ec3f9ee357666a5555f84077fd6e48371122a244c9a26bf117965
MD5 85e710cbfcdaaa02445f2bedb0270460
BLAKE2b-256 4fb6fb759400a3b988e4c3301ef68d322f2537016ee21b565ed29ccb82d779b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 077c3e931c729c65db310432ee2776d85bc731fd15bb03213813f6d798d9a843
MD5 1b86a32c760e1de4708b1cf2f6bad63d
BLAKE2b-256 512dbfd35859954da06b9559c8edb07b848decb8496da1952ca7712ed2f60c60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a9e74aa1eaf054d3730c841e0860075c289faaf3d459997df3aeb8153dc860f
MD5 ed7374bdb249beb440a79ea2a0193c17
BLAKE2b-256 ab81897d155a7844705ddd49acaabcab2039798deab0ed698c0eccac1143416b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 437a106ac22d6b94f0e3a5e87062f5bf9228093297ad3195a36c88dedf589ec6
MD5 6dfe31ff857cbec58214bd12366f6a2d
BLAKE2b-256 67537bab62af31ff8ee80c765e73fef083559feaa283586d48ae7f6d2e2ffc24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 091914cf6de8b2521ba89bae20efaa63c80b20f53d0337db0e703de20068bebc
MD5 f35a3a8edd52dc6cdbcc80b1373b7637
BLAKE2b-256 8243bacde85e74299d1649342de8ad8eef37f086e519c98bf249b44e06754639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 856fb80408af3140d95948b6ef388fbd68a5fe0bd39fd95cdcf78a2b610d9846
MD5 eb3c389708df5c1dca785e6bca609726
BLAKE2b-256 71c673f6bfbc4357d896ce6afd123cd02846ecc025f2615c517b883b51277753

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c67bff844bc743f00dee7d39ba8e9b4019f0ae32d77c7e479a4bff30c0f0994f
MD5 d0c14ea4b9601db098ef38c052315047
BLAKE2b-256 287855fd780772b629bec7f04ff512c0532031c7edb309412d2ff9407da8849b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b57a24cf0b5ff69bd7c37313e5e130114e0c786140fd1757f707adbf57b151da
MD5 db4e0e6790592f93ff6325f36ab6978f
BLAKE2b-256 1ec68eb1b6390260e60c2deb7809dbff4c05e22e0869e69dae9df531c5f62e91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 427e1e2a8d6df81c4a3d5235f4c3eb7afd230cc9676a2aa8755710fd102859a0
MD5 2606ecf31d86d56b79077834fe4f1246
BLAKE2b-256 c41d8ac74a2d61441ff498d6d25d02bffdf708af66d2a3e21183f5ae8c886409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ffe82983530952f1f2cd13558fb3a1b09f06087098d322e761400bd312b79e0f
MD5 c424a2a50de3309b0aa7e332d103d7f1
BLAKE2b-256 5c8fcb16b2b10dfa25ee8197cb8fa934e953293b49ee660c8bd13cb57cecbe92

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 62f518a042000a1b14bf84d070817f56beb53b5e2101d9eed36fff5bda032cc8
MD5 a8437810882e2ecbe1bd666d2f578f55
BLAKE2b-256 724c4878c8b072904a3f3c131d43b43c4f3e71fbbeb041082a8254f57649ec32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96c36bfa91152f1b0753f2190c14e44252b23170fdb68a49a5980be9debe1dca
MD5 1053ac123e66589241c427f023f08ce6
BLAKE2b-256 b61b59851aaf312606c62060e45d407e3252d9fcd9486c1e624594ee0e258922

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f8322fcd7e61bb0fcacc526e0697ad1ee3804d43fb2049c2cabb096fda1c94e
MD5 78dd0e63e1d537f6aa1a31599ae3bd55
BLAKE2b-256 e41d1f26dad7565b6f8863039d443abcb6e256b88127c0084c9ce63a90e423b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51d510bdaad9f40a32ac5afba45332621f4f17a82fa9786af26f5c96ded5c6b3
MD5 418685779ef263557122197f30cb9a78
BLAKE2b-256 a077ee08028b4570385d5546278badd519e88ba634617fac7d22a4e68ae2ab86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 393a31bac47f8a360a384610dced4019afc71f064363ea07c446b45291913497
MD5 04fb9717a64d1d82cf6ff60c270f98d5
BLAKE2b-256 ae7d71def67dfa5e2ee99bb3f9082f463a6d4d49b073b85d4cc6dc4acf3b4a7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0570388dc388d189aeca6617306248e42819c7aa1be4d31c0fa9566e0a484954
MD5 85401ec9c10cf0625c59ce1a1cdca8b3
BLAKE2b-256 2e2e0ebd3e13275c0c5e432a0e9a4db613d0644c0e124eca1821740f32f7eee6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bdfc652c0fd8fcfb4be549732222e20d3937f18601541fd878df53ff63ef2b0b
MD5 99e17f10b23ffccc50de74f81cedb29f
BLAKE2b-256 79c00a8d14fc79aff58db502c636a41679f53ab4c9ce594870d15fc2f5c5227b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64050c50f5bf026847d5f8f49d9b30b29533198ebb702052af11b921e1e24d6b
MD5 f610db3ef0fdff43308b8740525e3ad4
BLAKE2b-256 b7cf2425d613153b874b237caca4a9e763958de249b2ca5e9103404159e9a215

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 400f7453d0af525d25367c4bb57c61a30a512b166d115e545e40e176bd7ebe5e
MD5 6e42dbdddb18898c06d8198fc035e71b
BLAKE2b-256 afa3daa8d2c02742e2076429472459dd75bca1014da1fc31cd2f7b7deaa1e096

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d94e2fc7905d5d240f78be4ca5d6039fd1e843cab20684210bef66e13baf12c3
MD5 a1c3d3a5d8f2c4edd7dc8c520e4b83a1
BLAKE2b-256 14d1c34c7a58ec0775e10081b7a3b20f1e5746000e8c77d39e431cd46faa255a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ab9db17f237be4b883cf59472812e5c21eacead99473367a63f5433d0578b08c
MD5 880243fd9655128638ba0256b84b5539
BLAKE2b-256 396aef4b06ec9f5a86d20169879fe24ef0cc0584b33e40344847d5236c07fd55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbe27c3074c5d382ab0e626fbfa33d788c294e695a0a8a0c77db51aa6fceb8a6
MD5 3d4e4c9b281a288ea999f0307a3a72dc
BLAKE2b-256 a51912ce3760238b38eabe17f1041fae487bd0399d9c659ff3b6b1634489d8ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c2fd7807516c30928d6b3f7cfb1f01104dd95ef800a2d95f9545f9476006564
MD5 d1ec88cc1e4c0b5e59c35a7ac3c25f3d
BLAKE2b-256 2279594058d3362646f84e48f8478882d0623f3a303e26ec9a1fda0375bf6239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cb42544834bfae9f566d76556144df3805cb76487126fd9a1e26302e4517936f
MD5 d55185e6167db3178778e25c052e59b7
BLAKE2b-256 61303e84038ee617d95bfff6e18f32ded8cd6f5eecda59999304d20d96de5ad2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7f8e76f55cbd060f8728c12047f9372359f97919167ee80f816b34c25fb760c3
MD5 cc2d7db36e2a73d89578eefaf2db54df
BLAKE2b-256 30ca79865bffc201147ce61c7b72f1b8e926fa9849c39797c0df5379a5518379

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f911fab7949bd0b53458dbfb7a20ef8b6ae1636fdc9df884dbf48ccae14de2b
MD5 75e7a0422f0b7fc31053fb26b81a8216
BLAKE2b-256 1794e3beebb2dedff23fac12af0c82401405e4a1c9eaf06fcce3659b0e14b626

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c73f328100982a8469cb12f3c7ce3b64f20618c118824ebe49b29af480fb4198
MD5 6fae23041796f142c4f915ed9cadbd4d
BLAKE2b-256 707e0547eed40193f9fadacef2e879d2d35adbf711b1a55f1e1c4b6bb7ae22b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d139092cce52764bac4e6ab33f5acbbff374861e21b2a59fba5806eb67bfc375
MD5 938b8ca2f91d009f58e09572c39a1147
BLAKE2b-256 a0f8968c15a3a27c150c028535d958f5f5689aadfd603490b623755500b69f5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14159b4c18e3890524149fb21fd98a134f8f4eb26fcf8009518978d3857fcdaf
MD5 c1637ac3a0edb7e599db3e0a54d72b8c
BLAKE2b-256 49b2e4595da8d30b5ca96bcd4fbf61845cb317e2340178721caada2ff6924f90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72a0dcdc453cc1d03e3ba8c73fe70e152e6711d57f9ca4aa8909b6bbf70261b1
MD5 7caa5c24b6ce3e744bd53d5f76d26455
BLAKE2b-256 d132991f7c4e17f7807a3b922d502f6ea8c62f11fbc0e756118c870b7fcff224

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cec0af9f05c30ac7e4df8c294ad7d346ec46169d862bc122ffad9ebcf066b4fe
MD5 b62d149cc7eef0f0ea0e1a15c80e5ecb
BLAKE2b-256 20234e6cf06ad654a11de4c9bbde76e4ba44c25bdba91b72497f14c6053bd4c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b82f0a216ea683fa5673dc88ba2d2362b0503d4a9e67dcc6ff06d6503ed4987
MD5 622224f1a98486a0ef28c32a13f78817
BLAKE2b-256 68d3c4043762506ac1aec80f7a71b57cb4c41a07fe2914e8f6cae3abedf143f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ff55c388e1b4679e70b9db2abcdc921534693cb67206f43621c5b15d664e2fb
MD5 7b26a0ce6741ef906c166d598d9bad3f
BLAKE2b-256 9c320f9a6e8c94698522dff29d4654087473f7111e4c7663f3a1f2cd8d230650

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a71f9009bb23ed6e0518b8e224ed9886aed241dcacca3eb607fd4b16ed0932f7
MD5 65eca016066df2119d0fff8a2eaf844e
BLAKE2b-256 b55c04147cd565f411a3d0758a6d6fe7b2262466dea33c3926b372d5db9a93a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e05506b2bb321a83ea56c89c6a5f56fc6e11d5a21f6652143865cc16453a077b
MD5 6fc10f143e62388de220e09483b51c42
BLAKE2b-256 ebb8279694d5bc7efd8357deda9ef50eba5afeea02df321da72b7b3b58da6c67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9026f4a1f689058ca67e294257f95949249ed6f7812787fdcba802f227e17a4a
MD5 a36336de5eb536dbdfcb418ac681b410
BLAKE2b-256 c35b1747be29b5bb2f6036459ec3ddf695ff3c25e123f343c09a2a7ed85b64bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 276468057cb289b0226b1d04063041c2d8faae45ec61d7071f9d26c9820c756e
MD5 cbaccb77b13d964c3ac49e1b960bcaa9
BLAKE2b-256 2259fb921ff9459cc73edd214a8103836b7e068fbb4fe0ba6e62d8d0b9e79173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b7b5f43a9ed34dc6266214eaf90433f0f0021db6f4c2ddec0e7b1c2d0ddd0246
MD5 3773cafdc7e9c87a8afb3e0f6594ca5e
BLAKE2b-256 b5096abbf8e675a60a1178bc5ddebca59a551bd9ee214903a351311520f45d86

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 53b828f9b15eab5eece72120a95993e638179f292d3f80a33bfd170e3cc13180
MD5 d3379c8e3a74281e2bed893e9ff0d41c
BLAKE2b-256 e53e7051cf8f4a4ef93cb7c5357429f619b2a074d3aa38bc1ab4f3e5b091ab58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cef919457856f208272c98d1bab62e932c8dd6aeaf928c3f39b98b8cbc717480
MD5 0cc15a4f78f948a3e4282d5ea2936b69
BLAKE2b-256 84e494692f7cb10dafd4349521c722dfce764eaf91c50823104913f70e61e511

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca64e646b4d2678ba2ae31f8e07088760ebff9b55b9c83d25b291f2d92c69753
MD5 1469540fd53e6072bc36f94b2bfc16d6
BLAKE2b-256 35718345eafca286c00dfd720bddeee3f7e55494e85bfc212991f9c16aaa93b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b12c50adfab04f22b58d7cfbf745b14be34e51c179288d1648fecbf2abb6531a
MD5 ba0ce7a9380a87f1ad2c7d7935fe2e43
BLAKE2b-256 514c54fce815dbc9c01c5fd414e8260c1434f111411fc724d3faa3dc62ca643a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52af4bf9e2232e19fa50f9d36068cb72808417c267665fd97eeb3a7b1ba0d300
MD5 5dbffafd6a1851188c931c1863971c76
BLAKE2b-256 647a6212171f39e2474f3c195a6307317da155bad81fd859699db66eba466386

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f198cd95c956e00bb1f52f5cce94c97a314dfc713431a9bb1f8c5221753ef603
MD5 172b246a93b494f89f40f2e1df96298a
BLAKE2b-256 fff9b36adea227ca97a8921453b6c45b0e7e47a85f0f9abaf444800631cd0f59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54412ab548ba178d0b15a866e192f21a143765ce9211fb32192a596748bcf53b
MD5 bc7372a2e1cc020899742825c5a21c1b
BLAKE2b-256 11436703ac691bae402d81030a72a8663a6fc976170398b0c3937d329e969af8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fae077e699dcc59efb440f456e542b14e31716184224372f6c3ca3710985c4b9
MD5 f25ec343c0a4d9141728104d6e43bf60
BLAKE2b-256 70a00ba985dc1c3a54e43427d6884cda1b48c30f6dc82afc7f109d60054949a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1f238ff49d180fa688ea21e0d8703d2c366742d466f2399a3831e935016ee7d
MD5 510379b3f0623fd37559b3664721e922
BLAKE2b-256 6ecec5a343134798933a57f2a44aaeea08d812d88b4a40a18444a6f23f79d993

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f6a86a87fbd14d7e8465d91557a3686acc4dcb2ecc726b79e27581bbba6adc4
MD5 bbaf7dad9e336576b1be845f9b32d404
BLAKE2b-256 0fc9137425e83192a221654d4159ff3cb022ac856270676a79afbeabb1147a08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 261ec3238b0ffcb6b4465cd579fb3bb7ed923cdc10ceeb33284f5f24a5fdf113
MD5 5b3baba9e9335e6bd2144779e5a8c846
BLAKE2b-256 f7afc4491e14983edcd03af5889a150c8e723d2c1ebe478ac15b037da3c8fa66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc89350593c4fab71fa8732f5b63661f599997ef052caa95313d333330e7aa47
MD5 ce9756d6ba73bb58aec7e0c66008aeb1
BLAKE2b-256 7205cf266b61858b4f27cd74ffa23518fb7160b9cc9bed5bd85b364338936463

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00f190f498b3f6b59c570a6ca29efd7dc5ed4093712084e660b5461af597d177
MD5 8df0b2614e2d083e3d1693f5f4925c92
BLAKE2b-256 41c55b710b73352a615c0d4704ca9f84a980c5fdd049b6c3416facd97f724187

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ae33da14f6bc95c246a2dcd9bb9300f96517ab5d42729c8e1f0149cec29d21d
MD5 dd40afeeb8f25da77e0eb7c209bc7f82
BLAKE2b-256 73b01e018342d8144b1e0f29e46b30f69696eec573ff0f134214f059939a245c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 902c948b9a39618c62757f7ce856ac1a7853adb5628b5eedad99faee7c6488ac
MD5 497cb30c8ceebe1cb124f915eb3fa061
BLAKE2b-256 155a7cd96bdf11741d0b22bd3d5ba3d9e50fa32d646c9c2a9b192b2d9b31607e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ca3fa8c7917a2082432c246af7cf3eb7d424b35f8a04be08c734174f66ec5d4
MD5 bed86a9ba2b84432cf834b426cfa0bea
BLAKE2b-256 ac2d99740baea860dd0075ceab6ba40ea4aeb8d1523a0f97a165da043f9b4bd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 024ecbd146577560a06d421fd9072135564491c0752a6df6261fce22adcafee1
MD5 556d4c0111d0d3da2003ea54ccdc1123
BLAKE2b-256 b4aec329a95339cea1a4e436eef56cbea0b3021f5607c534fb09bd0f35171027

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2243dcda54fa9861eb894a5df9c062cd9b2fba619e93cb3974ea2de276bda611
MD5 8868f0ee6ea37fe2eab97f88ae4af7dc
BLAKE2b-256 2717a6e23ddfaf12bad50724635a232f68f9f45ceae48526d6a8f79b4facd33d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a196378cd98bd949ba345318d7a598b1a441558543011fe2e2580100cc7932b
MD5 9a721181c4fa75997d41ba10e9c9bdf3
BLAKE2b-256 82fed0752e9f581d90e92a541576d9b2f3f1ff4c43e49d3ad6eedfe1fb8761ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1a10606d2999c39dcb0b5b7295abb5df985f1d66f13416ca2000e4ee6538431
MD5 ca103c3f7339f3c1366bcca8bae96231
BLAKE2b-256 5142826d887435d921e90ff1daa21a8fceee09a54dde46d18496c81b30184a50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82fa9e42a58b4e1e867b3a47d61a03a62849e630708f6c8f420db66be559fe2b
MD5 7db8794b03d4afc306d371ee0ac94c30
BLAKE2b-256 52e21eb2123f73681e7c4b44fd3538e43542908374968c83ce0414a0e6181e95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc33ba873c39d9f7d41aff86d4b96040cac1a860f53dd4cfa86bc4481af3388d
MD5 01fb3e7c24e9c7027a94a249a155feee
BLAKE2b-256 f742b33fd7c4affb67b1578f5301f3102d75e082feacdc831b364a0fa99846ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 547b4a3abe482d66c79208548941696d177ba43b51c87cc79940b358c81565ba
MD5 890f902a4ce926dc74b9f57084264aa5
BLAKE2b-256 74797e2d8b6577ffea12a6516c720e0fa1b4f2d906bf424e224f736a6fb9f784

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93de4529da81d0d712039990ff228eb58dd65ccc13fbc3ddd3d0332172391b50
MD5 dc9e22c5880a91b57a53e5d3179ea5e3
BLAKE2b-256 c80a37467e640f3b3789e725b38f11f813766493873e75a8417a86b0a8131d79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26c20e54d0005f6018fa32dd2f0dc66c8d41cc237a0e21b70d8208913337cf1d
MD5 52f1b18d0439b60a17bb8d1ba3063003
BLAKE2b-256 3bd3d52955fa267400a2c8c1ff0746059c9a26a4928132f8dac5ca87259d157e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b489fc6784cba96293f8c7b83b3e819c83206fbc5b7d2d39a1f17fc79704da7
MD5 dbe261fe200a670847680c06f32f474c
BLAKE2b-256 ed26b79e99b2497b4c8ee03579fceb2f9ea51a59b0da86e28daede2f8e57784c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1.dev0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5c894b01080d77eabe55db1e1f96093a8b93cc2ebbc141bc9c6916dd45e6426
MD5 d1356fd7752dc7e421f6923389b31171
BLAKE2b-256 bb96af442283ddf05b51ebdecea227805346836832676adf587b6b7ba240fac6

See more details on using hashes here.

Provenance

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