<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/paste-git.git, branch fix-docs</title>
<subtitle>github.com: cdent/paste.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/'/>
<entry>
<title>Prepare docs for publishing to RTFD</title>
<updated>2018-10-24T12:37:51+00:00</updated>
<author>
<name>Chris Dent</name>
<email>cdent@anticdent.org</email>
</author>
<published>2018-10-24T12:37:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=dc73d5573e6c415fd5589309875221343755fa7b'/>
<id>dc73d5573e6c415fd5589309875221343755fa7b</id>
<content type='text'>
We'd like to have a stable location for documentation. The
destination will be https://pythonpaste.readthedocs.io

This change also tries to make sure that there are sufficient
warnings throughout about the status of Paste.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We'd like to have a stable location for documentation. The
destination will be https://pythonpaste.readthedocs.io

This change also tries to make sure that there are sufficient
warnings throughout about the status of Paste.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4 from cdent/cd/travis-ci</title>
<updated>2018-10-23T19:05:23+00:00</updated>
<author>
<name>Chris Dent</name>
<email>chris.dent@gmail.com</email>
</author>
<published>2018-10-23T19:05:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=8c174186edba0ab407e18cd5130d3bbb7a939416'/>
<id>8c174186edba0ab407e18cd5130d3bbb7a939416</id>
<content type='text'>
cd/travis ci</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
cd/travis ci</pre>
</div>
</content>
</entry>
<entry>
<title>Special case py37</title>
<updated>2018-10-23T18:10:41+00:00</updated>
<author>
<name>Chris Dent</name>
<email>cdent@anticdent.org</email>
</author>
<published>2018-10-23T18:10:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=8bb8c8631168bff5f655f0833489b28279fd8cb4'/>
<id>8bb8c8631168bff5f655f0833489b28279fd8cb4</id>
<content type='text'>
We need to use xenial as the dist to get python3.7 working
according to https://github.com/travis-ci/travis-ci/issues/9815
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We need to use xenial as the dist to get python3.7 working
according to https://github.com/travis-ci/travis-ci/issues/9815
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for limited testing with travis-ci</title>
<updated>2018-10-23T18:03:42+00:00</updated>
<author>
<name>Chris Dent</name>
<email>cdent@anticdent.org</email>
</author>
<published>2018-10-23T17:57:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=df4ac3b79019aded4c9dbe1cb6bfc8b631c07300'/>
<id>df4ac3b79019aded4c9dbe1cb6bfc8b631c07300</id>
<content type='text'>
This uses the matrix style for engaging with tox and tests
py27, 35, 36, 37 and pypy.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This uses the matrix style for engaging with tox and tests
py27, 35, 36, 37 and pypy.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #3 from zaneb/py3</title>
<updated>2018-10-23T17:52:34+00:00</updated>
<author>
<name>Chris Dent</name>
<email>chris.dent@gmail.com</email>
</author>
<published>2018-10-23T17:52:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=bd13d07eb59cb92f32a3ac150cf132e8b2965fb1'/>
<id>bd13d07eb59cb92f32a3ac150cf132e8b2965fb1</id>
<content type='text'>
Python 3 fixes</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Python 3 fixes</pre>
</div>
</content>
</entry>
<entry>
<title>Make iterators Python3-compatible</title>
<updated>2018-10-23T17:32:28+00:00</updated>
<author>
<name>Zane Bitter</name>
<email>zbitter@redhat.com</email>
</author>
<published>2018-10-23T17:32:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=10e5c641ecd45d896d25b0511438c9a9ce3c59e4'/>
<id>10e5c641ecd45d896d25b0511438c9a9ce3c59e4</id>
<content type='text'>
In Python3, the iterator protocol uses a method named __next__(), not
next(). (For compatibility with Python 2.6, we still need to support
both though.) Ensure all iterator objects support the Python3 protocol.

Signed-off-by: Zane Bitter &lt;zbitter@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In Python3, the iterator protocol uses a method named __next__(), not
next(). (For compatibility with Python 2.6, we still need to support
both though.) Ensure all iterator objects support the Python3 protocol.

Signed-off-by: Zane Bitter &lt;zbitter@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't raise StopIteration inside a generator</title>
<updated>2018-10-23T17:32:14+00:00</updated>
<author>
<name>Zane Bitter</name>
<email>zbitter@redhat.com</email>
</author>
<published>2018-10-23T17:28:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=777b6cd5b6b2159d32461846f53617fc7cb962be'/>
<id>777b6cd5b6b2159d32461846f53617fc7cb962be</id>
<content type='text'>
This will cause a runtime error in Python 3.7, due to PEP479.

Signed-off-by: Zane Bitter &lt;zbitter@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This will cause a runtime error in Python 3.7, due to PEP479.

Signed-off-by: Zane Bitter &lt;zbitter@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a simple .gitignore</title>
<updated>2018-10-23T16:41:14+00:00</updated>
<author>
<name>Chris Dent</name>
<email>cdent@anticdent.org</email>
</author>
<published>2018-10-23T16:41:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=bbff834a3e63c59141b22fefd8b3bbb8aa67762b'/>
<id>bbff834a3e63c59141b22fefd8b3bbb8aa67762b</id>
<content type='text'>
We can clean it up better as required.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We can clean it up better as required.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix up testing after switch to pytest</title>
<updated>2018-10-23T16:01:47+00:00</updated>
<author>
<name>Chris Dent</name>
<email>cdent@anticdent.org</email>
</author>
<published>2018-10-23T16:01:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=9fcc98bd3e5bde3a26326f3156845093f84b8832'/>
<id>9fcc98bd3e5bde3a26326f3156845093f84b8832</id>
<content type='text'>
pytest exposes many warnings, some but not all of which are cleaned
up here. The main switch is to use html.escape instead of cgi.escape.
This inspired the addition of 'future' to requirements.

The remaining warnings are related to pytest deprecations or over-eager
test discovery.

It is perhaps ironic that the switch to pytest is to avoid nose being
mostly dead, and now we are using features in pytest that pytest wants
to make dead. These are left for later cleanups, which means that
running the tests is noisy.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
pytest exposes many warnings, some but not all of which are cleaned
up here. The main switch is to use html.escape instead of cgi.escape.
This inspired the addition of 'future' to requirements.

The remaining warnings are related to pytest deprecations or over-eager
test discovery.

It is perhaps ironic that the switch to pytest is to avoid nose being
mostly dead, and now we are using features in pytest that pytest wants
to make dead. These are left for later cleanups, which means that
running the tests is noisy.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1 from cdent/pytest</title>
<updated>2018-10-23T15:09:42+00:00</updated>
<author>
<name>Chris Dent</name>
<email>chris.dent@gmail.com</email>
</author>
<published>2018-10-23T15:09:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=9a873a24759f69d6414042abdfc2fde21f8cca21'/>
<id>9a873a24759f69d6414042abdfc2fde21f8cca21</id>
<content type='text'>
Switch from nose to pytest</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Switch from nose to pytest</pre>
</div>
</content>
</entry>
</feed>
