Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
psycopg2 keeps failing because it sees the latest version of postgresql as 10.5 and cannot interpret that as a version number correctly. 

Changed the version of psycopg2 to 2.7.5 as per psycopg/psycopg2#489 because the maintainers have no desire to backport the fix. Here's hoping it doesn't fail now for some other reason on postgresql 10.5
  • Loading branch information
sachinelli authored Oct 18, 2018
1 parent 8982975 commit 7384d03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
'numpy==1.9.0',
'SQLAlchemy==1.0.12',
'pyhocon==0.3.29',
'psycopg2==2.6.1',],
'psycopg2==2.7.5',],
include_package_data = True,
entry_points = {
'console_scripts': [
Expand Down

0 comments on commit 7384d03

Please sign in to comment.