diff --git a/postgres_copy/__init__.py b/postgres_copy/__init__.py index 27942e4..707f5a5 100644 --- a/postgres_copy/__init__.py +++ b/postgres_copy/__init__.py @@ -5,7 +5,7 @@ from sqlalchemy.sql.operators import ColumnOperators from sqlalchemy.dialects import postgresql -__version__ = '0.5.0' +__version__ = '0.6.0' def copy_to(source, dest, engine_or_conn, **flags): """Export a query or select to a file. For flags, see the PostgreSQL diff --git a/setup.py b/setup.py index d00d2b6..5afc131 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,13 @@ REQUIRES = [ 'six', - 'psycopg2', + # We recommend you install the version of the psycopg2 library + # that is right for you (if you don't know, 'psycopg2-binary' will + # probably work fine for you). + # + # https://github.com/psycopg/psycopg2/issues/674 + # + # 'psycopg2', 'sqlalchemy', ]