Skip to content

Commit 2458feb

Browse files
committed
Tighten up psycopg2 version requirement
1 parent ec38400 commit 2458feb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

postgres/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
1010
$ pip install postgres
1111
12+
:py:mod:`postgres` requires :py:mod:`psycopg2` version 2.5 or higher.
13+
1214
We `test <https://travis-ci.org/gittip/postgres.py>`_ against Python 2.6, 2.7,
1315
3.2, and 3.3. We don't yet have a testing matrix for different versions of
1416
:py:mod:`psycopg2` or PostgreSQL.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
, url='https://postgres-py.readthedocs.org'
77
, version='2.0.0-dev'
88
, packages=find_packages()
9-
, install_requires=['psycopg2 >= 2.0.0']
9+
, install_requires=['psycopg2 >= 2.5.0']
1010
)

0 commit comments

Comments
 (0)