<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sphinx-git.git/sphinx/testing, branch v2.0.0b2</title>
<subtitle>github.com: sphinx-doc/sphinx.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/'/>
<entry>
<title>Python-3-only clean ups discovered by pyupgrade</title>
<updated>2019-03-18T16:09:48+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-03-17T19:49:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=22afc77c488e85ccd51303a223f450705b30217b'/>
<id>22afc77c488e85ccd51303a223f450705b30217b</id>
<content type='text'>
https://github.com/asottile/pyupgrade

&gt; A tool to automatically upgrade syntax for newer versions of the
&gt; language.

- Drop u str prefix
- Drop base object inheritance
- Drop args to super()
- Use set literals
- Use dict comprehension
- Use set comprehension
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/asottile/pyupgrade

&gt; A tool to automatically upgrade syntax for newer versions of the
&gt; language.

- Drop u str prefix
- Drop base object inheritance
- Drop args to super()
- Use set literals
- Use dict comprehension
- Use set comprehension
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '2.0' into 2155_code_directive</title>
<updated>2019-03-10T03:05:26+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2019-03-10T03:05:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=cf74a71848111bcc05c0cd2e55eaa4c76d6526df'/>
<id>cf74a71848111bcc05c0cd2e55eaa4c76d6526df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up import for annotations</title>
<updated>2019-03-06T14:44:44+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2019-03-06T14:44:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=dbefc9865d8c2c4006ed52475d1bff865358cd00'/>
<id>dbefc9865d8c2c4006ed52475d1bff865358cd00</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add sphinx.testing.restructuredtext.parse()</title>
<updated>2019-03-03T10:55:31+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2019-03-03T09:21:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=bde9cab7feb93fe533ac351a0d7500ae181c35ce'/>
<id>bde9cab7feb93fe533ac351a0d7500ae181c35ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Stop to use $SPHINX_TEST_TEMPDIR envvar</title>
<updated>2019-01-13T14:50:18+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2019-01-07T12:15:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=d6fc5c90950d541a826a99a8bb88039a701f1a00'/>
<id>d6fc5c90950d541a826a99a8bb88039a701f1a00</id>
<content type='text'>
At once, we added $SPHINX_TEST_TEMPDIR to keep intermediate files of
testing to investigate the failures.  At present, we've used pytest
as a test runner.  And it keeps temporary directories of last 3
testings.  So this starts to use it instead of $SPHINX_TEST_TEMPDIR.
https://docs.pytest.org/en/latest/tmpdir.html#the-default-base-temporary-directory
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
At once, we added $SPHINX_TEST_TEMPDIR to keep intermediate files of
testing to investigate the failures.  At present, we've used pytest
as a test runner.  And it keeps temporary directories of last 3
testings.  So this starts to use it instead of $SPHINX_TEST_TEMPDIR.
https://docs.pytest.org/en/latest/tmpdir.html#the-default-base-temporary-directory
</pre>
</div>
</content>
</entry>
<entry>
<title>Use subprocess.run() instead of Popen()</title>
<updated>2019-01-13T14:25:54+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2019-01-12T11:14:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=46334a2b001878498f8b9d03b137bad3d2b13460'/>
<id>46334a2b001878498f8b9d03b137bad3d2b13460</id>
<content type='text'>
Since python3.5, subprocess.run() has been introduced. It works a
wrapper of Popen, and it looks much simple and better. This uses it
instead of Popen to make our code simple.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since python3.5, subprocess.run() has been introduced. It works a
wrapper of Popen, and it looks much simple and better. This uses it
instead of Popen to make our code simple.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add PathComparer for testing and fix 2 test failure on Windows. (#5943)</title>
<updated>2019-01-13T09:40:35+00:00</updated>
<author>
<name>Takayuki SHIMIZUKAWA</name>
<email>shimizukawa@gmail.com</email>
</author>
<published>2019-01-13T09:40:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=795b51846484a5465c821873a19d32567e1d4e32'/>
<id>795b51846484a5465c821873a19d32567e1d4e32</id>
<content type='text'>
commits are squashed.

* Add PathComparer for testing and fix 2 test failure on Windows.
* fix flake8
* add type information by f2f review. Thanks to @tk0miya!
* fix mypy, flake8 again..
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
commits are squashed.

* Add PathComparer for testing and fix 2 test failure on Windows.
* fix flake8
* add type information by f2f review. Thanks to @tk0miya!
* fix mypy, flake8 again..
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove use of deprecated APIs</title>
<updated>2019-01-03T04:27:33+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2019-01-03T04:27:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=a0e139047208643ac78027f486079aa58344f86e'/>
<id>a0e139047208643ac78027f486079aa58344f86e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '1.8'</title>
<updated>2019-01-02T07:16:25+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2019-01-02T07:16:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=76e9f57c2e4457dec11d258435b7a6c6ec5de005'/>
<id>76e9f57c2e4457dec11d258435b7a6c6ec5de005</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>A happy new year!</title>
<updated>2019-01-02T07:00:30+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2019-01-02T07:00:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=1b1ebd2c7539ebf6a1dfa1ea247e659f98fa9eaf'/>
<id>1b1ebd2c7539ebf6a1dfa1ea247e659f98fa9eaf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
