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

Uploaded Python 3

whenever-0.10.1b1-cp314-cp314t-win_amd64.whl (565.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

whenever-0.10.1b1-cp314-cp314t-win32.whl (613.4 kB view details)

Uploaded CPython 3.14tWindows x86

whenever-0.10.1b1-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.1b1-cp314-cp314t-musllinux_1_2_i686.whl (935.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.1b1-cp314-cp314t-musllinux_1_2_aarch64.whl (781.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

whenever-0.10.1b1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

whenever-0.10.1b1-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.1b1-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.1b1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (730.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.1b1-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.1b1-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.1b1-cp314-cp314t-macosx_11_0_arm64.whl (587.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

whenever-0.10.1b1-cp314-cp314t-macosx_10_12_x86_64.whl (604.7 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

whenever-0.10.1b1-cp314-cp314-win_amd64.whl (575.3 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

whenever-0.10.1b1-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.1b1-cp314-cp314-musllinux_1_2_i686.whl (945.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

whenever-0.10.1b1-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.1b1-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.1b1-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.1b1-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.1b1-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.1b1-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.1b1-cp314-cp314-macosx_11_0_arm64.whl (595.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

whenever-0.10.1b1-cp314-cp314-macosx_10_12_x86_64.whl (612.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

whenever-0.10.1b1-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.1b1-cp313-cp313-musllinux_1_2_i686.whl (942.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

whenever-0.10.1b1-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.1b1-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.1b1-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.1b1-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.1b1-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.1b1-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.1b1-cp313-cp313-macosx_11_0_arm64.whl (593.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

whenever-0.10.1b1-cp313-cp313-macosx_10_12_x86_64.whl (610.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

whenever-0.10.1b1-cp312-cp312-musllinux_1_2_x86_64.whl (841.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

whenever-0.10.1b1-cp312-cp312-musllinux_1_2_aarch64.whl (789.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

whenever-0.10.1b1-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.1b1-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.1b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (650.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

whenever-0.10.1b1-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.1b1-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.1b1-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.1b1-cp312-cp312-macosx_11_0_arm64.whl (593.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

whenever-0.10.1b1-cp312-cp312-macosx_10_12_x86_64.whl (610.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

whenever-0.10.1b1-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.1b1-cp311-cp311-musllinux_1_2_i686.whl (935.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

whenever-0.10.1b1-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.1b1-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.1b1-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.1b1-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.1b1-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.1b1-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.1b1-cp311-cp311-macosx_11_0_arm64.whl (585.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

whenever-0.10.1b1-cp311-cp311-macosx_10_12_x86_64.whl (602.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

whenever-0.10.1b1-cp310-cp310-musllinux_1_2_x86_64.whl (831.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

whenever-0.10.1b1-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.1b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (659.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.10.1b1-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.1b1-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.1b1-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.1b1-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.1b1-cp310-cp310-macosx_11_0_arm64.whl (585.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

whenever-0.10.1b1-cp310-cp310-macosx_10_12_x86_64.whl (602.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: whenever-0.10.1b1.tar.gz
  • Upload date:
  • Size: 434.6 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.1b1.tar.gz
Algorithm Hash digest
SHA256 8dc6ba53cc50821498c5011df37b188735880c083ea2961000692ba1482632d2
MD5 f853a1e8771191a7af221b1834109eb4
BLAKE2b-256 ffef178847f7135272f6a5d86139b6e1bb0ddf8ae8fcdcfad9e5bc3b2a0e1299

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1b1-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.1b1-py3-none-any.whl
Algorithm Hash digest
SHA256 d2e9bd65bef495586f2585095c8dfb67c34e9afc429a130fbb7a50b8aede54d8
MD5 b40b778c3281d3b9c315019b1de2ab26
BLAKE2b-256 7fc33e9d83f076963af2b595d1836befe4f2a0ec76daebfd4c4a05ea43225578

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 651abd1819ecbd86bff25f48e6f1fb51f888389303bbf05afd62f53a8ba18fbb
MD5 b95ded9f07a7a70265fd4fafa1e1562a
BLAKE2b-256 c8c49157aade49fe7a472465780e62e873c94df4e8724de9d05ce64f675dc2ad

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 93d1eefd3edea698dd411a9fa4964652b2006fd63e3975cfcc24b1146465a915
MD5 bf57358cc9b3292a6d9d7e59c9f50cc9
BLAKE2b-256 c4428fdb6f01afaa27db483e6efa9b7f0f39b511aaf886bbcad6326cf787e3bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96a8a5c821551866a141166a86c87e63bd28f58e2ca7930e60caf41ef32e4fa0
MD5 9842ae551cdf305af0d9515b1a03e4d9
BLAKE2b-256 e4928c499f2fbf151d994de16a32fa244cf1cd8cc8bc12db2bd367d3d73ad705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f267fdfae1e189ce925e25894467e4e570f72a5d00a2e50d86a67a839c85ba5c
MD5 67452f86286b0e0c9fa997b4e53fc552
BLAKE2b-256 6e52dff5af976e737c5443a5d4eac1bcb57d70204d3580b29c9a136c05a05ba6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 447b149a128f31c9560f950cfbe649c204b199e0214397eca2f74dd2bb009601
MD5 f0d1725ca79f56b0a6b0b428a292ab88
BLAKE2b-256 7e05fd0a93e832f7f480ab90d82ad0f4225d7a5bb264c045126096f7580621d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a6d855dcdb9a9624fb192fee8a21bb8acd2f0b0a3f4f7355deec34c9ea3cc98
MD5 f73e176323dd3da2e4756d0d241bfa24
BLAKE2b-256 7f21285f0a63c0e1c7e595c9fc0b9a250fb9d8d1bd55dc81f3593e226b7c8aaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b13c170c3ea07620ae635e46ec97418ff1340eb363d1e5a6a5a397f1eb39177
MD5 34772f4b0060e5b69d782390c2b7f3b4
BLAKE2b-256 776bd5be1f4fa2626e4710bc8aba6aa61b65f7148a64a91cb17e77de12d0b68b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6cfdc26ea3a9fc2411a96894f372797e419302cc80beb455f623bf22de048ca9
MD5 a3887e84d5c1059b5a410ca3b632ff14
BLAKE2b-256 cefe4deb20a3d5239715a4d58b9ccca4a3e0a875a5a328efe8ae0b4166452de4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f2a0c6d55eb48338a398f9da8ec9351c546d6740ff95c120ea100ddf11378bc
MD5 b6fc0c747ad5c2c78bcc530ae70d6e6a
BLAKE2b-256 86e4fb47c18c7db9217639c0ddf5ebb4381fa616cbe9a09698338efacda53de3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2bb1b1d9cb19b2f568313071dbf612799e520ca5fe28c782481456619853bc24
MD5 031149ce1c0332b3af73d1d0fb4e9e39
BLAKE2b-256 4c1f0e858e2e5f1ee7dae9354f8180234963331bc7b26a75713e666df34010d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c6d40cd217af88130b5a3a6353b7499c6ab7c03c991f13ad3ac76debabc708b
MD5 86957bd59ba543fabaea8fc50f343eb4
BLAKE2b-256 390501e411e3da3c740c28ca3396bbf668e4940f6551a5a78b62a81b624e700c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 357f21ac81a3d0cf720e698a62d57cc9802f0dc06408f00d997eff8d9f2f0010
MD5 20e7ff5bbe78338e25139b07f4dbb609
BLAKE2b-256 5bd58d13f78a3ca9bb7d2f41b2f1459ea17a88218c77d20394b5eef7bd09aeb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44ddbff73c080e0de8111a958ec63803da1c36bd793457fe008b6122343ca7ae
MD5 d707404bdb8929b66dde97576cf712ae
BLAKE2b-256 e784205ff0ef407760a3035cd9975fd345be1a2deefcc3e980fc27a608771632

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 54a6d3b18c603ed1077b17b1ca84854ea46ffddf90a70d3bc043ac0858e0fdc6
MD5 610e637415168c5c570a5f73d27316c2
BLAKE2b-256 d8c42d20e5d68d19da2be43ee7bc53bd33e2d41146c62d4253367d7b358e60eb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1b1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 575.3 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.1b1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 98d30155a71c1a44da4cbd42f2925cf596939986a48833b1e2257c7a5b241f94
MD5 27f206edfc80fb00627faca4f052f0d7
BLAKE2b-256 b9016cf5d85ef08b5a1dac5f493942d261cdbff5a54fad50d828d255bcb070cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1b1-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.1b1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b8754d8a2cfd01dd67c567c108fac31e16f61297907b83a19b9c7d04db33743e
MD5 cbec509cfe1d122b998577e896d39fd6
BLAKE2b-256 9ae81f8593cc92abf46bc57c63e09b99233eabd6b95c9ea734aeef3b4e948c27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c8d0ce8a6143ab94e3927bb9fa58a5debeed1aa2096e104f27e2243ff2e328f
MD5 d3eb53c9dc31acf585682fbafc04f215
BLAKE2b-256 494023e07b00b0242f32f49be12912b8bd48c711197f530f3f140349b987a727

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70f3d49fb39603310a8acee83b47d9050ce607d3b9841a230b8e2c80defe8131
MD5 541b7512c0ad6dad97df0c515f9e3330
BLAKE2b-256 87344368e3153ada6e7f59eb3e2eefec2dee63d79b1264d9136c2a3ba9be4d21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed131f6b06dae136fc039584dfa9c7b8df89fe1cac792bd5f8fba5d64ffca00c
MD5 3aa989fe229f3ab0e21fd621b3949955
BLAKE2b-256 cc600b38e0abec13d4547af80c5465d2ab41fba03e0b51b8061ae9b54428c62c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9d7cc815f9624e780f2ff6cd7926f62774b3f9e0f2962f45caa1732840bb233
MD5 472803a6bfd82a979c299e14c4fbc6b5
BLAKE2b-256 4b58420f1bb2b982d86f1207c30177af7b06a956ee5b2763f26b235d23d3d016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61490666524a5c91e390cceb391811cc84922e6d8609e144e220bcaedf07cb7f
MD5 ada86ddf2e584cd4987a3dd4aa45ca82
BLAKE2b-256 50c6726cadb4e8daacfe7b46a4e09b0d5de32161545b311c659aad3e54ae6ef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58660963ad0aa054e72752c2a04c75570412399107b2074d9fd72c4648d34572
MD5 4fd8ecb03965c5ffcab724bdf932c448
BLAKE2b-256 2b0af938ccd24c3873341c8091c147c1c36fc3bfbbd2a002f3924985a6f5227b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c91dfb637b93593f6bebcd52d05fe3ffeb17b1a2e8180ce4b934a6ffbe67367
MD5 06cb66e208da5e5a8e6ec7118a1eddd5
BLAKE2b-256 fba39cebcd6c7b9237a7b6501f07fee2c142481b7476330cac04bbf0e56036ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d8c0a4106e0446e66f1ebf5c1378c905b7bc96cd1a933feef71e8bdcedf0ea4
MD5 8e1100819682a60b01676dd8a31aed04
BLAKE2b-256 6f9f3cf9ae2c3e8f75e3e0a68f2590dfd922b573c746dba6c9e4e7f7c488a7e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 851f47d2311ab95ed91910b02f24f38492bdb5622957bdca0319d6b0b60d6a23
MD5 6c6ca454f48668432b1e7489c47615d2
BLAKE2b-256 be745da05ff855036632479797410d0f850acbc3548eab0ea8e7147d1aede215

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 97437889bf137d245a921f6f4a8eacde9182315a5b4c502a5c5315bf0c1f3779
MD5 f027d13efc2fcf0931f0b18cc5b1ab1f
BLAKE2b-256 f565ded8c0f071cad8fd1ec3caed182df1cd1fe118966983df612819677887bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89443b09450061c32f1b74a8713ce5b7fa36f1e21b6403b4c3cf8e8629f4f826
MD5 46bff6bee3fe6dc234d2d8968c7213f7
BLAKE2b-256 609c1e3aeb57094f6e28d7b7742fee9e06029464478bb5be88c98df0ef0b176d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 befc152b452e9ce0434681e5190026ded3d6781afed62375ddc867526b0ee0c7
MD5 4a18cc721a28b019e0eb23ffbf4e0bba
BLAKE2b-256 4c80f916e723d9dc061b356447664f90e3391809ad7b32e182dc2b5e085a8360

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1b1-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.1b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5e682a11bddc0468e5a523b13fd9e1128cb8850ea7a2647ecb5605a4930d3303
MD5 9bf2d4091a333819f3e749bef9c045f5
BLAKE2b-256 6913e863ac8afca6d30bd5b12cf11a83127f6256e7e01acc038e85160b5c7f0d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1b1-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.1b1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c4a62c972f0e92483897099057f3616f9adebda7347f8083eeba9fe09ad40e5d
MD5 3d8ec9fea957d1885cbe2151beb8d330
BLAKE2b-256 c20e914facd8d3b589e9769718c16ecfb1aec1fe241cadb028dc07ebc493b1e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc0c873ab14018b30b75ce039286284d6bc792c1229e27e86f9dec8897dbde41
MD5 f447c397e795851dd1700206104661a1
BLAKE2b-256 65614ece5f2735a5b9858862bfa6a51fca9bf3353f04c5dd64bbcb0422125978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fbc268d42e7b2616fae6c5b3949af0cddfea53d63fd6df419b17f9c749b30f11
MD5 04dd932ae23ccfc2b87ddd799589271e
BLAKE2b-256 9bbf6cd1b1d9af00201fea3a749b3a9dbc461253d6ea62d59bd66fff883b59c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e640a825f2d3f2e8967cb889df37dedea4c8cc27c7c8fc599573fc120e915def
MD5 fe8799e028640bc0579c130e7959b6d9
BLAKE2b-256 2a821578d6c0b90b3ffe769b69d40ad7d582fad43c366f88230e14dc380a33ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 289d8ca5ebfd512a4b98d4b75dd63abd0b1702724df027ba9dbfbb3bdf35937b
MD5 3609f74c8a84c42ddac3f36fe0ba2fd3
BLAKE2b-256 a09f5f6db857e2ab3c20bb44dc758873fa9d7541413b11fda8ae66e8aab4fed1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92274e63371af25e4d72a1521ef425fbfcf4358d3c65739ad9ba28bdc61a82e9
MD5 da61cb6ec61421d0d3d7c8e409505173
BLAKE2b-256 c529c6d4f19b230e657d4a9271f7ef93ad072623003747248aa26014221e4b1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 acf30f5b48a526865b6035d14f8ea5d4e989cd8b8526b2c42d8e02f5e01adc49
MD5 ef87c88c90453e7aa1f11d4cd7eb767a
BLAKE2b-256 cdcfd3c49ef80d22538e6d5c14667783176a0ba65df67d0419169513c646c3de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c10ca53e32dfc1d616c074346472a43d96f3e5d83098038887bc0ab2d515b6e5
MD5 ab93ee5f24162da23fa27a167110d691
BLAKE2b-256 30ffa12ca8edb690799ecdd4de0203481a334df4be26bf64c5ff75976b59fbd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1883fa16d78ac6de9ab382dd1a76bef2c5d11d9c4169f8edcc99e5619bc25ae
MD5 45951e317dcf9fb8362a8e7b9bcd74a2
BLAKE2b-256 d997f31f80c90b1d1ef478294662c6cd0ca8c119a2078b25381e1faefbb4f4c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6d3178614d945fa65671478ee16fd1fff89756d1a739da8a12b3a8075cc1342
MD5 6b98cf0fdeaa44e07b47a8da5fcc7799
BLAKE2b-256 5394f3ea23b86cde44c20a50eae9982b164c04f66e6b48a0b2cc3fcfc67f9c2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b004d6103e829d7399433d4253c443f1eb97b6f2560b147afb73d392ae019bba
MD5 1852bc3356077c491e8a6a6397599dfc
BLAKE2b-256 f3a791f94c625f2a45827030f1b8b4cf98dd00ca87f4e9a4f2c8c982f51d9082

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dcd392a72b948dba5a91f774d7ddf7ff28c967c013c5dd184a29eebee6148c5
MD5 b634e41f5c63afda5189be9cc1fef51c
BLAKE2b-256 57e545310468ba3036519ef5f5d89b30fd2ba5db7114203325f039dec333c462

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7216009bfbbc66fa0b9eca1434c50ff499f898125fe3f534b8d3ae7622d8b610
MD5 20600570916a9ee89df0962c7e389171
BLAKE2b-256 a616532b4f98b754ac85f11ebeec067b79d3c222c3f131066f43cee205b06159

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1b1-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.1b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7d4ba8528956014f9473ddd76b2e9a3e25b835e9322bb6d44cd9b4842ed52555
MD5 02fb52137c442a8b5abffc89acbb221a
BLAKE2b-256 0b2a5ec17c1091da7000477a0d3e1be5dcb1e4c6a7a817dc59257db73e54473b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1b1-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.1b1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d046e080af7aec86648dda374120eb9864c1f327dca8ec3002066ed5326d94b2
MD5 2bd8a0d6de452f0f74193a3f5a95782c
BLAKE2b-256 75a63f203b042eaf6d6ce986b9178ec84752661e11c547eec6b56de8c3b001ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abfb3194bedad14e8d31ee171e2600968befdcab02171685e84d91fd098413fb
MD5 51a33b27f3e281d50b9776d754211697
BLAKE2b-256 2777ec87ee6fff8ef7a0082fec8abf9c63750c6c4fe8bf72d317f4bdf504673d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f3a9d6b1af63409e34517e780daa35bc5bae7c52ce723849c0ef11340966b0a
MD5 508d851de96f60662911b52ee6a5c777
BLAKE2b-256 b1df7f5c590d0c3db0a4d1eb068922072e84f3fb4e4f58c78a56dc316b80e8b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 401b3993b5d9d15d72c8ed186fe826d6a0003748c089bd772f3ca0746a4b7f8f
MD5 d1a8e76db0694cdd46d7cdd77ab06389
BLAKE2b-256 8fcd53af3199e44fe0dee062b13ab2c634f6c57d37085e1784d90b056ff66838

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57825cb236b7cdb91c490c24d02e7a91fe504ba1796b1c283cd2ad00b931dc7f
MD5 2e38ebaf3ce13f6a276e936cb6bc9c2c
BLAKE2b-256 942d8936532ab1940dd8410ed4aece17b6c44b8e1b5d77278948aa45aa299489

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e52d18f5b5024ba3833ccf4f05a0980088c2b6ba5d9e63f34247a91305cf73be
MD5 f77e091b86df537a6f1d53f54ba7fe55
BLAKE2b-256 fda642f893381a90b0390871b0879a261a864cb9f9f02fb74edc7a34c897de9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35e793aec59800ebcfe1eca9dd13ee9378bbefac56af13f221e2aab84a1e40cb
MD5 8ac96f05f4f9afa8c255f0a0aca482f8
BLAKE2b-256 d44507bdd2b9a717d1dadcb496a4cd82bdfc877b59bdefaf9ea0dd8e29be8f46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 859f761138b7c00988c0c39aab518e3e1bd846ca27f4a6f06cb46c45e1590c7a
MD5 56b88a4dedcf51adb45745567a48d5ba
BLAKE2b-256 19642d4fe992b0f9387364c0d90ab9f584f464016e60814f41774dd91324215d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 442cc1b5cd9db87f96864e83cc991f0a8e4312e7b650c93249fa981d0c0a2f0c
MD5 2f361636eeed28d7eba77b739c775476
BLAKE2b-256 8da8be078f3bca65f8f8b3c77d8db138810f220a933d5c7e0816468a9273f173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c8cc722c3a7f846df7fc7d6e12ac27fb68792182d085fa480f7c09db5e99ed9
MD5 330bda0cee99e5457937e8540ec9e341
BLAKE2b-256 784be9911792064eabe5c1ab2bb772e3452080540b9ab39ba05632dcf0bd868d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bce54cf7c81233abc5a15f13ba262caf5cf342d902b969059c180447d36db8f8
MD5 cba69c9e9595b2b492a2a6a4f0543222
BLAKE2b-256 e0940b5457a16eb00420b9a4397f8405205cef353ec656a393e1c7bf62c098dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2695d4e80f8a63f711feb89398ced6173c769921110edfa86aa0c4b01e0b731
MD5 c8f2b1b66dc72e6e2b14924751be9f53
BLAKE2b-256 7afe7c139a31a801eb604eb31e8bb18383c52d4b806490b8b2d7b8ac831c888d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a224f3c867b0880bdc20c856a4814e761a24e1653f3b5df69ab33ef78ffface
MD5 f650ce04cc3068b7ddd8f9da2400f64a
BLAKE2b-256 2695d5a931873af291bb13ce69e71b45acac3f920b81e3cfeba3e59ed18f002c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1b1-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.1b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f9ffd5968b1ef84cf2e91d4e2e4be12c3cf3291743cfb19d50d7550f6f233b8e
MD5 992e0fe3671185adda83b8b9fd4e6bbc
BLAKE2b-256 6fca795691fd729d2688f534c92db26c88181d160a79ba71301b08ba263d3f64

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1b1-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.1b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 59742b9db7ec53f8c3395d80c6580d1d5d347bea001c762ca507e3d2d3406505
MD5 a887fb7eab01478b272b9657738adeae
BLAKE2b-256 f1481330d2669a67f13d07f55a9a0328a35d01ab943151b0ac02a231133d410e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f13bd070a292a6120b196614de9a15149a65985da45443def978b3d28df06488
MD5 ad5f84729aa01de0cf09d206b4492ca1
BLAKE2b-256 5c6b1cd163834d3ffecc7b186fb37d818d45a775b18162cfd15c0607e6dcd113

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd3082c0acf7bda691e7207678e766c5273e4430f2f885ae70da5eed6ac2b0be
MD5 205bd071ace6bc42ffa19c7c6dceb020
BLAKE2b-256 f646c77bfac93c17c1856af79b9ae907d2cdc5845c86e3403fb07a515cbba2ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 76a05c66e93482d2cd8e2f34fbbdb1289fb1309541405cc08aa70850acb1d085
MD5 e347d6662d8f2a40902fa69d6dbfda1e
BLAKE2b-256 4f0623cfc58dff29c3e4766f258a1d87f46b428929c0462bde47ac0ca60d0451

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4eb0680642ffa155b02e21df7b4a520218d79d3e2a3d03ba958614eeeff8efe
MD5 93b13d26f930a82b5ce6b555da49ea22
BLAKE2b-256 435ab66df2930a5e5842da6a42c7cdf31f3229d157e710f61a8e4435d7fe395e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21c99e27dcbad65cf52442406bb03e00319f46dece74d6817175390b92932641
MD5 81c858b2da2c8cd91d0aa60bf29df576
BLAKE2b-256 6bcd5bbddc96b93f7a68667bf7dfa420c5f57ff4c1ecad4ab3fc5173702c8058

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f50016be3b7173414102a9316c801b398dcbb8eb3d4ed6c94b47520bcaa3565
MD5 f2b4247d8321a32d2dbfda197c9f4a8a
BLAKE2b-256 8c6dce5c9bfb8b2b0f16d672d99a27be12762e3538c8883ecc15a8ff3a6e1b51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0802729a6fdf88206a085b6b5833585996351029cff27bfb3368cfbd80558575
MD5 887bf0c73c911f6d8ca0026991de3fed
BLAKE2b-256 dae0e193a729df58e763be626979c0a6e1879082f3435d4562be567209881c34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e5594bb11bdfdbfffae928fbb0054f958c30e21e72d1ec879c0fcfcfef39459
MD5 26266c7fd14d4bfd9b254b097cd2179f
BLAKE2b-256 de795a108643fe18fa021889efaf4e0b8f0e295986dab03aea18c0d150497a3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20e8450ef7f6ee7c4fe121484c5710671db714d832e5f8d310a978ad7917f8de
MD5 e6cdd60c8b83673b4fdade659f1e30f2
BLAKE2b-256 ba9943f673f154be802998674a0f6104b491d51e77e5ee1128c03aa394a439b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 90b6135d92ef2d500a1f3347fbf5afbffc6076616c4206541bba64288c6d168a
MD5 b019fb68858c2fec2dd13c44bdc36591
BLAKE2b-256 124e598256370fd4827665fa355f86600b94359a672a503e5dd1d4cb40fefa20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f8cae9e263271688b2435be1bc680687949e07e179a630df12ecee38725c09a
MD5 1dda6f73395b2eecf5ecd700ebf4d39f
BLAKE2b-256 e9a4e253f125e0418eac38179e989a65a23d97f0a2b145a220d3a8d22db55cc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 255c5e9886946c6ec613259b614cde5a3ab7ad4ed46889d14579b71e659fd7e9
MD5 0e770620242a0e4162d7eebea7d6a074
BLAKE2b-256 c5c2fc6592379c176dcfee94d18843766a7c473af90d483d6c77c43ac0fd2d90

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1b1-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.1b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c1139dc8549ab56f3f9b523697553344b49cb9528b541ecdef66a78d36cc380f
MD5 55013d4ab18fa61c705187cb8e165233
BLAKE2b-256 9d4703c3cd224b28f557fa88af9330a77ecfee1e3e30d9716cdb91d12637f31b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: whenever-0.10.1b1-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.1b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d8770f13dc9b80000649f50ff8b9c70e505f6d98c903c11b7b5fd5ba30f8fef0
MD5 bc584e65bc7d59228129c7803f606f40
BLAKE2b-256 51193250465638a291ac5b89c5b72c41fbacdd2118c421b8e3b083d3ce377638

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bead26de31b3535292bd03f19f75f365b4edcd6621b609847969b65c505f3868
MD5 fd12811674ce4551a6989b1bcb483767
BLAKE2b-256 0f43e3f723d579c0ac6f168d67b1fc969f4ebab024f7a29dfc41212cd854a684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33832a72f1bd9827e61615abeeb63913eb4dba7d0cc26908752b69296eaad14d
MD5 2956d009f17d5b15b3181f06fe481962
BLAKE2b-256 211382b1d158211d330d4dad6aae6a1de574f0d5ff5bc070416d529162f58b36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5df0dce58d0a1464c95f1b923f5b511581d655e60e9997f2f02f00dde24100f4
MD5 ab6bd7c86abb6140529a62b333a515fb
BLAKE2b-256 2d870697ea089856aa9abb0eadb674b3d14e6d52144732829a9e7655fc3cff28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef8a79cfed1f5074915ac2209d02d2f29f6145c6ece9ea66b809d1c17bd34b01
MD5 cffe8937c0971d0eae8b9797618a9b71
BLAKE2b-256 52a097405e37c825957f869544bda0970034a772707883bd2b683f16babcc902

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ce11ea9e630549ac6e8ebf6f31af3613a59bed462bc72edb0463159e59217ca
MD5 980f9b3d1922b8d4115180534c13ff5d
BLAKE2b-256 63c91af92273dd4ab7a4cbc47c27d938bf21ffcc8923ef8d3e34b0b798081826

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6feda3c54fd6abf63a84e9c72b0f3fbce01ba6a7a76d79381be80ef6a43e5d33
MD5 03b82c05c1604666570da0c6463ec6cc
BLAKE2b-256 58144a2c2849bf6df8d8b6b7e51cae55105f4f80fab6b915dbcfd86c6f1dddab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 186dce45fd61b9c73724be8664891862df2adb25a78f33e5bad0c85cd3a941fb
MD5 882e5041a8516ce9941b5cce184c5626
BLAKE2b-256 c45bc06ec1291bc6f6be06bf7f5e9ff08ed36767eb1742fd4155b805a71a733d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c61bba3f6adf46769bae2fec3c3305859065e95cd4ce03501362591cda1a83df
MD5 e7bd1db2ecfe9e6007052a0ed3ff2042
BLAKE2b-256 6bfea355fd9f71e95af28145ff975bc92b2c299cd66d8d3e6fe23ae2afdc10c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf521629b751af39a35d737484e62b6f915de2780d7a19a3e8245aa43795e03f
MD5 59df46220db58330fbd49ddb57c45973
BLAKE2b-256 db9b400391a300c0576d33fbfd1628eaec25b9de285cb431e41f1546e903f9b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ebd4edee7c957cb9f5a973001efe96f4309c67413527844bebd911a7202de4dd
MD5 57aa903f018131aa0fec81398189b415
BLAKE2b-256 a7bed65b9a1bc69035bad856b932c2c76cf16c1ab4818dcd4433256c82b3683e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d579dc9e43dfb47fc1edac6667ac81b31559081c2e3c43082b0d0ff71dfb5b61
MD5 49357ed828d71f7b8b9d71da4ed2a0c1
BLAKE2b-256 fd85d756a810ebe889581a1f5477fae2567d8f98dbbcbe5282bcce85ef039e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.1b1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b8dd4cf875a6b6f9e429980e6ee5e60b2188b225a9461dd65288911118191fe
MD5 6a4e8c7b0a3f6dff632fdfe7862b7c29
BLAKE2b-256 5c1f848d63a6d1a8815a66d7fbe7eef27c19001d079bf190ef5baed023127213

See more details on using hashes here.

Provenance

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