From 7bdfa502a64430e2c8d192161b0b8e50945c9420 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Tue, 27 Oct 2020 14:43:56 +0100 Subject: [PATCH] Fixed hacking instruction, again --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 88cab28dc..82f21bcfe 100644 --- a/README.rst +++ b/README.rst @@ -34,8 +34,8 @@ different development pattern:: python -m venv .venv source .venv/bin/activate - python psycopg3/setup.py[dev,test] develop # for the base Python pacakge - python psycopg3_c/setup.py develop # for the C extension module + pip install -e ./psycopg3[dev,test] # for the base Python pacakge + pip install -e ./psycopg3_c # for the C extension module You can use tox to validate the code:: -- 2.47.2