From 6bfd47f735de3f297ba3c8f59d5e2dcfa1987107 Mon Sep 17 00:00:00 2001 From: James Cobb Date: Thu, 1 Apr 2021 07:23:18 +0100 Subject: [PATCH] Newer pip install command from git (#1439) * Newer pip install command from git Updated cutting edge pip install command to use HTTPS rather than insecure git+git protocol, as recommended by pip documentation. This allows the command to work with pip >= 21.0.1 * Updated pip command in README --- README.md | 2 +- docs/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 40dea29d..c4285f92 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ Simply use the following command to install the latest released version: If you want the cutting edge version (that may well be broken), use this: - pip install -e git+https://github.com/nvie/rq.git@master#egg=rq + pip install git+https://github.com/nvie/rq.git@master#egg=rq ## Related Projects diff --git a/docs/index.md b/docs/index.md index 985047bd..b4b78454 100644 --- a/docs/index.md +++ b/docs/index.md @@ -85,7 +85,7 @@ Simply use the following command to install the latest released version: If you want the cutting edge version (that may well be broken), use this: - pip install -e git+git@github.com:nvie/rq.git@master#egg=rq + pip install git+https://github.com/nvie/rq.git@master#egg=rq ## Project history