Fixing ZPsycopgDA glitches of 2.0.

This commit is contained in:
Federico Di Gregorio 2006-06-09 00:05:42 +00:00
parent 39249e4741
commit ba3361a7a6
4 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,6 @@
2006-06-08 Federico Di Gregorio <fog@initd.org> 2006-06-08 Federico Di Gregorio <fog@initd.org>
* Release 2.0.
* ZPsycopgDA/DA.py: removed Browse table for 2.0 release; we'll * ZPsycopgDA/DA.py: removed Browse table for 2.0 release; we'll
add it back later. add it back later.

View File

@ -18,7 +18,7 @@
# See the LICENSE file for details. # See the LICENSE file for details.
ALLOWED_PSYCOPG_VERSIONS = ('2.0',) ALLOWED_PSYCOPG_VERSIONS = ('2.0.1',)
import sys import sys
import time import time

View File

@ -26,7 +26,7 @@ import site
import pool import pool
import psycopg2 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 from psycopg2 import NUMBER, STRING, ROWID, DATETIME

View File

@ -52,7 +52,7 @@ from distutils.command.build_ext import build_ext
from distutils.sysconfig import get_python_inc from distutils.sysconfig import get_python_inc
from distutils.ccompiler import get_default_compiler from distutils.ccompiler import get_default_compiler
PSYCOPG_VERSION = '2.0' PSYCOPG_VERSION = '2.0.1'
version_flags = [] version_flags = []
# to work around older distutil limitations # to work around older distutil limitations