We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec38400 commit 2458febCopy full SHA for 2458feb
postgres/__init__.py
@@ -9,6 +9,8 @@
9
10
$ pip install postgres
11
12
+:py:mod:`postgres` requires :py:mod:`psycopg2` version 2.5 or higher.
13
+
14
We `test <https://travis-ci.org/gittip/postgres.py>`_ against Python 2.6, 2.7,
15
3.2, and 3.3. We don't yet have a testing matrix for different versions of
16
:py:mod:`psycopg2` or PostgreSQL.
setup.py
@@ -6,5 +6,5 @@
6
, url='https://postgres-py.readthedocs.org'
7
, version='2.0.0-dev'
8
, packages=find_packages()
- , install_requires=['psycopg2 >= 2.0.0']
+ , install_requires=['psycopg2 >= 2.5.0']
)
0 commit comments