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.2.tar.gz (434.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.2-py3-none-any.whl (121.5 kB view details)

Uploaded Python 3

whenever-0.10.2-cp314-cp314t-win_amd64.whl (565.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

whenever-0.10.2-cp314-cp314t-win32.whl (613.3 kB view details)

Uploaded CPython 3.14tWindows x86

whenever-0.10.2-cp314-cp314t-musllinux_1_2_x86_64.whl (832.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

whenever-0.10.2-cp314-cp314t-musllinux_1_2_i686.whl (935.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.2-cp314-cp314t-musllinux_1_2_aarch64.whl (781.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

whenever-0.10.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

whenever-0.10.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (669.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

whenever-0.10.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (651.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (730.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (603.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

whenever-0.10.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (729.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

whenever-0.10.2-cp314-cp314t-macosx_11_0_arm64.whl (587.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

whenever-0.10.2-cp314-cp314t-macosx_10_12_x86_64.whl (604.3 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

whenever-0.10.2-cp314-cp314-win_amd64.whl (575.2 kB view details)

Uploaded CPython 3.14Windows x86-64

whenever-0.10.2-cp314-cp314-win32.whl (619.8 kB view details)

Uploaded CPython 3.14Windows x86

whenever-0.10.2-cp314-cp314-musllinux_1_2_x86_64.whl (843.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

whenever-0.10.2-cp314-cp314-musllinux_1_2_i686.whl (945.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

whenever-0.10.2-cp314-cp314-musllinux_1_2_aarch64.whl (791.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

whenever-0.10.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

whenever-0.10.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (670.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

whenever-0.10.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (651.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

whenever-0.10.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (730.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

whenever-0.10.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (613.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

whenever-0.10.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (739.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

whenever-0.10.2-cp314-cp314-macosx_11_0_arm64.whl (595.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

whenever-0.10.2-cp314-cp314-macosx_10_12_x86_64.whl (612.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

whenever-0.10.2-cp313-cp313-win_amd64.whl (572.9 kB view details)

Uploaded CPython 3.13Windows x86-64

whenever-0.10.2-cp313-cp313-win32.whl (617.9 kB view details)

Uploaded CPython 3.13Windows x86

whenever-0.10.2-cp313-cp313-musllinux_1_2_x86_64.whl (841.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

whenever-0.10.2-cp313-cp313-musllinux_1_2_i686.whl (942.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

whenever-0.10.2-cp313-cp313-musllinux_1_2_aarch64.whl (789.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

whenever-0.10.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

whenever-0.10.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (669.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

whenever-0.10.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (651.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

whenever-0.10.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (727.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

whenever-0.10.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

whenever-0.10.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (737.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

whenever-0.10.2-cp313-cp313-macosx_11_0_arm64.whl (593.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

whenever-0.10.2-cp313-cp313-macosx_10_12_x86_64.whl (609.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

whenever-0.10.2-cp312-cp312-win_amd64.whl (572.8 kB view details)

Uploaded CPython 3.12Windows x86-64

whenever-0.10.2-cp312-cp312-win32.whl (617.4 kB view details)

Uploaded CPython 3.12Windows x86

whenever-0.10.2-cp312-cp312-musllinux_1_2_x86_64.whl (840.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

whenever-0.10.2-cp312-cp312-musllinux_1_2_i686.whl (942.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

whenever-0.10.2-cp312-cp312-musllinux_1_2_aarch64.whl (789.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

whenever-0.10.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

whenever-0.10.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (669.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

whenever-0.10.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (650.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

whenever-0.10.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (728.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

whenever-0.10.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

whenever-0.10.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (737.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

whenever-0.10.2-cp312-cp312-macosx_11_0_arm64.whl (593.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

whenever-0.10.2-cp312-cp312-macosx_10_12_x86_64.whl (609.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

whenever-0.10.2-cp311-cp311-win_amd64.whl (564.8 kB view details)

Uploaded CPython 3.11Windows x86-64

whenever-0.10.2-cp311-cp311-win32.whl (613.8 kB view details)

Uploaded CPython 3.11Windows x86

whenever-0.10.2-cp311-cp311-musllinux_1_2_x86_64.whl (831.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

whenever-0.10.2-cp311-cp311-musllinux_1_2_i686.whl (935.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

whenever-0.10.2-cp311-cp311-musllinux_1_2_armv7l.whl (995.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

whenever-0.10.2-cp311-cp311-musllinux_1_2_aarch64.whl (780.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

whenever-0.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (618.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

whenever-0.10.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (658.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

whenever-0.10.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (640.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

whenever-0.10.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (719.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

whenever-0.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (603.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

whenever-0.10.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (729.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

whenever-0.10.2-cp311-cp311-macosx_11_0_arm64.whl (585.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

whenever-0.10.2-cp311-cp311-macosx_10_12_x86_64.whl (601.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

whenever-0.10.2-cp310-cp310-win_amd64.whl (565.6 kB view details)

Uploaded CPython 3.10Windows x86-64

whenever-0.10.2-cp310-cp310-win32.whl (614.6 kB view details)

Uploaded CPython 3.10Windows x86

whenever-0.10.2-cp310-cp310-musllinux_1_2_x86_64.whl (831.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

whenever-0.10.2-cp310-cp310-musllinux_1_2_i686.whl (935.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

whenever-0.10.2-cp310-cp310-musllinux_1_2_armv7l.whl (996.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

whenever-0.10.2-cp310-cp310-musllinux_1_2_aarch64.whl (780.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

whenever-0.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

whenever-0.10.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (659.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.10.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (640.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

whenever-0.10.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (719.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

whenever-0.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

whenever-0.10.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (730.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

whenever-0.10.2-cp310-cp310-macosx_11_0_arm64.whl (585.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

whenever-0.10.2-cp310-cp310-macosx_10_12_x86_64.whl (602.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file whenever-0.10.2.tar.gz.

File metadata

  • Download URL: whenever-0.10.2.tar.gz
  • Upload date:
  • Size: 434.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.2.tar.gz
Algorithm Hash digest
SHA256 1487adb419cddf6284c6923a1a342ed9ad28ae82e67d3970e3d23952bdd9e917
MD5 0707c368d3822919baf6f58cdd67e742
BLAKE2b-256 ae6422639d6118d936c26e7e8c38ec35956b8a7bb71a46d206cca86090fcd5af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.2-py3-none-any.whl
  • Upload date:
  • Size: 121.5 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 24ce8abfcc34f0f458b26e4d4ad217c06a38413e8b8864e14cd316a28c93d52f
MD5 29a7b8ee6d4dc78c430d58b468ba192c
BLAKE2b-256 b337d6af7aff02b57ec299e5e480345f41fbfcbd7f19a8f355f6546f77243b9b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e7bb949e3d4e7f9a0c6b73b1222e7121935898acd7f590b2abbe85337650b863
MD5 ffa9dbc4367ff632aac12ebc66b1ee97
BLAKE2b-256 ce4ae2c9332d1e6a7bf05f1b42e64e48c81c0ee13c62f1e725c6d5b1832a62ab

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 84e355a7fed8bda3b4f053ae338fa0f30d6a599bfb65c7b0809792ef68e34cdc
MD5 38ac18a73d725d143a312430e2deca5d
BLAKE2b-256 515a1c91f407d8a6bd0ec50670fed0e6a6880a07bed1b8e77b91b4e25eef0707

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d22f054fadfdcb25371a650ed2782191c969c700b4da1730ba3a78d1957a1cb9
MD5 9fc256825b2f81d87600b1b5ada60c92
BLAKE2b-256 6513875d1f2b22ccee119e95b75995300ec51d8adc360faa149bbb91a30e876f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9748fd4490beb575d50f134256145007d7071ef0353c0ba5ce86cf0f65651927
MD5 aa6ad8530fec9c94ab16849167e896c1
BLAKE2b-256 cf10eea5f19031cacdc026b7ca124a3f7f23025f1ae675a0efc9fdad91a40b20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 501c866c830f39abb9504be3be7bc0d79d73ffae26d89fac938bab8e21541f85
MD5 e21ea3aee430499a1968162e25e991db
BLAKE2b-256 1ee01738af65dfb511b825e8814d22beb400ee3e7e195a5ee65cb857e44649f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4decbed2bc9bad456ae34f043e77a3d85db30062071435852db8ce1ce854d36e
MD5 c848c9d43364248f3ffb36f7234f4a9b
BLAKE2b-256 ac5a4c3a96c64816081a22cb768756992687c734e30d9341e05dc3134e0b755e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d0442e85a412fc3a288d47a2bc4c3ac0395c50e1eb5c18409a319c0b056dca2
MD5 cde90b7d787b1713dd9f7f7b32a565f4
BLAKE2b-256 1af2c9016a1d4f49e5de94760ea60eba08fd3725feb648834c4d19a5e35ae940

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a33e1d51600cecd2b7232b830dbb43fe20ae653ba6682c3e83dc2e824253f6a
MD5 d69497a5e99a1f001254ea4fef5faf55
BLAKE2b-256 cb7b1a0a5e3e54d5fad47617938a5cffbdf8bbc845c3bf86ffcbbc65ad00d2d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29b4f0170a577a50ccaf608d470558d32d816771105f0e6149d4f3ff77b0789b
MD5 f34e7ccab71a7e2c084fec2ae0121b63
BLAKE2b-256 083d920309045546bf7a3045e684725251edfc78ad0d683c5883f059b6456541

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac48d142c9647ce3da8dc0d4310cecc23db1c1a418e87f28c1aa380e6316e2d3
MD5 a2cf5f8c59dade5eb9bdd5faf53ef4a5
BLAKE2b-256 1a2657444048ccdb09da5a5e93d9608a6f18954b9b386001eb882b799d755d90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b453773abeaacc94b8e4869eb770b79355c91c75e855f8cc05a726f30bddf6c8
MD5 e0d5e2358b45e553afe0649cb346c15f
BLAKE2b-256 893700c5a0c1c0dfbaf253014fc049e0bbc9a3c56459f8a6660c805e7016ff80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f9e788302b25cadbdcb98ad9a7580f3be5b6c51e59fc31db8031eb39d2332bd4
MD5 78d1e17ba851862c24396cca8623b238
BLAKE2b-256 461e35a994f26c7b484221516cc828d0bc7fe4416ba072d492b17e41918097e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5b116a29b09a80eba17f06d147f66c68afb197c172cc5d89c2aba23331a69fc
MD5 83de96d7b8826f7ca4d837619380d274
BLAKE2b-256 62fc6a1ac2b72cd5bc93bc1f45bb5212e87be968fb04795f19060c0240ce7d37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c2f9ec4fb367bcd7dd4b281d156d12ddf76741ed67e5e359d764779c0cdb1e8
MD5 96da40732681b90fa57a49e58e8b4467
BLAKE2b-256 b511915546764fa91333f944c3b8436c8e4d764c5320cc9bbf5ccf676794b76b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3fb6b4d84e2c0f21f34518727f3a8fb29cd88ff19b31af6ebc2a428ca03b5652
MD5 48a013e3c811db336bf841efdc244ea6
BLAKE2b-256 687a9a805df0d63a6ae6aa08100e227cfb27c6482988f274b12ddf9113665959

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 619.8 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 16a8096cfe7a7986633a4467c05da9e3d1842339d46a0dfa9d6899abfa831ccb
MD5 4919718aad5467e299bad335d8b4657e
BLAKE2b-256 73433ce03e18313365ae0566f26eeda8de40c8183df801962255d96d38a6cd35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1259043d3bdfc206d7501811a46d64e29fbdc5d7a31d4f8611b15b4027a5177
MD5 15a3e006ba1376658cad46ea0c25c9c1
BLAKE2b-256 cda2a02cfb96c0cb5750972d443a331eceee4cac2255fe1d231372f22cb9ee84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf011d46baab73cd09637fd61e861f689c7b715fca9456000bebc57f727b8c11
MD5 69f77d0245f6069db31767958f90f4a9
BLAKE2b-256 1ce84bc639462734ccfe88e04eef92962c5c97750cb5450581b06e7b0abf1fea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d4b1be317186ff25dd72c407858b65abd76919bffd5353ee08d3866e93a0a35b
MD5 202c5c1b7d550a813c1e46606b69c11c
BLAKE2b-256 b4f4638c12db44eefa68d19854c8de26fdbd18d542fe53f8eea7da251ec3beb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a11ddba26458dc3e2d2b3ee609610f4a836b5258b9468d576cea8c1330d0ece8
MD5 4c3cfb5497ba98ba5ee60f9be69c7c66
BLAKE2b-256 2d1ec6342a583361a40ddc5829decc29f3001c57e90f9a100dbb37fcbb5de0c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cae50fa512df67a8f18347d2b214a020974b2b8eabeac219a7965a5f8145c081
MD5 930b50bf92971b1993bcc2feb808c432
BLAKE2b-256 1ff14985e6601061deb8e0c7e4125df32369a3c4fb252a02cb38c2676c70c4e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04f53f76a78c3d8fc77e1bafdf62f0b74642e88313a71895d3f48dd4c834e0dd
MD5 ac14621911898a60520ce312d1c27589
BLAKE2b-256 58b40bba7b62b6e649f690dd5fcb93131281f0fac3af243142b22858d4ab29d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5637fa1b111b210437097a1d55e1c8cc3a2ab0de31bb45880e509d663c70b62e
MD5 63e2787cdd16c93ce6ff08ef87de7ba4
BLAKE2b-256 987b920b43181b2cca24454681681a4dc54e3e06093c8887754f09bb23b08ca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6b89210ee3d06e3bf154f0b765b86ef1928a016766dd2d430da53a5ce3923f2
MD5 28f9cf5a235971e3b544726a67365222
BLAKE2b-256 1634400f7d25f4d27030922324865190b42a0539ee966a5452897717dd426fc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d549387f9dea521154e4a1f93659b5cf3ed7ad719734e8557eeb28beaac0f4a
MD5 0aa552928cbba5c3d7820d85fe510b0d
BLAKE2b-256 ac6bde6cf9bded1e79f9a260312ce96672e552f19ff5b5189085412af2cef233

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3837a005b854cd84ea85448b99f85a60ea43833ff1fbb06d6a00ffa64e83c06
MD5 908e9ec38be19a6891c2ea48a6e54ecf
BLAKE2b-256 26d06fc43b72337bc5a6e07d5a4af00ea593d3500ca2a546c4b5ac63867aebae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59e6a78e74988d369bb03d042b5c9ac58dae4210b1bbf7454332b90babed357e
MD5 7e7678cddc93c7e40f6807d15d45a2f7
BLAKE2b-256 31a9401e73f78e3faa1b1602cb80f101126d95b67ac19f075512a2efa2419a24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7db7f3e44846611c64266fb7dd9341edbba34f99a4e5ef5e9ecf236857d8b2f
MD5 d65833a188b82a18b4a109e607686ab2
BLAKE2b-256 3ee4d8b9ce384af96f263227db2497659b69672c8fde02d286ac14a38dbe5f82

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a97122ffcca5cd0e5141732b11d0a9691b290f81dddb05c0043393b38796c4cc
MD5 c5af54264a0007154c38bab1cb9c35dc
BLAKE2b-256 267388ea613c348d2cc0f0213e3f3243998350269222cb802fb3df3033217da5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 617.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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f0cb052dcdb8aea506f48293ce2e741af54213d556d8be3a1cc1aa8a5d4a2136
MD5 a946628307d9a15566967e302b5b3e48
BLAKE2b-256 1eb336836bc1b556ac07501559158493d2e015c1deddcbd97f2fc0fb7453f283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0933adea66ecd0261fbfb4da98f80234bca7f85011e32c4772599b9c170fbde
MD5 53bdf42ca57d695a2ab63ac083c7833e
BLAKE2b-256 fd366a53cffd6eb02e0c5ef4001bf0473afb62012075184cc4359989f591bf2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1004e913c5607a38da7a46f78204b4ad77bad8772cf3fe1abf3d26039ee4df14
MD5 eb220eb8d0661ce69596ccd0ba99d3bb
BLAKE2b-256 877fc555b417da2bb40fddaff75924cdc166c1c6c1d308e3368b4811bf845205

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2dca7da5179ebd5874ea571a37010f13bcfeda89317218dfd9ae8e2bbc44c332
MD5 1b1372773cc4f76dbb0363ad85cd81cf
BLAKE2b-256 bd8b13b1f368b15ef5b6e16c5c2653978c4002c11c60158b214aa701563d6f0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11917f515699c38772e442a12e2aab0a9d05b3ac2a356a85a49d140aa086e6e9
MD5 1c708c2114875143f04d8cbe22efd121
BLAKE2b-256 994d006a10c21b2dde18b20ec3c50542c4d2125979cf1b6aab5d4049bef1838a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2c86c53463e89a71582d45199b798b2ed85e697686080d2fb41ff89300c31e3
MD5 39af9019c7ceccd3f6ae7b9da1467a9f
BLAKE2b-256 f918cc20e30a356766df1c7a1c539fe07dae0237dccd60d22b6bebef05ca767d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad07038fd3751c18d453e1567ae40db9de4ad40eaa8c0a1bd1f95898906a8460
MD5 41bcf0d993836e0163e5bd29b417f642
BLAKE2b-256 97ec7aceb0c290a45080d942c40a5f02234f8b8ff1eb8e158b5628e907c3fb2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d13793eaf35d73ca323351ae18ba679c2b78dbc7efbe18877c85e5e8878a772d
MD5 dd192e848fd9865c8f8ea61a79702315
BLAKE2b-256 e50d19f02eaa334507f5cdaae52b2e72748fb0da675a4f43b1b6b3e344f539c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4a2bd199b4c05e5285ceeafcf3d396592e80ea464f0924de4c34a48401cdb502
MD5 15ddbbfefb3cd4416109875fa1c397d4
BLAKE2b-256 f0b276d82679333bd7923ed846972029ab40eeffc3a600c69aa00d9c9957b74a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5618c7a3cff599efa08f2e821385f3968c8ba783526573297da67475ba884a8
MD5 3980f857204e05954138e5f9b36bfd2c
BLAKE2b-256 7877682051d4757e194b69ab2e8f0ae1feb265f6d9efeaa8a2a0e87eb0888a99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5173db9146afa8c16c5c9c453b8e9e0821c075b60d923580df99f40544ef916d
MD5 af3cc312387c2f5647f5a0e6ec65be55
BLAKE2b-256 2382a6000306e73733e64a931af9c549bbbd40025614d4028067484c70947afb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 863076976300d2f0ca0e730aa456d7f4cb80270f5c473b251d5d6e3fe9258bec
MD5 244e51b45229beffd97610ea93148c75
BLAKE2b-256 d1b870cf0c445955f7fa694f859e76618b6001ec3097cb91cac8e4d0cabb7225

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9780ba567b6198cb1e548a9fdb7206709995cc5adb4c47fb9460a67ad0c29ea
MD5 bf124d75134efc9df79013eaee56238e
BLAKE2b-256 3f33f9caada917cf7cba47b71a0e682558027b8e5388c9dee1920f561b21faea

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8b5a107dbc38ee55859419d16d798852bd5524eb62be43373c6f5af0f5f8544e
MD5 8d79a0848051ba5901e90b9fb50352c3
BLAKE2b-256 ef8397692840eca9bf527879fc625c43fcd66203ae5cf33162754f0933fd7f46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 617.4 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 dba7f1c3403047bd608abab564804e2d37ed5d64aebc9a2bffbe8fe1d5e64918
MD5 fe1030908739ae47237fd013f47498cb
BLAKE2b-256 239ce52717f67784e06582f2aa8de42bf5708a327ed79213c0e77d3bebf04049

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b38130344a2122cd2f03da7c3c8d7d7d72eb76549aefcc647dc29e6379ab0a8
MD5 9710e284f964ebba05ecef854afbbc94
BLAKE2b-256 7c19711f9c4104601fe531ff49f93de98000d82214a3c868a1dc34e5e7ed7725

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2118964e6ec78d9794a98573a4e0487e73802b7749b7cfdd4c1deca4a93d6927
MD5 eb6cbf49c2efd0c5693baf7d34f888cb
BLAKE2b-256 b2e1a9f4c56912d3678c2e62bcff1001cbe75dd6018386dca2dd07a245b3554d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7b4613c2e18548e443da8a8b7fd59184c0dcdf39b9675d92c8ea8ebc387699b
MD5 a149cb4fce9c1b7db0e5d376e196e52d
BLAKE2b-256 42c25e0c5f115943bc9e469c7c2ae9a41795b130de352ea0c1b8443569e5d63a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42c0a58877f9ecbac9b3b9af0ef0773c2a4a2f7b9c01a5ea795fde8936fddc3c
MD5 c015ecba670d83117afa4ce395c030d6
BLAKE2b-256 8ef2b7d59539f2a2d102384a38273aaea2ecd73aaaca5bb4f22c8d9c0c8a5ca7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf0366d47f150c7b1dccd88a5da06906ce37a7dd0fd00ad7224ca9d95b238e2a
MD5 82558eeee6bbbf6fc2030aa501b46229
BLAKE2b-256 f3be02052d1dffece19a5362888c24ebacfaa6dbe7ed9f46bd0862e3dddb8475

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09b6a800cda07b97983466f2e97aaaab4b882fb5f848005abfc9150a6bcfa0a3
MD5 2c9bb412dda82da830c6444830b44c8c
BLAKE2b-256 3fbe129a0d0a26b4f13ac6ccca81db0e99d3e941e505da11fe0258d0bb632c3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dee7a0c625bb211de056214a25fa4a79338b3d59013b474150ebc0f81cc593a5
MD5 05f3d18e1413b84c33e840170ee516ce
BLAKE2b-256 2de0c07ac1ff31d338a24c9094586d6b552b34210c22654303a85db5cb30ed05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f839860c344d169d77e5d76514c584c3ea2b745b0a7683be73ec9b91fb86713
MD5 0b53d602abe620f02787088466e895ee
BLAKE2b-256 6a80d84ba14db7f39f1b9b2e4364d13d6c36ebc5c98cb1a71515c2b63da27510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cae95102bcf4fbce486f1268629a8937a1e68195c7310423afa37ba8971450b
MD5 86033d07893c1055cdacae65891b92e0
BLAKE2b-256 40741c944fd5a3221e8eab1bbd2ad20a6ec50b18a4729900484c3b37ea7b12c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3473a4c36e128f999337ae195ab180ebc6fefd5325a8e059cac881b4cc6a61e6
MD5 fd887fa75a8a5db27109bb7a01b4ee1d
BLAKE2b-256 ce1e2bace3598b7206e13dbd5d259a55e80a51612e9e3788c229474c41f605cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d14748c89ed9e4e86ddc3db084972a24e8aaabf2608db8ff5d38e09fd753ef0d
MD5 693b313aea6cb169befb8be828bdc731
BLAKE2b-256 41ba8f46f2facfa2ea42ef5b90662d1cfabbd2a747e081f6f418d91579feb535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a819b9fae1d9d0e63e3651e71f741f083795d40c69a9868da9085edf9e243324
MD5 224ecb238b6cfceddf6fe9d448efefb5
BLAKE2b-256 b7ec34affb8beae9b2540c4b4d27719190acbc150a2c01be0614249f5d7966f1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 06bd8bbb68eaad97ca9939a295af8e5122283adee202791c2411ed696af5a3b9
MD5 4b8f5ea7e75b90172707a588b88a19e0
BLAKE2b-256 4bafe47aef0101261561f23fd8317e063056834e57934cbbb58d684ca2a995bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 613.8 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a5ac028f6492f158704d3f1a7ebc21c457f37b1e4de70a5b5b9de88e1fd9c54b
MD5 cf6bd4b26e77e99ade568f4e7bd7017b
BLAKE2b-256 448c2a27e5165af27e396d504097eea9a5172e3921664630e964c798b06163a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f2905a60bbe2e16b569e03fb7081dc3cd55933642b1b22dbd863a09166a6786
MD5 22a2f56e395532201b965a26f503d90d
BLAKE2b-256 05eac03733c93cdecb904a4698c42217055d5709cc3b29e5c6b21eed4df1797c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ace04c53f82c8a73a0dc67b7e4303ed984bf45ba23cd8509597ac6e2c9a2c97d
MD5 3e96ef28e065d2b9d01f56e03cb3b407
BLAKE2b-256 8ba89639dbed91798fb7d489877b92823f229329ba6f83d9675d874b924a6519

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f6f1563a2fbc1aa2132a3c0925d838946717f2978eecd57eb6f3e3d0f0bf486
MD5 21089dacc2aaa100d44a9993e7ea3e62
BLAKE2b-256 e62f8ced7da2a8cad7c448ae8c78aa9b6394b5378afccfc0e1751269b927d541

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5073b3afce3bb51a592f90217637ac10b8db2c72e18d11451abfbccc5c9c2176
MD5 f07384201d95b881ed8953a0f7e2dc42
BLAKE2b-256 be8de987404080732600ef33bf07036ae889ce1d2004384c49c1a3b49d4d462b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c216270f505cb7c67b7bb160961eef10c5d0308cc9edf68cc45e2503f6f8591a
MD5 afbf4f497aafd336a523381e0c2eab33
BLAKE2b-256 ab0edb005c425834e238546cac374ec1e0a957b47a0e8c6375595b7f574fbfa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7c50702885c405c8e2b615d72d4f187c1f492f0906b71e9d72ec865aaa884fa
MD5 d864d25883f38ee6a864e657b3b3368d
BLAKE2b-256 cb1b706edc3a321e3274007ac17ba95bee3d85fbf417b7754e24f903f050d508

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de1263a546c39ac5d13891588a9fff313293d0e5d0e18d9d5107713c7a2beb5f
MD5 58c5b8335054610cc9aa1a49d6f8db72
BLAKE2b-256 fdb0310a0dee1c77ee15535440caaa1316c634df84fd1524820fdcab9c0d3427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b614cdc0d8495ecca558858cdddd0e14cc6b7ebca12d28f5aeb50cf290919f47
MD5 ee4a69c36732c0f3d72b1483b09789d3
BLAKE2b-256 7a96002e0a062407764e13bd16d9b2ec07ed7990ab2461e8256d643976ef5dc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3bca19aa342ef3a35c4ead5b97cd5a149cf62fcda63776d8c266e285bd8f073
MD5 08eaa848c476eaf46353138e8ed41886
BLAKE2b-256 e327f86149341749507313440b6bc190c53dd732eab36e65b7ccf50620a2a372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 30401c7ea369ac07d9a85cba57fdba022915af925e9d11cd9991c9ce221475e9
MD5 cc3432632873f40a0fabbbad35751f29
BLAKE2b-256 06c3ca2610ec5319d9d5307ddc556601abd5abad0c6c92070f01184fb1d7134b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c20a0e9354e4b74ba4409a663004e6664060f4c04106d516d77ab6b836a37b5
MD5 02f9bbe29c8b5a1eab7bb86b33a2ec81
BLAKE2b-256 3cfd4da29e740300c4c6d0e4ba4a1651d147779c495b0f6f6a1be6596e85950a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b8b15fa04ce12d74ab37ad0b7be6bfff1c4296a4716d0fc03decb33a5ba1663
MD5 e23f475f234fbbe8419961c752e559e5
BLAKE2b-256 d82064b826f1a088b97874a3207e1921355921c0211d61fb9f2ed75909b471bf

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 be408bfe2cd132a79f839771b605ccf122e4a545120581445ea7072cdbbd66ec
MD5 1da3e01e432354ed01479d7f6eac5f0b
BLAKE2b-256 123cde8a1bcd2bef2ece3c6a92de45586c4cb7373bdbcdf848d71a83d99fe797

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 614.6 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8f9a333138099ea812c818ea237b24590b97e7aaba56948302ec237bf1fa6447
MD5 7ad5184f5a37684f3b3f44d0e20cde5d
BLAKE2b-256 83804b5a0030e7972b9d1f2a1927d3e18eaec2492c0151f843cf97178582e3bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 128261864175ceef4f23855fc552c7a749ec7cb7aa87e54a14e4019168be1853
MD5 ae19ad41c182b5cfed9a077081afa166
BLAKE2b-256 130e453d8dea07b9cf34c6c844d90a65318b110e9bb867f2004113e8a6f541f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52bce0d5dbca13f53c09811e69855be0c2f73004f1486762dbff61529e993d17
MD5 6ae7c3d909e0a102ac18555d2ef935e1
BLAKE2b-256 2eb7d0bf0ca23f1932d24ff61312f0696a9931246a1682bee7621d24ba71aacc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ff8e1bce735ca95aed4771a578950ab3e332b6cee7697727abf5535a8bdc5ab3
MD5 808e484ab2a2bbdda6c6144e9d7c49e5
BLAKE2b-256 08b34f10e498c7ca1b999d9c538eec1bfb2d7a748f10e8086f1aa1f7f5757ebd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a2a25e4ff2c8e4fd2b7def39e8ad8606c4b7257112304dd258164e0efd574f9
MD5 8011b4848ad7b868ce265827dbfcf56e
BLAKE2b-256 ea02e3feb8faa266f3cfd8811e23d7ab781128d905fedeead0dddb7422f4b0b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 013d5c237a4788c09d7f6766f3fa05cc3f01b7cad3b726b7922505ddc628c904
MD5 60576f400e016fd4dc64da6f22f94c67
BLAKE2b-256 2015894a05bafb4d388e00185d174e0c614c9229818244a8fb02306d44a20df8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 77d39d26b513d86b9c37309c92aebccc3f0bd3d6c55b6b0bffa262f435bed89e
MD5 0349dccb4132df47d10b1eaf5b61d3d3
BLAKE2b-256 71e89630d27c8bb2ced436b0ccf47811f5b8167c8acc7a4bc914d9511061f09f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10bf56e5bad3d8cb2beb7cf47840172bdb80a6f51da0d03784fb93b93c2d9461
MD5 dc614bd73f107491e6273f221d179a08
BLAKE2b-256 52169f950aae5278a897c4e6f879d4da989b9b89b70774c7927dab723d51d82c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eddbdd5f5e8ceab9d6fa9bfa4202dc011be5ad7fa8559897d7ebf2898382f29e
MD5 5b6fee857d051414374db33e04974262
BLAKE2b-256 28e9196fd9f720c49170ec7c079ff9424be21a45bf6ce89a0e10ebaa4ff5be2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ba240b1d8c8bb8009feb8cc4d5af41aefb643cb797a9bcab598914853c9ccb3
MD5 64e73d89781c7b0b87688498a356ece9
BLAKE2b-256 e7357d819d8bf50921ab4fe419a83c3900254ccbc571a9977b4159d22d81491e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 019b62a222f7ed4b05ba227f0f0e4bc8697e62071b0c6ebe708e96ba837138df
MD5 0a0920f88a0ece437aa0d4d351ed12e5
BLAKE2b-256 b24ef10c93d86d130fc376b0509415a5c72e378015670eea4365111d4cdbd19e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 502ea4a0c8ccbdfc90f3115e65264a9cce44488aac5e6308531ff418c54da1eb
MD5 9915976d116b8db4524403b2c4e89c54
BLAKE2b-256 2e14c2605efb5cf976669d414cb383ebb3fec67066c43e76f034557c2d60c481

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3bc44adf58013b2599ff29332006249bcc9966e1eb25438226857b5b219631e6
MD5 e2c82ce2e7464293de3a449752e938a8
BLAKE2b-256 7fd3d94b5cb869f2f78add71cdafcba597e950f7d7037b414c778acf0a03efa9

See more details on using hashes here.

Provenance

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