Update of /usr/cvs/Public/pygresql/module
In directory druid.net:/tmp/cvs-serv29163/module
Modified Files:
pgmodule.c setup.py
Log Message:
Use flag file to designate BETA.
Start preparing for version 4.0.
To see the diffs for this commit:
http://www.druid.net/pygresql/viewcvs.cgi/cvs/pygresql/module/pgmodule.c.diff?r1=1.80&r2=1.81
Index: pgmodule.c
===================================================================
RCS file: /usr/cvs/Public/pygresql/module/pgmodule.c,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -p -u -r1.80 -r1.81
--- pgmodule.c 22 Sep 2008 19:21:01 -0000 1.80
+++ pgmodule.c 31 Oct 2008 21:13:19 -0000 1.81
@@ -1,5 +1,5 @@
/*
- * $Id: pgmodule.c,v 1.80 2008/09/22 19:21:01 cito Exp $
+ * $Id: pgmodule.c,v 1.81 2008/10/31 21:13:19 darcy Exp $
* PyGres, version 2.2 A Python interface for PostgreSQL database. Written by
* D'Arcy J.M. Cain, ([EMAIL PROTECTED]). Based heavily on code written by
* Pascal Andre, [EMAIL PROTECTED] Copyright (c) 1995, Pascal Andre
@@ -51,7 +51,7 @@ static PyObject *Error, *Warning, *Inter
*DatabaseError, *InternalError, *OperationalError, *ProgrammingError,
*IntegrityError, *DataError, *NotSupportedError;
-static const char *PyPgVersion = "3.8.1";
+static const char *PyPgVersion = "4.0";
/* taken from fileobject.c */
#define BUF(v) PyString_AS_STRING((PyStringObject *)(v))
http://www.druid.net/pygresql/viewcvs.cgi/cvs/pygresql/module/setup.py.diff?r1=1.23&r2=1.24
Index: setup.py
===================================================================
RCS file: /usr/cvs/Public/pygresql/module/setup.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -p -u -r1.23 -r1.24
--- setup.py 31 Oct 2008 17:26:22 -0000 1.23
+++ setup.py 31 Oct 2008 21:13:19 -0000 1.24
@@ -1,7 +1,7 @@
#!/usr/bin/env python
-# $Id: setup.py,v 1.23 2008/10/31 17:26:22 cito Exp $
+# $Id: setup.py,v 1.24 2008/10/31 21:13:19 darcy Exp $
-"""Setup script for PyGreSQL version 3.8.1
+"""Setup script for PyGreSQL version 4.0
Authors and history:
* PyGreSQL written 1997 by D'Arcy J.M. Cain <[EMAIL PROTECTED]>
@@ -17,8 +17,8 @@ Prerequisites to be installed:
* PostgreSQL pg_config tool (usually included in the devel package)
(the Windows installer has it as part of the database server feature)
-Tested with Python 2.4.3 and PostGreSQL 8.1.4. Older version should work
-as well, but you will need at least Python 2.1 and PostgreSQL 7.1.3.
+Tested with Python 2.5.2 and PostGreSQL 8.2.10. Older version should work
+as well, but you will need at least Python 2.3 and PostgreSQL 7.2.
Use as follows:
python setup.py build # to build the module
@@ -96,7 +96,7 @@ if sys.platform == "win32":
setup(
name = "PyGreSQL",
- version = "3.8.1",
+ version = "4.0",
description = "Python PostgreSQL Interfaces",
author = "D'Arcy J. M. Cain",
author_email = "[EMAIL PROTECTED]",
_______________________________________________
PyGreSQL mailing list
[email protected]
http://mailman.vex.net/mailman/listinfo/pygresql