Preparing 2.2.0 release candidate 1

This commit is contained in:
Federico Di Gregorio 2010-04-05 17:06:35 +02:00
parent c1a24f4ca2
commit 012e2e3c72
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
# their work without bothering about the module dependencies.
ALLOWED_PSYCOPG_VERSIONS = ('2.0.14',)
ALLOWED_PSYCOPG_VERSIONS = ('2.2.0',)
import sys
import time

View File

@ -55,8 +55,8 @@ 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.14'
version_flags = ['dt', 'dec']
PSYCOPG_VERSION = '2.2.0'
version_flags = ['dt', 'dec', 'release-candidate-1']
PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win')