<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/psycopg2.git/setup.py, branch execute-locks</title>
<subtitle>github.com: psycopg/psycopg2.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psycopg2.git/'/>
<entry>
<title>Added utils.h file</title>
<updated>2019-01-21T02:41:58+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2018-12-29T15:13:12+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=7a1fb9a2e47227c0cc130ef62142d90dd71999ee'/>
<id>7a1fb9a2e47227c0cc130ef62142d90dd71999ee</id>
<content type='text'>
utils.c functions definition moved out of psycopg.h

Some utility functions defined into psycopgmodule.c moved into utils.c.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
utils.c functions definition moved out of psycopg.h

Some utility functions defined into psycopgmodule.c moved into utils.c.
</pre>
</div>
</content>
</entry>
<entry>
<title>Moving host attribute to a connection.info object</title>
<updated>2018-10-11T21:42:52+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2018-10-11T21:42:52+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=0e2b516a3cc454fc762a17c847979bed799a7b1c'/>
<id>0e2b516a3cc454fc762a17c847979bed799a7b1c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added C implementation for a Column type</title>
<updated>2018-10-11T01:59:45+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2018-10-11T01:59:45+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=b3b225a9da450ed11ffbe8a61ba28ca6b343af32'/>
<id>b3b225a9da450ed11ffbe8a61ba28ca6b343af32</id>
<content type='text'>
Currently behaving exactly like the previous (named)tuple.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently behaving exactly like the previous (named)tuple.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #771 from jdufresne/distutils</title>
<updated>2018-10-10T21:18:22+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2018-10-10T21:18:22+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=c442b3ec4615733836702da799db6f647fd8acc4'/>
<id>c442b3ec4615733836702da799db6f647fd8acc4</id>
<content type='text'>
Drop legacy distutils fallback in setup.py</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Drop legacy distutils fallback in setup.py</pre>
</div>
</content>
</entry>
<entry>
<title>Prefer https:// URLs when available</title>
<updated>2018-09-23T02:02:33+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-09-23T01:54:55+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=b07e34e0b892283b7b2bcb88e473806dff67dce0'/>
<id>b07e34e0b892283b7b2bcb88e473806dff67dce0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop legacy distutils in setup.py</title>
<updated>2018-09-15T23:05:05+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-09-15T23:05:05+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=9405d8cbc56c8347daf28e2309d5398947bc37b4'/>
<id>9405d8cbc56c8347daf28e2309d5398947bc37b4</id>
<content type='text'>
distutils is not recommended for use and unnecessary for modern Python
environments. Use only setuptools instead. From
https://docs.python.org/3/library/distutils.html:

&gt; Most Python users will not want to use this module directly, but
&gt; instead use the cross-version tools maintained by the Python Packaging
&gt; Authority. In particular, setuptools is an enhanced alternative to
&gt; distutils ...
&gt;
&gt; The recommended pip installer runs all setup.py scripts with
&gt; setuptools, even if the script itself only imports distutils. Refer to
&gt; the Python Packaging User Guide for more information.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
distutils is not recommended for use and unnecessary for modern Python
environments. Use only setuptools instead. From
https://docs.python.org/3/library/distutils.html:

&gt; Most Python users will not want to use this module directly, but
&gt; instead use the cross-version tools maintained by the Python Packaging
&gt; Authority. In particular, setuptools is an enhanced alternative to
&gt; distutils ...
&gt;
&gt; The recommended pip installer runs all setup.py scripts with
&gt; setuptools, even if the script itself only imports distutils. Refer to
&gt; the Python Packaging User Guide for more information.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove setup.py fallback that assumes postgres 7.4.0.</title>
<updated>2018-09-05T15:18:18+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2018-07-03T16:16:21+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=f86229d98b7ce37591c4fd8b3ec1e4c7eb761d31'/>
<id>f86229d98b7ce37591c4fd8b3ec1e4c7eb761d31</id>
<content type='text'>
pyscopg2 only supports postgres &gt;= 9.1 these days. Thus, taking this fallback will only lead to failure later down the line.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
pyscopg2 only supports postgres &gt;= 9.1 these days. Thus, taking this fallback will only lead to failure later down the line.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add testing and document support for Python 3.7</title>
<updated>2018-07-13T01:07:25+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-06-28T13:28:50+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=61e644049fb5fea153d7da944bc0f33b7f169b0f'/>
<id>61e644049fb5fea153d7da944bc0f33b7f169b0f</id>
<content type='text'>
Python 3.7 was released on June 27, 2018.

https://docs.python.org/3/whatsnew/3.7.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Python 3.7 was released on June 27, 2018.

https://docs.python.org/3/whatsnew/3.7.html
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into drop-2to3</title>
<updated>2018-05-20T22:56:29+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2018-05-20T22:56:29+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=e8a831dda2decd26f57bb227948da8af9237fb89'/>
<id>e8a831dda2decd26f57bb227948da8af9237fb89</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid quoting the string in the psycopg version macro</title>
<updated>2018-02-19T13:53:50+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2018-02-19T11:28:13+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=32f5a9fc1d24be502cc71d10a2cd396348891710'/>
<id>32f5a9fc1d24be502cc71d10a2cd396348891710</id>
<content type='text'>
Use a macro trick to add the quotes. This seems more portable than
passing the quotes to the command line (see #658).

https://gcc.gnu.org/onlinedocs/cpp/Stringizing.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use a macro trick to add the quotes. This seems more portable than
passing the quotes to the command line (see #658).

https://gcc.gnu.org/onlinedocs/cpp/Stringizing.html
</pre>
</div>
</content>
</entry>
</feed>
