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:41 -04:00
parent 51592567e1
commit 6103d63b9f

View File

@ -8,13 +8,13 @@ helpers for the common paths, with a raw escape hatch for everything else.
`requirements.txt`:
```
mongo @ git+ssh://git@git.rethinkstudios.io/rethink-public/mongo.git@v0.1.2
mongo @ git+ssh://git@git.rethinkstudios.io/rethink-public/mongo.git
```
Direct:
```bash
pip install "mongo @ git+ssh://git@git.rethinkstudios.io/rethink-public/mongo.git@v0.1.2"
pip install "mongo @ git+ssh://git@git.rethinkstudios.io/rethink-public/mongo.git"
```
Requires `motor` and `pymongo` (pulled transitively).
@ -71,4 +71,4 @@ are included.
## Versioning
Tagged `vX.Y.Z`. Pin the tag in `requirements.txt`; bump deliberately.
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.