Right now psycopg2 is required to be exactly version 2.6.2, which makes it mostly impossible to install pgadmin4 without having the postgresql C development packages installed (since you need to rebuild psycopg2 from source to make that work, given that few platforms ship *exactly* that version).
I suggest just saying "2.6 or greater", which should make it work on many more platforms. AFAIK there aren't any other packages with similar compile requirements, so the rest seem OK. -- Magnus Hagander Me: https://www.hagander.net/ <http://www.hagander.net/> Work: https://www.redpill-linpro.com/ <http://www.redpill-linpro.com/>
diff --git a/requirements.txt b/requirements.txt index 90ed057..deb8bde 100644 --- a/requirements.txt +++ b/requirements.txt @@ -27,7 +27,7 @@ MarkupSafe==0.23 ordereddict; python_version < '2.7' passlib==1.6.2 pbr==1.9.1 -psycopg2==2.6.2 +psycopg2>=2.6.2 pycrypto==2.6.1 pyrsistent==0.11.13 python-dateutil==2.5.0
-- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers