From: Daniele Varrazzo Date: Mon, 26 Oct 2020 16:40:45 +0000 (+0100) Subject: Fixed hacking instructions in readme X-Git-Tag: 3.0.dev0~451 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24dfcf21bf46c9b5fb028a01f671a724fb174ba6;p=thirdparty%2Fpsycopg.git Fixed hacking instructions in readme --- diff --git a/README.rst b/README.rst index 5c74d0a5d..88cab28dc 100644 --- a/README.rst +++ b/README.rst @@ -34,8 +34,8 @@ different development pattern:: python -m venv .venv source .venv/bin/activate - pip -e psycopg3/setup.py[dev,test] develop # for the base Python pacakge - pip -e psycopg3_c/setup.py develop # for the C extension module + python psycopg3/setup.py[dev,test] develop # for the base Python pacakge + python psycopg3_c/setup.py develop # for the C extension module You can use tox to validate the code::