From: Daniele Varrazzo Date: Thu, 17 Jun 2021 00:44:53 +0000 (+0100) Subject: Don't require the virtualenv binary to build the docs X-Git-Tag: 3.0.dev0~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=14fc2f9c3a2c585c08a960e96093b4ac59eb3853;p=thirdparty%2Fpsycopg.git Don't require the virtualenv binary to build the docs --- diff --git a/docs/Makefile b/docs/Makefile index 51572b5a9..b409eea7b 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -21,7 +21,7 @@ serve: env: .venv .venv: requirements.txt - virtualenv -p $(PYTHON) .venv + $(PYTHON) -m venv .venv ./.venv/bin/pip install -e ../psycopg3 ./.venv/bin/pip install -r requirements.txt