mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-23 01:16:34 +03:00
Fixing ZPsycopgDA glitches of 2.0.
This commit is contained in:
parent
39249e4741
commit
ba3361a7a6
|
@ -1,4 +1,6 @@
|
|||
2006-06-08 Federico Di Gregorio <fog@initd.org>
|
||||
|
||||
* Release 2.0.
|
||||
|
||||
* ZPsycopgDA/DA.py: removed Browse table for 2.0 release; we'll
|
||||
add it back later.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
2
setup.py
2
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
|
||||
|
|
Loading…
Reference in New Issue
Block a user