Metadata-Version: 2.4
Name: whats-the-time
Version: 1.0.0
Summary: 2026-04-08 23:46 UTC
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# whats-the-time

```sh
uvx 'whats-the-time==1.0.0'
```

It tells you the time.

Build locally:

```sh
./scripts/build-minute-wheel.sh
uv tool run --from dist/*.whl whats-the-time
```

## What are build tags?

Wheel filenames can include an extra build tag, like:

```text
whats_the_time-1.0.0-20260409002810-py3-none-any.whl
```

That `20260409002810` part is not part of the package version. The version is still `1.0.0`.

It only distinguishes multiple wheels for the same name, version, and compatibility tags, which means the same release can be uploaded again and again as new wheel files.

## PyPI Is Not Atomic

PyPI publishes files, not whole releases atomically.

This project leans on that. A new wheel can appear for `whats-the-time==1.0.0` while older wheels for the same version already exist, and installers may see different files depending on timing, caching, and selection behavior.
