Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | remove python module, as its moved to http://www.pygresql.org | Marc G. Fournier | 2003-08-01 |
| | |||
* | I succeeded by fixing up setup.py: | Bruce Momjian | 2003-06-12 |
| | | | | | | | | | | | | | | | | | | | vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv --- setup.py~ Tue Mar 19 08:21:14 2002 +++ setup.py Wed May 14 15:10:30 2003 @@ -30,8 +30,8 @@ optional_libs=[ 'libpqdll', 'wsock32', 'advapi32' ] data_files = [ 'libpq.dll' ] else: - include_dirs=['/usr/include/pgsql'] - library_dirs=['usr/lib/pgsql'] + include_dirs=['../../include','../libpq','/usr/include/pgsql'] + library_dirs=['../libpq','/usr/lib/pgsql'] optional_libs=['pq'] data_files = [] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ George Young | ||
* | Add missing slash to python install path. | Bruce Momjian | 2002-12-30 |
| | |||
* | Bump version number to match tree. | D'Arcy J.M. Cain | 2002-03-19 |
| | |||
* | Add missing comma. | D'Arcy J.M. Cain | 2001-05-30 |
| | |||
* | Add changes from Mikhail Terekhov <terekhov@emc.com>. | D'Arcy J.M. Cain | 2001-03-27 |
| | | | | | | Use Extension method from distutils. Cleaned up mismatched indentation styles while I was at it. | ||
* | Add WIN32 support. | D'Arcy J.M. Cain | 2001-03-15 |
| | |||
* | Update to PyGreSQL 3.1: | Bruce Momjian | 2000-11-10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Fix some quoting functions. In particular handle NULLs better. Use a method to add primary key information rather than direct manipulation of the class structures. Break decimal out in _quote (in pg.py) and treat it as float. Treat timestamp like date for quoting purposes. Remove a redundant SELECT from the get method speeding it, and insert since it calls get, up a little. Add test for BOOL type in typecast method to pgdbTypeCache class. (tv@beamnet.de) Fix pgdb.py to send port as integer to lower level function (dildog@l0pht.com) Change pg.py to speed up some operations Allow updates on tables with no primary keys. D'Arcy J.M. Cain | ||
* | Update for PyGreSQL 3.0, from D'Arcy J.M. Cain | Bruce Momjian | 2000-10-02 |