docs: show unpinned install line; note tag-pinning for reproducibility

Signed-off-by: disqualifier <dev@disqualifier.me>
This commit is contained in:
disqualifier 2026-06-29 18:07:19 -04:00
parent 7da06443c8
commit 849200985c

View File

@ -11,13 +11,13 @@ and swap the HTTP client while inheriting everything else.
`requirements.txt`:
```
aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git@v0.1.4
aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git
```
Direct:
```bash
pip install "aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git@v0.1.4"
pip install "aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git"
```
Requires `aiohttp` and `yarl` (pulled transitively).
@ -147,4 +147,4 @@ Two changes can't be shimmed without re-introducing the bugs they fix:
## Versioning
Tagged `vX.Y.Z`. Pin the tag in `requirements.txt`.
Releases are tagged `vX.Y.Z`. The install line above is unpinned and tracks the latest on the default branch; append `@vX.Y.Z` to pin a specific release for reproducible installs.