Skip to main content

Modern datetime library for Python

Project description

⏰ Whenever

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

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

✨ Until now! ✨

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

Shows a bar chart with benchmark results.

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

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

Why not the standard library?

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

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

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

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

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

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

Why not other libraries?

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

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

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

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

Why use whenever?

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

Quickstart

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

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

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

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

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

# Comparison and equality
>>> now > party_starts
True

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

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

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

Read more in the feature overview or API reference.

Limitations

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

Versioning and compatibility policy

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

License

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

Acknowledgements

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

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

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

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

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

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

whenever-0.10.0b1.tar.gz (402.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.0b1-py3-none-any.whl (108.7 kB view details)

Uploaded Python 3

whenever-0.10.0b1-cp314-cp314t-win_amd64.whl (644.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

whenever-0.10.0b1-cp314-cp314t-win32.whl (620.9 kB view details)

Uploaded CPython 3.14tWindows x86

whenever-0.10.0b1-cp314-cp314t-musllinux_1_2_x86_64.whl (887.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

whenever-0.10.0b1-cp314-cp314t-musllinux_1_2_i686.whl (932.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

whenever-0.10.0b1-cp314-cp314t-musllinux_1_2_armv7l.whl (976.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.0b1-cp314-cp314t-musllinux_1_2_aarch64.whl (814.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

whenever-0.10.0b1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (672.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

whenever-0.10.0b1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (704.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

whenever-0.10.0b1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (677.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.0b1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (699.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.0b1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (637.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

whenever-0.10.0b1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (723.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

whenever-0.10.0b1-cp314-cp314t-macosx_11_0_arm64.whl (621.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

whenever-0.10.0b1-cp314-cp314t-macosx_10_12_x86_64.whl (653.6 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

whenever-0.10.0b1-cp314-cp314-win_amd64.whl (645.8 kB view details)

Uploaded CPython 3.14Windows x86-64

whenever-0.10.0b1-cp314-cp314-win32.whl (623.2 kB view details)

Uploaded CPython 3.14Windows x86

whenever-0.10.0b1-cp314-cp314-musllinux_1_2_x86_64.whl (888.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

whenever-0.10.0b1-cp314-cp314-musllinux_1_2_i686.whl (936.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

whenever-0.10.0b1-cp314-cp314-musllinux_1_2_armv7l.whl (980.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

whenever-0.10.0b1-cp314-cp314-musllinux_1_2_aarch64.whl (816.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

whenever-0.10.0b1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (674.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

whenever-0.10.0b1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (707.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

whenever-0.10.0b1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (680.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

whenever-0.10.0b1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (704.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0b1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (639.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

whenever-0.10.0b1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (727.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

whenever-0.10.0b1-cp314-cp314-macosx_11_0_arm64.whl (624.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

whenever-0.10.0b1-cp314-cp314-macosx_10_12_x86_64.whl (656.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

whenever-0.10.0b1-cp313-cp313t-win_amd64.whl (640.8 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_x86_64.whl (883.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_i686.whl (929.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_armv7l.whl (974.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_aarch64.whl (813.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (669.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (703.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (675.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (699.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (635.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

whenever-0.10.0b1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (722.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

whenever-0.10.0b1-cp313-cp313t-macosx_11_0_arm64.whl (620.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

whenever-0.10.0b1-cp313-cp313t-macosx_10_12_x86_64.whl (650.9 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

whenever-0.10.0b1-cp313-cp313-win_amd64.whl (643.0 kB view details)

Uploaded CPython 3.13Windows x86-64

whenever-0.10.0b1-cp313-cp313-win32.whl (619.8 kB view details)

Uploaded CPython 3.13Windows x86

whenever-0.10.0b1-cp313-cp313-musllinux_1_2_x86_64.whl (887.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

whenever-0.10.0b1-cp313-cp313-musllinux_1_2_i686.whl (933.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

whenever-0.10.0b1-cp313-cp313-musllinux_1_2_armv7l.whl (977.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

whenever-0.10.0b1-cp313-cp313-musllinux_1_2_aarch64.whl (815.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

whenever-0.10.0b1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (672.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

whenever-0.10.0b1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (705.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

whenever-0.10.0b1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (678.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

whenever-0.10.0b1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (702.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0b1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (638.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

whenever-0.10.0b1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (725.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

whenever-0.10.0b1-cp313-cp313-macosx_11_0_arm64.whl (622.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

whenever-0.10.0b1-cp313-cp313-macosx_10_12_x86_64.whl (654.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

whenever-0.10.0b1-cp312-cp312-win_amd64.whl (643.0 kB view details)

Uploaded CPython 3.12Windows x86-64

whenever-0.10.0b1-cp312-cp312-win32.whl (619.7 kB view details)

Uploaded CPython 3.12Windows x86

whenever-0.10.0b1-cp312-cp312-musllinux_1_2_x86_64.whl (887.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

whenever-0.10.0b1-cp312-cp312-musllinux_1_2_i686.whl (933.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

whenever-0.10.0b1-cp312-cp312-musllinux_1_2_armv7l.whl (977.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

whenever-0.10.0b1-cp312-cp312-musllinux_1_2_aarch64.whl (815.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

whenever-0.10.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (672.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

whenever-0.10.0b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (705.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

whenever-0.10.0b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (678.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

whenever-0.10.0b1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (702.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (638.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

whenever-0.10.0b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (725.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

whenever-0.10.0b1-cp312-cp312-macosx_11_0_arm64.whl (622.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

whenever-0.10.0b1-cp312-cp312-macosx_10_12_x86_64.whl (654.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

whenever-0.10.0b1-cp311-cp311-win_amd64.whl (641.6 kB view details)

Uploaded CPython 3.11Windows x86-64

whenever-0.10.0b1-cp311-cp311-win32.whl (617.1 kB view details)

Uploaded CPython 3.11Windows x86

whenever-0.10.0b1-cp311-cp311-musllinux_1_2_x86_64.whl (885.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

whenever-0.10.0b1-cp311-cp311-musllinux_1_2_i686.whl (930.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

whenever-0.10.0b1-cp311-cp311-musllinux_1_2_armv7l.whl (975.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

whenever-0.10.0b1-cp311-cp311-musllinux_1_2_aarch64.whl (815.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

whenever-0.10.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (671.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

whenever-0.10.0b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (703.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

whenever-0.10.0b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (675.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

whenever-0.10.0b1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (700.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (637.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

whenever-0.10.0b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (723.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

whenever-0.10.0b1-cp311-cp311-macosx_11_0_arm64.whl (621.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

whenever-0.10.0b1-cp311-cp311-macosx_10_12_x86_64.whl (652.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

whenever-0.10.0b1-cp310-cp310-win_amd64.whl (641.6 kB view details)

Uploaded CPython 3.10Windows x86-64

whenever-0.10.0b1-cp310-cp310-win32.whl (617.1 kB view details)

Uploaded CPython 3.10Windows x86

whenever-0.10.0b1-cp310-cp310-musllinux_1_2_x86_64.whl (885.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

whenever-0.10.0b1-cp310-cp310-musllinux_1_2_i686.whl (930.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

whenever-0.10.0b1-cp310-cp310-musllinux_1_2_armv7l.whl (975.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

whenever-0.10.0b1-cp310-cp310-musllinux_1_2_aarch64.whl (815.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

whenever-0.10.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (671.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

whenever-0.10.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (703.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

whenever-0.10.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (675.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

whenever-0.10.0b1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (700.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

whenever-0.10.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (637.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

whenever-0.10.0b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (723.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

whenever-0.10.0b1-cp310-cp310-macosx_11_0_arm64.whl (621.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

whenever-0.10.0b1-cp310-cp310-macosx_10_12_x86_64.whl (652.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b1.tar.gz
Algorithm Hash digest
SHA256 a98622d563cf7688a6cdd93737c3eede2a0c7588bec0bd2a782f262e961b3f2e
MD5 dc928ec1cc36206afc6d9270ba6d07b4
BLAKE2b-256 102e73778a91566c07a4dc60f3a50a3c48de2122cdea23a93123c49a63fb8ed5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-py3-none-any.whl
Algorithm Hash digest
SHA256 5fb0c5c59d7b672b7c098069128405998b500152db08ed5d82025617aedf3300
MD5 682b059df79d2873fd2e4d61b251d45e
BLAKE2b-256 2bc196499f632aa85d29fce58ad8a3aecfbaca13ade818f37d82fdf5a21af8cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a3c0087415ce7dab3a707a3412bbdefe7d3f77d9a912a3146d8a16dd341cd12d
MD5 b87f1e86fc665ff1c3dccaa7c74f9616
BLAKE2b-256 4d2ed15d8ac688876efc0079828a95c3df7f72ab494bf808aae32e3c04f8c55a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 91042929d41204528938dd8b30044affed534b96a110e0ff5e918c67158abc4a
MD5 b76a1dd7c26a6fef97a39f420428b3c4
BLAKE2b-256 c489f83537514a1192116b0d3ed0972e3827f846c1004212e643633127330ecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df680dd8a298e57347a8eafa03593a29e6f7335f89fb27458d395ad816da08ef
MD5 a5a6aefa1d4bab69fcca693ed9545d82
BLAKE2b-256 742f1eceaa6b182a1b794fbb8310b39d21cf777211dcd5c1603c8045633cc828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a50b6df2eb8540c90967fc1ce0f778a368f2efa6a3373ec1bb903b7cc7b49a6
MD5 f6eb6328536693ddbb79cc51afc2bf3c
BLAKE2b-256 2cbbda4dad12ced2ed33f87a016d888fe03214a4124a308306f660fd02b21d43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 18905ef60e955864eabece8f16c9dd2ce0b9ef57be8ea2b5195659b833e2aa7a
MD5 d2a0987eaf99423c6645c0b3d2a50150
BLAKE2b-256 d155ed89423b18f9445fe8ebbd0854fc22cc4b67ed77321d7db860a4e991fd08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db3c00c8fe966a5aed8208c7e83a25a22d4dd9363cfb9620b06a111ee06bf610
MD5 b264ec9e7e4bd08593264c0b5ca955a6
BLAKE2b-256 6da3f1da2611dc5a575cec319bfdbc21b3f272c32c5d3ebe0f79ff048927cedb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fedbbd2c81b0434dc853db87488444bef3f81e8276f0ebe61c4db5c51b065262
MD5 26cf8ffdb72a3bf6ff5747b01b6168e1
BLAKE2b-256 27adb3871b28e7a47cf1f7c385251e0f1eaeb3113bdfc5b2920aaea3bd53d24c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0177abc13ff7f4464068cd5417949eb604f6e404e10229cd11f9a07d0a78534a
MD5 bfdd3223d3e2ef2891d23ceaac67882c
BLAKE2b-256 088b275be3642cab05b4db1e980367d19fd9797d7f2010fc3de96cedb10cbc21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6165d88dd18f64d5d302bd9880930ca28fac432197cc492064ddd4bcdc6b9598
MD5 2c9f4b330b47e09993cb73295c379ed8
BLAKE2b-256 13792a4edcd6d1582bb597babcb44414bd6975822ddd7be85cd852127779c3be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 871595d21b72f5fdd9edc847cf10703d0df294a5fc1e6bb58769b166e133f5aa
MD5 1815489f98b541c3853591460cb02abc
BLAKE2b-256 ed9022e55d1d5a82d1dc1b9302d4f2ff01f8df07179e34e1bc3b6e11bfcbd4b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0d74b49b50a52732c4451092a059059b9734783c38112fe59a86d4be29abf80
MD5 9f32a3380acbb2a25b864ce2735aab81
BLAKE2b-256 10ebbf11be3d9b9783ebda8818596a0923237f5d480480d146cb7a6d2f6a9625

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6f3856e416f88c2b6eb11b7095aacb83f60ef5d59533115bf662dc6c8c52d3a9
MD5 731aa5899af951cd9ec25227b0cbbdf8
BLAKE2b-256 b2ae4deecdeec15fd65ad0730a7903ac85cf3eb37d0251b74fd2040d47e230d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9fe76fa23b4b322b2d3591af63150ec8b9ea289738f01148fca02f89dde64dd
MD5 ed17a91d8aa0d21018857b69eb4a9945
BLAKE2b-256 5ee448817fcff5c5efaccdabe3d9b60ea8121e0c29ef71d6c7e7e085190e3d8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f33cee2fa737d8fb2dc62e71df06692cc5a0004128e4cbe0edf48744658536c3
MD5 6c5d1616c759c9170a1af0f23f060f39
BLAKE2b-256 b7123ec726a3ee3b1ded9057cc5e1d8dc4987dfd6f513113d2d2a09a6b8c96ba

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b02f109dcc0b8a6f2273a8014bd3dbe3a772f675be58123f31803a9753c7fa26
MD5 f6f555ad3b512d40599517e80e6e5d6c
BLAKE2b-256 cab3cf5de7f4790a5c046e265c41603d988eb429e26ff7df6205cd348077c1e3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 373cae0e1b9ef5c07e7603725e3545f29399f687e4c5cd996eddad8edb1d3aa4
MD5 eacb76e064660ae55a5a36646f90d7dd
BLAKE2b-256 6aef3c91e454d14c0cf39a828b06266c79af5e4f8018be65fc3d811c499a0b9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9ca1bb43d56a9a17fadbfe6d76bc66aef4f12e88a5ce1dcde3f30335ee13d48
MD5 d1fb85432339aba4ffd6f0af20067cd7
BLAKE2b-256 605e3010e5c03dd0d794ac5313478225fe754707c9a2fbb84b7cb6ed1620b6d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5b3933696d126862d2cde97dea361ccd237bcc705f9f24c3a66e4ab90d91304
MD5 7341cb60c237bdd1ad7bc55200ba5004
BLAKE2b-256 77dd529c1af87f3bd5205e2de9abb236cac793120f5b298b9307881f6ab786f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b9f975bfc14398645a156c0175845ca514286bb98298086d0e214f2dbd1acc9
MD5 3757ab946396a705f237a2f409aa72bb
BLAKE2b-256 4acaa1f33cad31b47eccf5eee8c40a519f17c7854adc1c1165a1340b2a59d639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac507a076e0c2b3ddd8807c76fe1796dd028704866c41421109c81c6cbbd0787
MD5 79268fb89794e5d7c1c2d966a29ee460
BLAKE2b-256 94567d89cd44f0ef1a4787069fd2230389fee9b3b1f7f364222f9ad8d263711f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f34e926abdaf2c4686cdc1416dc3700836b7ad443813157f95b0a42a00972a1d
MD5 4eeb66d2dd6ffa18022ca3cb21413e16
BLAKE2b-256 2213a3f56d67d5435de29654b9237f5b64001dbfab7235dd914d3fd15168d094

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b9800c8eaa616ff42d6e66eec39e9b63e3e19ef93fce8e461fedbadf854d009
MD5 98afc75b14b9bf54b177da66f9890f88
BLAKE2b-256 97fbcd8df0572ea94c058ca43938c592232335bdedc16df3fc37dc7631187f38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d816f8ed1d5c2fc3b86061552246dd70cf9c70b86e33c6687e13feb2304af93c
MD5 e42f1ac09b8a425f24be51f3d1d9b6c0
BLAKE2b-256 f265467923e6727443f2a3e51e5f8f15e30d0cab8312254eb9dcb408de680add

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b16b2a0ad5af441669aee1dfc9310de21a7d5715d4fbdd1f7e6a4389416180ba
MD5 564756b7b82a44223da4554ade218986
BLAKE2b-256 987782d4b1e2c638f6b162dd653f4bb9a9b1f58d5bcb3275d93d660acfde06de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2b19a790b575f38c6c7ff1576ef5f24c17d510e18379bf1e4c4fd5afc3ce842
MD5 bd6acd1f5218d89dd5c1cb8538ee4bd3
BLAKE2b-256 0016d56ddc2d95825321bf9638ae1890057d61e7c7bd04b3f93b89f2683b106b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1cb52604cb0644ef197c97e7bb65ec989ce6387dc4653de7a8a2660861e1382a
MD5 9dcf960d572fce6cb8d0ea3bb6cc021b
BLAKE2b-256 de52783f1f4e04fa1ca8cf5453952d253b4ea03521ef45c77e209a2663e05372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a98c4e8dca6b4912c9d6bd0cddc9d55e2cfb3ac87ab2d8a6fa677c07ccc8629
MD5 11a6ec33b2a8837b018d4549836678fb
BLAKE2b-256 bedcb4cb28d5d301cc6750ebb2fa64c03319ca40ee7c92f22a401cde9cd01231

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 559cb2c45fedbb0db35db917873720716c6af7823c0c1dfc9cc6d6f8847e5ad5
MD5 81a7d3337bce55650d7e2ce9c98829d0
BLAKE2b-256 d1aba54e091780506f64e11a66e0e01d034395f633d89fde4c7ea9716c78080b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 442171f7314cb191e3661bfdcd4f83b9afcf54e71f988a823dbc8e2c759c7e05
MD5 c3d1b1aa84ca0a41788da38dcb539b33
BLAKE2b-256 a326d201f233bbdfd2b60c03d7d9f775b641bc6ece2aef80cddac8526518441c

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-win_amd64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-win32.whl.

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 f71e41be207c56a35b036b6c19e9c29e9012d987bbe21553696a6011cce5246f
MD5 249b2c643cadd169be4917e2f1712d12
BLAKE2b-256 4c06cb1c4de8d70948a7dab779268ed6ff76cb0e86b3604746babe0b7a8e72bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-win32.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80c8cbc79d7ff4750dd46eef436d3c0333bdbda777e9acad3ededbd64105bedb
MD5 59e462313f0ca39028473c60b10cb97e
BLAKE2b-256 e33cba7c5ddb9a4f513f28ee3ee843de9965cf6c85585674a9acba4b306244b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 245f13ef675006d400b159d9859ab4df6a09dda3efc089e6f1193c6292c2b30e
MD5 110eddacd3ce8c22cb2b4573012435e9
BLAKE2b-256 c47879ba9820ab1e92ac53adbe3fb02d06dffde2d1f6933a13e3f4436b13b57d

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ead9049dcbfa00479980ef0e09cdd8c93fc2c3ca6da9c272263eec0026be2f5a
MD5 1948cb9ef5107e5f27c30054529223c5
BLAKE2b-256 8b92f4ad4a3aaeb13cc2eecc2e6bef52017f3c916e2e35072c81d9569e034c97

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d29b46c3a602caeebfba95a044c740899a2fb1aa909a0aef93fa1d1362e6299
MD5 6d0db1cad52011630a579b38e65c3ad2
BLAKE2b-256 674067b25cc348710f884614abd0fbd27284e74d4d53c083cac670fa565d88f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f1cbde54aca62c309856560c7b0af85993f1310c61aacaadea9df613d6c910c
MD5 a0b55b1e36140674efc403eedbcba6bf
BLAKE2b-256 e376925c1b9fbab3553569207f492a21b9ac2b4ba54f7ecf1d2b9165b0366057

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 398111b7151fc9d0680a7dd2ba5726d243a0c0d47a14f3f4274ec3d611bf1e1e
MD5 5ff70cefccb5488a24134293456845d3
BLAKE2b-256 5e8e6dbc1fa3bf795350b8098879823e43bfc5f2a00d855cda33b41659440769

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69cbffef48f1d79c60150bca3397817313ed03684cb2daf6b646249192e76d42
MD5 3af97dc377f5e830adbd74cd98f1c02d
BLAKE2b-256 e49a6645a31ab38c6ad716dd6f83de150549b7ec802c27e674920329f50a02e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 185e1fd12c40eb341a787f965f86aca07b57618ddf67efe63c30d2b85654e562
MD5 95a6d33ad50ac691dfbd3a10859a9289
BLAKE2b-256 6250f2dc6362cf674682c23d089e15520df9944e80945125340c4fdcb16b2fb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 438f8158c2eff27252ea2e28091715c33aa573365561a7ee7e0c866a926ed67e
MD5 249e4108237eb0ea9e52fc25dd47db58
BLAKE2b-256 ae6e2c18437483f27a810e4de6246ed011fa86b7f76d8cace2a6c4a80fcbe4e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 01bbf244469f1a34cebb7d0486f6867cae63cc4dfc7d95dc7b37f1b9ee99f867
MD5 54888bd5f1d7e145443e52fe82257156
BLAKE2b-256 8ac90ebd045eca4b873d339d10dd733776d3d7cecb90610c61a53fcd61410ef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65fb6c6c35393b485aa75e7175a043d3b1d0f177c8a8a2fa0374f045e92fc1dc
MD5 5aa988323650b811724d3ba7e1e35b89
BLAKE2b-256 8d0dce6359d3d7c6346b499d6b2b6b85ba795c29f700a2b58705fbb58d902207

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6485f0c1236790a0437027529d59c9cb0cefd5bb18135bbcd67ebfc5aa68bdf
MD5 741a81af084765caa2c019f2a012e7da
BLAKE2b-256 83687721585ae26ba46e1f957dbd4183bea241de115b9ba3e770921967ae22a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for whenever-0.10.0b1-cp313-cp313t-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on ariebovenberg/whenever

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whenever-0.10.0b1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9fbe700755ded320220daad799bb29c0bd67663469412ff36510d0b3b5aa771b
MD5 d6a64e2fc45db853353c4778a22830f6
BLAKE2b-256 dfdfed412bfc2fa046857ac3068f25251b0793b270474bba097479cb9fed3a92

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9e03bb8abef556a408bff1dfbbfbb07557551cbb53bd489c0e66b6f610f80665
MD5 0e3d0401145f41af8e798c1422e9e4eb
BLAKE2b-256 770b993d3dc387e74da6e240ed29e1acefdc5d0295158ffef45e4ee1a403d340

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9529cf74e9e9545f227251f0471dc5ad253855f4b3db104c0f406d14c7f8dbc
MD5 2744ae12c206264c4fe85eecae492943
BLAKE2b-256 365ba317b4f3e7b36162d0445bfef444c33168a98edf3a17c836db3f927337da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a48a498b7a5f8cd93c5ddc41d2cb220daba6acc19f6b5e514e3b3ea07faaed7
MD5 9563a094f3ccd621d395140887a450e7
BLAKE2b-256 0d58371c5947d79da44fa36cc01eba5c977216b0529cf6107779e854f961c4f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1405cbbbfcc48fc55941e61b96c26a53b14b091443196fff71f0a04bbe6ba0e1
MD5 43c50279dda821d2a0f6792efb2bdb3f
BLAKE2b-256 cf69642591c28d20ceafde8d55e32d1b62250aa41710773c5e180b271c6228e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c5e79a75977abd2c4f722cb031bc9b82ffd9756fe79f4c439062b2ba5edc18a
MD5 4d12c618bd2e709ad1c4ff7fb646e583
BLAKE2b-256 56947e797eadfc183b4c43c68c78b926a8276b2cf1f4a9e090542fd31f05079a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b539d8db64da98627e50291c5fecb91fc154ea538a7f38c104aa6504589c8181
MD5 bc47844888224c283dd54c0e520d0b73
BLAKE2b-256 ac1af4d43a673e0ff25309c12af05695a1702ae69b769350d430d00c4b6f5b5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc6dfcdde5135fe75414148ed4254c6ea9c6bd4b2a7d5ce96395e08d0a1057e3
MD5 af3bb13f29ebe2877c66d4db5f180be7
BLAKE2b-256 736fde4830fbfb4e916629e4046f70a8dcce225addeb250e45b00c8d64225aef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c4587eab5a2b0a08896a5c0e1a6e3b1b0f40a50bf95e89591b00135b38ae39e8
MD5 113db0fe237db985d083dca6f1b4d5c8
BLAKE2b-256 b9a47d7dba86dc0e09c45eacb8f53329d31398fe39534125bda04f2231796b0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6976a605cd436651f4c67f0f9bd32cc5c4b1fb5c1eead48cdb156cbcd3905e71
MD5 cac13a92b26c81909a19192dc368352f
BLAKE2b-256 1dbc8e80caea60f39151af7c896f090b65b25c1db5d8c0a320ea4124f17e969e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f574a7d70921934a6c518e2e913e560f5b957e8887f9119a741dabfb8309f14
MD5 0ecedd1f052d09dddced5d99a095da26
BLAKE2b-256 bab6954a8db6b98b7513f24ca62f0f3721edf75d2fe9fb0170642a8be162d104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ddb383a96784ebd8df148cf9460a70d2a57cdafb41fa229b01b517e24b01d35e
MD5 f64fd9df68594da9c876fbda05143433
BLAKE2b-256 bbbd8e765f830e96fcd94bd983d5229ba8402fdd82f061ad7b150cfb7dcb0e3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b62ec850162f5ead32b8b4cf4767eaa00a16b63504c6846e8dc16bb51b54b065
MD5 f0d1439348e90f6474a28c2b23900523
BLAKE2b-256 3adf8f0ad5d7468b142a20c5580b59c05a56a3b6b5f068defdb2f963cc2899ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88e4aa66e6101085c91adb8b55abce2fd668735b529ecb015af789e0847a6e1f
MD5 683bcc54ea6838781f1f311dfac372bd
BLAKE2b-256 8502a9c20c260357e368c553ac950dcd52b90b3e187cd52ac4943162e503f610

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8312e5a4dd05aed910540b7edee4daccc648063fd3951e5c8a3fbe238c765f59
MD5 95beb06522e500b6af9a42d0b85e3848
BLAKE2b-256 97f69846b6eb5be3c3f60db15cfc6e2516a266602c3f4a4722507628b8edef0f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9e203c81c90e0fdc1eaf08cc6ba6b4b989643ac382152f5f19de6225b62f03de
MD5 703e5f48314d5c12a91a8ece72e7778d
BLAKE2b-256 9a89cf68b9cfebda46f8f62bc562196319b11afefaf32638efe014aafbe11e00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6edb03d25c846eb9f80c4f159df8294e487a97b277528df0ec339956bf16731d
MD5 11ff959a037e84263762f8bbec53e920
BLAKE2b-256 e9856d051af0e934092573c3c905f3bf846e3dd7be2dbcb631d8c69ccdf79201

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36c23566ceb2d329524a8d5295061f76f75f93a320b8f3fc6b0203458a3dc643
MD5 b32d5464a3eb157e1b1b33601b7246a8
BLAKE2b-256 4c845eb951d76b627b35e4a404373e4acc0b1905ec6d86676c3b999bb874d62f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9c228eebeff485727abeae7b11e845289b2f9054774452ceef750660db051e72
MD5 383f0fba5a2728cd30711ac29e779cb3
BLAKE2b-256 9487a5dba58f456535afda14f2d3427dc6573fad6ce40f1e95e8dc08f3eb88b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb183374cd5aea8274b44b703fb7416b09f42a380ed8a5a054559a0b6860e0a2
MD5 efb446a88727cf8c136f963953b8bb98
BLAKE2b-256 a7fd9b379a30c4c73c291c71aa79e0693bdfcfa7563d58d9250d5e94b03ef78e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8635b1be34378ff8495434560fbadc7103f5de0f87a193e33d20998bfb90043b
MD5 aa883b78c501aa902d5b95b6439d6c47
BLAKE2b-256 e1dc14183d4afa374d54d6207407640591aeee391f5a2b87667e4ac8a9acf54f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c0db5da8e5c47e88d8ae1d08c306c17041b2e623cda1419c6c0798ce4e41b5e
MD5 fe372359460affa1b3b05bc30f452fd5
BLAKE2b-256 3aec4abe94b5e1a91d3bf07957566e170a79bef5bfe7464f383de19e3f9de79c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa33877f324163b437aefc68a558f1e93788895be6ad049b45cd63c3aaa9344a
MD5 cda9c996c0face896af03a9ce0c0d8c5
BLAKE2b-256 0e5ee022cd9069bb1b8e264cfe92e7f64b47bf86ac4ec1fbdceb5446fb7c3ae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e78158e3b0e200fccbc489a20cd5e51c0503c34a0090915490348025cd1e9641
MD5 799654a7c2956fbd205ba66fdb8eb33b
BLAKE2b-256 daa48785bc95c30e22b68c1ea863496265e0df9820019dc1866b432649ac230c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30c210d07a4ceb09af2b0aa08886f4a775031ca38ae3908395d02551327ff810
MD5 6791ec6dbe8b60150f663e0bbeae967d
BLAKE2b-256 00f047102cb65735fa216d340cf31744f56acc0249f7f9e7956fbc7f2c6dea82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dce2512c540dd10b59e2574d33039a8e00a04475a5d0e850e0c8a0d88640b84c
MD5 c5d23a915076495200b6a237285328b7
BLAKE2b-256 d8f162b8acf34d55436f84afa8428d0ba2ee2e68959d8806946a3aca48c508fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b59291da1dabb9a6d7bff7d2268d41b9c38b7803bc8c3185f1581429bd9f764
MD5 7f4173f0cc46789e8c6994eeab8296f1
BLAKE2b-256 131f998f75ad5c7882205ae21499d45c114d4aabf1f7394d5d8657ca36906cd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79387d09c45a168a96e47960c055e09decbee908d670f04d64ba412e3ae57319
MD5 7e8b540aeabf5538254a54807db1aa85
BLAKE2b-256 de4826c760adcb07c7cbe04a108b92b35d216e8d010274b76ff06e404a90c335

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 03f278374123387738cfd1af787748721bd2c67d880229d192b845092da5ca95
MD5 247b427bb807aabbf53f951680b993f4
BLAKE2b-256 fc977801e456f54d38852adbaf37f21d1d0746e19e8bc5c110259ddfa26be5ae

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b2970cbbbe0f96d023575c0374d961b874d11ce5d237b1d230f570f281203785
MD5 819903a3ad7a4cbed9dc11a1ff06ce11
BLAKE2b-256 21264a68553fb936feb764d61cfe3210b29f8e052b73317533c6c0f982b8593a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 727149d606157f83cb5dcdfdf030892d038fa49216132f0e7e70a4cba2fb4583
MD5 a2b2f2c2fcb406ab4a9edc150b8abb50
BLAKE2b-256 229a386f93af7190e4f4dc982c1bec25d07069c6be147e893abbdc73c8238c75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b937ed530496b51df72cb81ea45a978f03d2a97fbedddaa4726a081b66ab1e26
MD5 bcb741248b595e62dadc69558c8dc50f
BLAKE2b-256 30629062a9d4e4ff66d473d09476cf124bbca8604a3cc4c2687694fa56490b6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b345407564dff1e78b3709022f5d8da242aad9f3103fd752025f74a512edcf62
MD5 a97124a993915b20528d4d870ca5c6ef
BLAKE2b-256 06da1e660450a240dd229ccee521c3392c174db3115bc515779c41f6aee000b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 700b5e794d8dce8773e149303bf5d95f82a0efe51a9ccaa73df412168ec86bb9
MD5 48d770661d3659f60a5f40baeb41996e
BLAKE2b-256 9b8d2d6683cd13e14f386bca524178657638fc91883ed14eb2a38654ad4c34d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1dba72a658aeb801279683905c43ac8efb9400115f5a94cedbb51a3130f1fe1
MD5 b33b66dae0c25ec448f72ceafc39b483
BLAKE2b-256 13e4a66a45f67e84ad7bc317898cde52b5f79b78387da8607d86122838ec900e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da57a30ea9dad87c9216a18a3f19a0b7f322e9c34d79296fd18b8b71de52697e
MD5 b041e0dff7f14cbb7c02f17e01b6e835
BLAKE2b-256 e31e7f5a59173aa8b8a80181fe0b44f86eece4ff6fb815e8744b82405bafa967

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9610b5a46a28312a9a32182228fe42089c4ba2c9b7ad6b58e24f74f1fc853a31
MD5 c6435567acc507eeda2b78f9f489c1ba
BLAKE2b-256 81b460285055494cb39521f1006b8588c0947212b140387eb7549010042f1227

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f4481a64b45568eeb28915fd61f6ef51f2a70b34267c2f4e597f5082f50c29a1
MD5 1a978688075c51e212a14121a995add0
BLAKE2b-256 ace60b4c07bea4ca477987aa0f2ea5570327878c88a024140864e7b924f79cb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38e9c7578dec995d83f3adb8e1d91ad710879caac898d08ea69293f9bb925472
MD5 c6f07f91a3cf747e76c3800c40947125
BLAKE2b-256 3f5b233d1628d22781c4c571bde5abb2d5cbc195bf6d0169c1e91c719b34cb4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c2ec5c373be5e7e2e3ef8d410d503a2066a57ae31be52a5974753c41d418128
MD5 fdd8f4dfc34babe22efae8004b670252
BLAKE2b-256 4ee13014dcf4c68e1ae358047addde47bdfc67fe1dd9459a68c26e64ef252664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 190fbd3d221a99441d1423c9c5e08071991c78613b1a104f48c6ff7cedb94ba9
MD5 b22f87146a12044d5fc9a1ebf182e0e6
BLAKE2b-256 e91d534fc4939e7cd4ecf988282be3e94fb834b8bd51d5ebefbe34546180f692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a1eb7a4d39647d708f49f79774a3082b4f4d3c31eefa96f7dbf9697334214325
MD5 9c22fc9ab0f60ea440a5e702a10a809e
BLAKE2b-256 3766996501881683ee3159d70f4568c8577cf9ded7e2dcf00c1ef3580252cd7e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e38c1a341da0c418b39842db93eb56fbeeab11311da62a62e1da828e091c1878
MD5 c92f13c27d0d4a6e40c678bc20bd76d9
BLAKE2b-256 6702afc9cb110159f37b32745db6a232ea885fcf343bf66cf2f918c6ea6e753e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4624b77ce828b23e932fd1e9989d99d6fc6a5c96ab764356736374b0b6be2e01
MD5 4546a53f217e7a5a9c9b6ca97edc8259
BLAKE2b-256 600a37c0aada2c37b41a24a77491f10837417fc1e737cf2947f325d9ed8869e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ef4dfaa2f0befc933ee4b938b30e913d209993521ff3b4e3db7af3cefce73bd
MD5 819d6f81cf760a3de4b8659d9882c1cf
BLAKE2b-256 7e562e4a79310147fc6ec8a82fd4077b1d05d5c0b5e3bf05ef48dc837f7f44d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cff244b4c7aa6044fece5471c3494add73dd7bbbd3b69f374d80f970d03a1385
MD5 61bc9715c3542323b65cc09696dc81b9
BLAKE2b-256 d6723fd71f255f0dc1922c6187a38e532c0f90bdbc38cf1bbc3fc27944957611

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06c9c3f7d9d4a0e97487f072f4b11c345c980f5ed24a24d648626b7800a3a246
MD5 45094689f5c2881fc9736640e03edbee
BLAKE2b-256 007350c1d0d101769ac26bbd751c45ee743c19656c8feea46edeea83b7fcd44d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 278db9e4d142d3f20509f7266b01d7bce0b4ebc098fbc62f27edd46ea7a3a46a
MD5 39d02af8fb7dce58430895202f4ff1ab
BLAKE2b-256 b18228c06d22b0717194c9866b23917e350c46457e9edd6001a92545afc3ba64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fc7fcb6e79081278d201612c9c712858a7003d79560502449251f3b1d67360c
MD5 7a80005a77d68a5c2d4cb7c0cd14ed73
BLAKE2b-256 87081575217a4ec8946c1fd91f04919035bbe67cb332c12888101b8f5198523e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9aa348bf088ad73cc12cd045140724618962e16a0be402a094891902e62bb11e
MD5 2190234a1c5d613e311ea2c4ecfc075a
BLAKE2b-256 f5b0ae058261ea8ea5da20f57fe109e36f30662a984c8f6e968c9356347e4ca1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65dca355eb0ca3bdbfb0159b7b493647e4e9b100f361e3b3d5f3b9e9fb88232e
MD5 e4422504e8783727850417fc0e005ece
BLAKE2b-256 b702b73e2e43a969613625858a38fa27f7afc3e9775e0b5c39aef73775ba7c93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea8372baad3c4c1f33030464c6f6be7fc3f446320518cb4f30a04c54c2b7f6ae
MD5 ebf7c8fe0971789153c27d6723886c94
BLAKE2b-256 27cd87b7a92f1df8aae459c11089bed481424fa65dde5f625f1b28c834b5108b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9dbea82d9cc03ee6c7eb9cdb490eb6e9e9ab405c28710f9e9d41c11ae22d3e36
MD5 d04e7a47d06294020c1f13a4e354983a
BLAKE2b-256 899bbec48e8a293f40ab8d9bddf1366de8d3d968768b45950e55efac6430016f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 84e1753cacf2e13ed99350424c69904ad919ad7d83fe50995540bd20f5a3f2f1
MD5 3d2202dafdb6e1f64ea445fcd8e0c79b
BLAKE2b-256 2c9bc727f0c1258ebae31aeda3271f9e770e40da1c979e1cce8ac34f7bc2594f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7dc70be7b743fb156baae80caba62ff44ad0dfb2389ffcea47aaefe7cbaede5
MD5 d3e65d035fdef804217d35572d739811
BLAKE2b-256 eaa088082d54ff82d215c518e4eda25cf7ecf6e2e722cc8f585cb8a8ea996278

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for whenever-0.10.0b1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76270aeba1d48a4b50328199c5bc5e874a58e54e17b6903ad16b34c203eef3c6
MD5 9da9804aa82652852e6463215cca2547
BLAKE2b-256 f0d38d13363ec10666169fb4686976ad0535729c17f699259eeb8f0b360c93f5

See more details on using hashes here.

Provenance

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