From: Stephen Finucane Date: Wed, 10 Feb 2016 19:58:47 +0000 (+0000) Subject: requirements: Remove psycopg2 X-Git-Tag: v1.1.0~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f47701c7e403aef520956c4d3ba1587960c4ca41;p=thirdparty%2Fpatchwork.git requirements: Remove psycopg2 It would be good to provide the required packages for devs using both MySQL and PostgreSQL. However, there does not appear to be any way to specify an exclusive-or condition in pip requirements files and the existing behavior of including dependencies for both RDBMSs means system packages have to be installed for both, when you are likely only using one. This is particularly problematic when you want to set up a fast dev environment using something like Vagrant. Settle on MySQL for now, until such a time as the consensus is to go all-in with PostgreSQL (including docs, for example). Signed-off-by: Stephen Finucane --- diff --git a/requirements-test.txt b/requirements-test.txt index 1f4a6405..29ecd660 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,4 +1,3 @@ -mysqlclient==1.3.7 -psycopg2==2.6.1 +mysqlclient==1.3.7 # replace this with psycopg2 for a PostgreSQL backend python-dateutil==2.4.2 selenium==2.48.0