<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/setup.py, branch rel_1_1</title>
<subtitle>github.com: zzzeek/sqlalchemy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/'/>
<entry>
<title>- further changes to avoid pytest warnings</title>
<updated>2017-01-17T20:51:02+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2017-01-17T20:51:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f2028dc5afec506fd3ad8c78b0275e76bf172b2a'/>
<id>f2028dc5afec506fd3ad8c78b0275e76bf172b2a</id>
<content type='text'>
Change-Id: Ia83a996ff97a6ba54a0666a32241e570f3852ab4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ia83a996ff97a6ba54a0666a32241e570f3852ab4
</pre>
</div>
</content>
</entry>
<entry>
<title>update pytest good practices link in PyTest class</title>
<updated>2016-06-16T15:51:53+00:00</updated>
<author>
<name>Mark Sandan</name>
<email>msandan@utexas.edu</email>
</author>
<published>2016-04-22T22:42:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=42078107f160d52e358db309d54c966440cc8a26'/>
<id>42078107f160d52e358db309d54c966440cc8a26</id>
<content type='text'>
Change-Id: Ie96edd05e962663e9ddeeda85b24858caabd3bfd
Pull-request: https://github.com/zzzeek/sqlalchemy/pull/262
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ie96edd05e962663e9ddeeda85b24858caabd3bfd
Pull-request: https://github.com/zzzeek/sqlalchemy/pull/262
</pre>
</div>
</content>
</entry>
<entry>
<title>- add a new qualifier "native" vs. "dbapi" unicode to avoid</title>
<updated>2016-01-24T23:28:09+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2016-01-24T23:28:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=6b0515039214fa16aa83c9f8164d7011e4748175'/>
<id>6b0515039214fa16aa83c9f8164d7011e4748175</id>
<content type='text'>
profiling problems here
- add extras_require to setup.py for the most common DBAPIs
- rework tox.ini to use extras, specify a test matrix built in
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
profiling problems here
- add extras_require to setup.py for the most common DBAPIs
- rework tox.ini to use extras, specify a test matrix built in
</pre>
</div>
</content>
</entry>
<entry>
<title>Tell Wheel to generate platform and interpreter specific wheels</title>
<updated>2015-08-13T18:57:53+00:00</updated>
<author>
<name>Donald Stufft</name>
<email>donald@stufft.io</email>
</author>
<published>2015-08-13T18:57:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=39517d10466eecb1411b2b3bd6569ae22a9ded0e'/>
<id>39517d10466eecb1411b2b3bd6569ae22a9ded0e</id>
<content type='text'>
By telling wheel that we have extension modules, even though we
have none, wheel will create a Wheel which is platform and
interpreter specific. This will ensure that the pure Python wheels
on PyPy do not trigger installs on CPython without the C speedups.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
By telling wheel that we have extension modules, even though we
have none, wheel will create a Wheel which is platform and
interpreter specific. This will ensure that the pure Python wheels
on PyPy do not trigger installs on CPython without the C speedups.
</pre>
</div>
</content>
</entry>
<entry>
<title>- we can again use setuptools.find_packages since we require setuptools</title>
<updated>2015-08-13T18:48:18+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-08-13T18:48:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=44420423de34c54486c0210076c233e5b9f57ee2'/>
<id>44420423de34c54486c0210076c233e5b9f57ee2</id>
<content type='text'>
- clean up other things we aren't using anymore
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- clean up other things we aren't using anymore
</pre>
</div>
</content>
</entry>
<entry>
<title>- remove "distutils-only" mode, use setuptools only</title>
<updated>2015-07-24T22:52:25+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-07-24T22:52:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=5ab9ab7940a683231180703154e5753f3ce105b9'/>
<id>5ab9ab7940a683231180703154e5753f3ce105b9</id>
<content type='text'>
- add first-class "pytest" runner to setup.py, fixes #3489
- remove references to setuptools Feature and mark that "--without-cextensions"
 is removed, fixes #3500
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- add first-class "pytest" runner to setup.py, fixes #3489
- remove references to setuptools Feature and mark that "--without-cextensions"
 is removed, fixes #3500
</pre>
</div>
</content>
</entry>
<entry>
<title>- have python setup.py test use xdist with -q</title>
<updated>2014-08-08T17:51:58+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2014-08-08T17:51:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=95547596426af7e4e1604aa0c2a2e11c2c51e41d'/>
<id>95547596426af7e4e1604aa0c2a2e11c2c51e41d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed style to conform to PEP8</title>
<updated>2014-07-10T22:28:49+00:00</updated>
<author>
<name>Brian Jarrett</name>
<email>celttechie@gmail.com</email>
</author>
<published>2014-07-10T22:28:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=304e5b2a11701442af6d35ebc22c5b84454197d9'/>
<id>304e5b2a11701442af6d35ebc22c5b84454197d9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed bug where "python setup.py test" wasn't calling into</title>
<updated>2014-07-09T19:50:17+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2014-07-09T19:50:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=99350b159f736fe8c2c95eabb4d332d9fab73eb9'/>
<id>99350b159f736fe8c2c95eabb4d332d9fab73eb9</id>
<content type='text'>
distutils appropriately, and errors would be emitted at the end
of the test suite.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
distutils appropriately, and errors would be emitted at the end
of the test suite.
</pre>
</div>
</content>
</entry>
<entry>
<title>- we aren't supporting py2.5 so just simplify this import for platform, re: #2986</title>
<updated>2014-03-22T21:49:35+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2014-03-22T21:49:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=56ef17e0f7b4a58fff6f35f15b1e8a5437191bcc'/>
<id>56ef17e0f7b4a58fff6f35f15b1e8a5437191bcc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
