Skip to content

Commit

Permalink
docs: Use git+https in requirements.txt
Browse files Browse the repository at this point in the history
Netlify preview is currently failing with the following error:

```
Collecting git+git://github.com/cilium/sphinx_rtd_theme.git@v0.7 (from -r requirements.txt (line 23))
  Cloning git://github.com/cilium/sphinx_rtd_theme.git (to revision v0.7) ...
  Running command git clone -q git://github.com/cilium/sphinx_rtd_theme.git ...
  fatal: remote error:
    The unauthenticated git protocol on port 9418 is no longer supported.
  Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information.
```

Signed-off-by: Michi Mutsuzaki <michi@isovalent.com>
  • Loading branch information
michi-covalent authored and joestringer committed Nov 2, 2021
1 parent 203fb2e commit 87195bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ snowballstemmer==1.2.1
Sphinx==1.8.1
sphinx-autobuild==0.7.1
# forked read the docs themez
git+git://github.com/cilium/sphinx_rtd_theme.git@v0.7; platform_machine != "aarch64"
git+https://github.com/cilium/sphinx_rtd_theme.git@v0.7; platform_machine != "aarch64"
sphinx-rtd-theme==0.2.4; platform_machine == "aarch64"
sphinxcontrib-httpdomain==1.7.0
sphinxcontrib-openapi==0.3.2
Expand Down

0 comments on commit 87195bf

Please sign in to comment.