summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Version bump to 2.3.0-beta2Federico Di Gregorio2010-11-091-1/+1
|
* Preparing release 2.3.0-beta12_3_0_BETA1Federico Di Gregorio2010-11-061-3/+4
| | | | | | | | | | | | * Merged NEWS-2.3 and NEWS-2.2: 2.0 (pre-async) still makes sense in case someone has horrible problems with the new code but 2.3 will just substitute 2.2 so having a separated NEWS file doesn't make sense. * Moved authors and contributors to AUHTORS file. * README now has pointers to web site and bug tracker. * Updated MonoDevelop project.
* Updated classifier to make the upload work.Daniele Varrazzo2010-11-051-2/+2
|
* Bump to 2.3.dev0Daniele Varrazzo2010-11-051-1/+4
|
* Added connection.xid() and related objects.Daniele Varrazzo2010-11-051-1/+1
| | | | | | | | | | | | | | | | By James Henstridge on 2008-07-23. Merged from lp:~jamesh/psycopg/two-phase-commit/revision/356 * psycopg/connection_type.c (psyco_conn_xid): add a Connection.xid() method that instantiates Xid objects. * psycopg/psycopgmodule.c (init_psycopg): initialise the Xid object type. * psycopg/xid.h: * psycopg/xid_type.c: Implement a basic transaction ID object for use in two phase commit.
* Adding Notify object with payload.Daniele Varrazzo2010-11-051-1/+1
|
* Bump to version 2.2.3-devel.Daniele Varrazzo2010-09-231-1/+1
|
* Preparing release 2.2.22_2_2Federico Di Gregorio2010-07-181-1/+1
|
* Applied spelling fixes patch from Peter EisentrautFederico Di Gregorio2010-07-181-1/+1
|
* Bump to version 2.2.2-devel.Daniele Varrazzo2010-05-201-1/+1
| | | | | The -devel suffix appears in the docs we publish on the website, so it's clear that they refer to the upcoming version.
* Warn on declarations not at beginning of the block.Daniele Varrazzo2010-05-191-0/+6
| | | | They are accepted by gcc but not by MS compilers.
* Preparing release 2.2.12_2_1Federico Di Gregorio2010-05-171-1/+1
|
* Additional Library for Windows linking and OpenSSL 1.0.0Jason Erickson2010-05-171-0/+1
| | | | Added the linking of crypt32.lib to the windows SSL build, as it seems that the current version of OpenSSL is looking for crypt32.lib as well.
* Updated project and version for release 2.2.0Federico Di Gregorio2010-05-151-1/+1
|
* Added wait callback and functions to deal with it.Daniele Varrazzo2010-04-211-1/+1
|
* Preparing 2.2.0 release candidate 1Federico Di Gregorio2010-04-051-2/+2
|
* Preparing release 2.0.14 (final)2_0_14Federico Di Gregorio2010-03-131-1/+1
|
* Changed setup.py to detect PostgreSQL "alpha" versionsFederico Di Gregorio2010-03-111-1/+1
|
* Release candidate 1Federico Di Gregorio2010-02-221-1/+1
|
* Preparing release 2.0.14Federico Di Gregorio2010-02-211-1/+1
|
* Fixed problem with decimal.Decimal conversionsFederico Di Gregorio2010-02-211-1/+2
|
* Fixed license in trove categoriesFederico Di Gregorio2010-02-141-1/+1
|
* Moved status from beta to stable in trove classifier.Daniele Varrazzo2010-02-141-1/+1
|
* Changes license to LGPL3 + OpenSSL exception on all source filesFederico Di Gregorio2010-02-121-9/+9
|
* Fixed --have_ssl command line parameterJason Erickson2009-10-081-1/+3
| | | | | | Added initialization of have_ssl variable so passing --have_ssl on the command line works.
* Unclear error message when no pg_config foundJason Erickson2009-10-081-4/+7
| | | | | | If unable to find pg_config, a warning will be printed instead of stopping the build process and displaying a generic error message.
* Added additional library required for PostgreSQL 8.4.xJason Erickson2009-10-041-0/+1
| | | | | | For MSVC, added an additional library to include that is required for PostgreSQL 8.4.x.
* Preparing release 2.0.13Federico Di Gregorio2009-10-041-1/+1
|
* Enabled linking to static libpqFederico Di Gregorio2009-10-041-2/+14
|
* Preparing release 2.0.122_0_12Federico Di Gregorio2009-08-091-1/+1
|
* Fixed PostgreSQL version detectionFederico Di Gregorio2009-08-091-1/+1
|
* Preparing release 2.0.112_0_11Federico Di Gregorio2009-05-091-1/+1
|
* Fixed bug in RealDictCursor when prefetchingFederico Di Gregorio2009-05-091-1/+1
|
* Better detection of PostgreSQL versionFederico Di Gregorio2009-04-211-6/+12
|
* Preparing release 2.0.10Federico Di Gregorio2009-04-201-1/+1
|
* Added a couple of test scripts to sandboxFederico Di Gregorio2009-04-191-1/+1
|
* Fixed setup script to handle PostgreSQL devel version stringsFederico Di Gregorio2009-03-211-1/+8
|
* Merge from trunkFederico Di Gregorio2009-02-221-5/+4
|\
| * * psycopg/utils.c (psycopg_escape_string): same here.James Henstridge2009-02-171-5/+4
| | | | | | | | | | | | | | | | | | * psycopg/adapter_binary.c (binary_escape): simplify PostgreSQL version check. * setup.py (psycopg_build_ext.finalize_options): use a single define of the PostgreSQL version in a form that can easily be used by #ifdefs.
* | Preparing release 2.0.9Federico Di Gregorio2009-02-221-1/+1
|/
* Added adapter to handle float('inf') and float('nan')Federico Di Gregorio2009-01-231-1/+2
|
* If we are depending on Python 2.4, we don't need to make decimal module James Henstridge2008-12-271-11/+2
| | | | support conditional.
* Remove conditionals on support for booleans and datetimes, since they James Henstridge2008-12-261-32/+12
| | | | are guaranteed to be available in Python 2.4.
* Applied COPY patch from Alejandro DubrovskyFederico Di Gregorio2008-11-251-1/+1
|
* Added suppport for UUID and related test.Federico Di Gregorio2008-09-191-1/+1
|
* Fixed spaces in pg_config pathFederico Di Gregorio2008-06-281-0/+2
|
* Merge changes from psycopg2/trunk via psycopg2.r243.James Henstridge2008-05-051-0/+1
|\
| * Merge psycopg2/trunk into psycopg2/branches/2_0_x r243 (which is the James Henstridge2008-05-051-0/+1
| |\ | | | | | | | | | | | | last revision merged into trunk). Where file ID conflicts exist, but the content was equivalent, I've picked the 2_0_x version.
| | * Missing file.Federico Di Gregorio2006-09-011-1/+1
| | |
| | * psycopg is enlarging..Federico Di Gregorio2006-09-011-0/+1
| | |