From: Daniele Varrazzo Date: Tue, 12 Oct 2021 12:47:53 +0000 (+0200) Subject: Drop --pre from documentation X-Git-Tag: 3.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25648acf7ba726a051d7bb4292c25f7f7523acb0;p=thirdparty%2Fpsycopg.git Drop --pre from documentation --- diff --git a/README.rst b/README.rst index f12f6a9ac..d9ab197db 100644 --- a/README.rst +++ b/README.rst @@ -10,7 +10,7 @@ Installation Quick version:: pip install --upgrade pip # upgrade pip to at least 20.3 - pip install --pre psycopg[binary,pool] # install binary dependencies + pip install psycopg[binary,pool] # install binary dependencies For further information about installation please check `the documentation`__. diff --git a/docs/basic/install.rst b/docs/basic/install.rst index fa45bca6a..829f5eb01 100644 --- a/docs/basic/install.rst +++ b/docs/basic/install.rst @@ -6,7 +6,7 @@ Installation In short, if you use a :ref:`supported system`:: pip install --upgrade pip # upgrade pip to at least 20.3 - pip install --pre psycopg[binary] + pip install psycopg[binary] and you should be :ref:`ready to start `. Read further for alternative ways to install. @@ -45,7 +45,7 @@ Binary installation The quickest way to start developing with Psycopg 3 is to install the binary packages by running:: - pip install --pre psycopg[binary] + pip install psycopg[binary] This will install a self-contained package with all the libraries needed. You will need pip >= 20.3 at least: please run ``pip install --upgrade pip`` to @@ -99,7 +99,7 @@ try this and follow the `binary installation`_ instead. If your build prerequisites are in place you can run:: - pip install --pre psycopg[c] + pip install psycopg[c] .. _pure-python-installation: @@ -109,7 +109,7 @@ Pure Python installation If you simply install:: - pip install --pre psycopg + pip install psycopg without ``[c]`` or ``[binary]`` extras you will obtain a pure Python implementation. This is particularly handy to debug and hack, but it still