From 918fb6e6651da7a21a5a15e480a478aedfcf88f6 Mon Sep 17 00:00:00 2001 From: Federico Di Gregorio Date: Wed, 18 May 2005 08:01:49 +0000 Subject: [PATCH] ZPsycopgDA version check fix. --- ChangeLog | 4 ++++ ZPsycopgDA/DA.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d256b7dc..a4f9d3c0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2005-05-18 Federico Di Gregorio + * ZPsycopgDA/DA.py (ALLOWED_PSYCOPG_VERSIONS): updated to work + with 2.0b2 only (will support only the exact version untill final + 2.0 release.) + * setup.py: Applied combined patch from Daniele Varrazzo and Jason Erickson to build on win32 using MSVC or mingw. diff --git a/ZPsycopgDA/DA.py b/ZPsycopgDA/DA.py index b9979b7f..fe939eb8 100644 --- a/ZPsycopgDA/DA.py +++ b/ZPsycopgDA/DA.py @@ -18,7 +18,7 @@ # See the LICENSE file for details. -ALLOWED_PSYCOPG_VERSIONS = ('1.99.9',) +ALLOWED_PSYCOPG_VERSIONS = ('2.0b1', '2.0b2') import sys import db