mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-25 10:23:43 +03:00
Releasing 2.0 beta 5.
This commit is contained in:
parent
ec31179c9e
commit
8d4607ebbd
|
@ -1,3 +1,7 @@
|
|||
2005-10-19 Federico Di Gregorio <fog@initd.org>
|
||||
|
||||
* Releasing 2.0 beta 5.
|
||||
|
||||
2005-10-18 Federico Di Gregorio <fog@initd.org>
|
||||
|
||||
* NOTIFY is back end working.
|
||||
|
|
4
NEWS
4
NEWS
|
@ -1,5 +1,5 @@
|
|||
What's new in psycopg 2.0 rc 1
|
||||
------------------------------
|
||||
What's new in psycopg 2.0 beta 5
|
||||
--------------------------------
|
||||
|
||||
* First (and probably last) release candidate.
|
||||
|
||||
|
|
12
setup.cfg
12
setup.cfg
|
@ -3,17 +3,17 @@ define=PSYCOPG_EXTENSIONS,PSYCOPG_DISPLAY_SIZE,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3
|
|||
# PSYCOPG_DEBUG can be added to enable verbose debug information
|
||||
# PSYCOPG_OWN_QUOTING can be added above but it is deprecated
|
||||
|
||||
# set to 1 to use Python datatime objects for date/time representation
|
||||
# Set to 1 to use Python datatime objects for default date/time representation
|
||||
use_pydatetime=1
|
||||
|
||||
# include_dirs is the preferred method for locating postgresql headers,
|
||||
# "include_dirs" is the preferred method for locating postgresql headers,
|
||||
# but some extra checks on sys.platform will still be done in setup.py.
|
||||
# the next line is the default as used on psycopg author Debian system:
|
||||
include_dirs=.:/usr/include/postgresql:/usr/include/postgresql/8.0
|
||||
# uncomment next line on Mandrake 10.x (and comment previous one):
|
||||
# The next line is the default as used on psycopg author Debian laptop:
|
||||
include_dirs=.:/usr/include/postgresql:/usr/include/postgresql/server
|
||||
# Uncomment next line on Mandrake 10.x (and comment previous one):
|
||||
#include_dirs=.:/usr/include/pgsql/8.0:/usr/include/pgsql/8.0/server
|
||||
|
||||
# if postgresql is installed somewhere weird (i.e., not in your runtime library
|
||||
# If postgresql is installed somewhere weird (i.e., not in your runtime library
|
||||
# path like /usr/lib), just add the right path in "library_dir" any extra
|
||||
# libraries required to link in "libraries".
|
||||
#library_dirs=
|
||||
|
|
2
setup.py
2
setup.py
|
@ -55,7 +55,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.0rc1'
|
||||
PSYCOPG_VERSION = '2.0b5'
|
||||
version_flags = []
|
||||
|
||||
# to work around older distutil limitations
|
||||
|
|
Loading…
Reference in New Issue
Block a user