diff --git a/ChangeLog b/ChangeLog index d6f5c494..d58715c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ 2006-06-08 Federico Di Gregorio + + * Release 2.0. * ZPsycopgDA/DA.py: removed Browse table for 2.0 release; we'll add it back later. diff --git a/ZPsycopgDA/DA.py b/ZPsycopgDA/DA.py index 91159e86..ee08f741 100644 --- a/ZPsycopgDA/DA.py +++ b/ZPsycopgDA/DA.py @@ -18,7 +18,7 @@ # See the LICENSE file for details. -ALLOWED_PSYCOPG_VERSIONS = ('2.0',) +ALLOWED_PSYCOPG_VERSIONS = ('2.0.1',) import sys import time diff --git a/ZPsycopgDA/db.py b/ZPsycopgDA/db.py index 2c90ab8c..5b810805 100644 --- a/ZPsycopgDA/db.py +++ b/ZPsycopgDA/db.py @@ -26,7 +26,7 @@ import site import pool import psycopg2 -from psycopg2.extensions import INTEGER, LONGINTEGER, FLOAT, BOOLEAN, DATE +from psycopg2.extensions import INTEGER, LONGINTEGER, FLOAT, BOOLEAN, DATE, TIME from psycopg2 import NUMBER, STRING, ROWID, DATETIME diff --git a/setup.py b/setup.py index 105a15f3..981b5665 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ from distutils.command.build_ext import build_ext from distutils.sysconfig import get_python_inc from distutils.ccompiler import get_default_compiler -PSYCOPG_VERSION = '2.0' +PSYCOPG_VERSION = '2.0.1' version_flags = [] # to work around older distutil limitations