From 6a9de93691dc6108b900cdcdfddda499ef34ad7a Mon Sep 17 00:00:00 2001 From: disqualifier Date: Sun, 28 Jun 2026 17:18:28 -0400 Subject: [PATCH] fix: correct install line to git+ssh form (was git+https, would not install) the README install pin used git+https with no git@ prefix or .git suffix, which does not resolve against the SSH-only Gitea remote. corrected to the canonical git+ssh form. Signed-off-by: disqualifier --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2363cb5..63b9bf9 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,13 @@ helpers for the common paths, with a raw escape hatch for everything else. `requirements.txt`: ``` -mongo @ git+https://git.rethinkstudios.io/rethink-public/mongo@v0.1.0 +mongo @ git+ssh://git@git.rethinkstudios.io/rethink-public/mongo.git@v0.1.0 ``` Direct: ```bash -pip install "mongo @ git+https://git.rethinkstudios.io/rethink-public/mongo@v0.1.0" +pip install "mongo @ git+ssh://git@git.rethinkstudios.io/rethink-public/mongo.git@v0.1.0" ``` Requires `motor` and `pymongo` (pulled transitively).