<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pep8.git/docs, branch E306_async_def</title>
<subtitle>github.com: jcrocholl/pep8.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pep8.git/'/>
<entry>
<title>Add check for over-indented blocks</title>
<updated>2019-01-25T02:04:21+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2017-11-05T23:46:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pep8.git/commit/?id=68335d1a6d65de7ed09af580bdb909c5f6c139c2'/>
<id>68335d1a6d65de7ed09af580bdb909c5f6c139c2</id>
<content type='text'>
In a project with all lines indented 4 spaces, I noticed pycodestyle was
not catching code that was accidentally indented two levels (8 spaces).
The over indentation was unintended and can be caught during static
analysis.

Fixes #430
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In a project with all lines indented 4 spaces, I noticed pycodestyle was
not catching code that was accidentally indented two levels (8 spaces).
The over indentation was unintended and can be caught during static
analysis.

Fixes #430
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove suggestion and documentation of using unmaintained nose</title>
<updated>2018-09-15T18:44:01+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-09-15T18:14:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pep8.git/commit/?id=64c2e300cd1aed0abc82e75ed1139cc989c0e1b9'/>
<id>64c2e300cd1aed0abc82e75ed1139cc989c0e1b9</id>
<content type='text'>
The nose project has ceased development. The last commit is from Mar 3,
2016. From their docs page:

https://nose.readthedocs.io/

&gt; Note to Users
&gt;
&gt; Nose has been in maintenance mode for the past several years and will
&gt; likely cease without a new person/team to take over maintainership.
&gt; New projects should consider using Nose2, py.test, or just plain
&gt; unittest/unittest2.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The nose project has ceased development. The last commit is from Mar 3,
2016. From their docs page:

https://nose.readthedocs.io/

&gt; Note to Users
&gt;
&gt; Nose has been in maintenance mode for the past several years and will
&gt; likely cease without a new person/team to take over maintainership.
&gt; New projects should consider using Nose2, py.test, or just plain
&gt; unittest/unittest2.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update all pypi.python.org URLs to pypi.org</title>
<updated>2018-06-10T01:00:22+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-06-10T01:00:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pep8.git/commit/?id=82a2408c0c097d99d6ecfe13e876cdb77f37e112'/>
<id>82a2408c0c097d99d6ecfe13e876cdb77f37e112</id>
<content type='text'>
For details on the new PyPI, see the blog post:

https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For details on the new PyPI, see the blog post:

https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove support for EOL Python 2.6 and 3.3</title>
<updated>2018-06-02T15:45:53+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-01-17T01:37:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pep8.git/commit/?id=06900154096902ebbd8076b4ff22a4f41327626d'/>
<id>06900154096902ebbd8076b4ff22a4f41327626d</id>
<content type='text'>
Python 2.6 an 3.3 are end of life. They are no longer receiving bug
fixes, including for security issues. Python 2.6 went EOL on 2013-10-29
and 3.3 on 2017-09-29. For additional details on support Python
versions, see:

https://devguide.python.org/#status-of-python-branches

Removing support for EOL Pythons will reduce testing and maintenance
resources. Removed all workarounds for older Pythons.

Updated trove classifiers and documentation to better communicate
supported Python versions.

Additionally, pass python_requires argument to setuptools. Helps pip
decide what version of the library to install.

https://packaging.python.org/tutorials/distributing-packages/#python-requires

&gt; If your project only runs on certain Python versions, setting the
&gt; python_requires argument to the appropriate PEP 440 version specifier
&gt; string will prevent pip from installing the project on other Python
&gt; versions.

https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords

&gt; python_requires
&gt;
&gt; A string corresponding to a version specifier (as defined in PEP 440)
&gt; for the Python version, used to specify the Requires-Python defined in
&gt; PEP 345.

Can now use more modern Python syntax including dictionary comprehension
as well as more generators.

Closes #755
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Python 2.6 an 3.3 are end of life. They are no longer receiving bug
fixes, including for security issues. Python 2.6 went EOL on 2013-10-29
and 3.3 on 2017-09-29. For additional details on support Python
versions, see:

https://devguide.python.org/#status-of-python-branches

Removing support for EOL Pythons will reduce testing and maintenance
resources. Removed all workarounds for older Pythons.

Updated trove classifiers and documentation to better communicate
supported Python versions.

Additionally, pass python_requires argument to setuptools. Helps pip
decide what version of the library to install.

https://packaging.python.org/tutorials/distributing-packages/#python-requires

&gt; If your project only runs on certain Python versions, setting the
&gt; python_requires argument to the appropriate PEP 440 version specifier
&gt; string will prevent pip from installing the project on other Python
&gt; versions.

https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords

&gt; python_requires
&gt;
&gt; A string corresponding to a version specifier (as defined in PEP 440)
&gt; for the Python version, used to specify the Requires-Python defined in
&gt; PEP 345.

Can now use more modern Python syntax including dictionary comprehension
as well as more generators.

Closes #755
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement W505 - Max Doc Length check</title>
<updated>2018-05-11T16:35:21+00:00</updated>
<author>
<name>Brian Van Klaveren</name>
<email>bvan@slac.stanford.edu</email>
</author>
<published>2018-05-11T16:35:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pep8.git/commit/?id=f6139a8e47dba691046ef82b6ab9b29e3bf38690'/>
<id>f6139a8e47dba691046ef82b6ab9b29e3bf38690</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add explanation about the default configuration</title>
<updated>2018-04-22T20:00:41+00:00</updated>
<author>
<name>Toshiki Hirao</name>
<email>hirao.toshiki.ho7@is.naist.jp</email>
</author>
<published>2018-04-22T20:00:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pep8.git/commit/?id=11ba4cc825e3753a5b662efe41942b6b3021d7e5'/>
<id>11ba4cc825e3753a5b662efe41942b6b3021d7e5</id>
<content type='text'>
Closes gh-685</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes gh-685</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #684 from jdufresne/async-await</title>
<updated>2018-02-17T21:01:03+00:00</updated>
<author>
<name>Ian Stapleton Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2018-02-17T21:01:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pep8.git/commit/?id=eb91b79ab38aad4d44a3b52b02605412f32ba5ae'/>
<id>eb91b79ab38aad4d44a3b52b02605412f32ba5ae</id>
<content type='text'>
Add W606 warning for async and await keywords in Python 3.7</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add W606 warning for async and await keywords in Python 3.7</pre>
</div>
</content>
</entry>
<entry>
<title>Describe code W504 line break after binary operator</title>
<updated>2018-01-23T10:37:54+00:00</updated>
<author>
<name>Peter Cock</name>
<email>p.j.a.cock@googlemail.com</email>
</author>
<published>2018-01-23T10:37:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pep8.git/commit/?id=80684c4c48716837b06a2b0d6cd421851b1a0ae6'/>
<id>80684c4c48716837b06a2b0d6cd421851b1a0ae6</id>
<content type='text'>
Cross reference changes in pull request #502 which added this.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Cross reference changes in pull request #502 which added this.</pre>
</div>
</content>
</entry>
<entry>
<title>Add Python 3.6</title>
<updated>2017-12-11T10:13:37+00:00</updated>
<author>
<name>Hugo</name>
<email>hugovk@users.noreply.github.com</email>
</author>
<published>2017-12-11T10:13:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pep8.git/commit/?id=b556d30f6426c854140fb13521159071ee529056'/>
<id>b556d30f6426c854140fb13521159071ee529056</id>
<content type='text'>
Plus Travis CI typo</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Plus Travis CI typo</pre>
</div>
</content>
</entry>
<entry>
<title>Fix space in flag name</title>
<updated>2017-10-25T15:03:03+00:00</updated>
<author>
<name>Wilfred Hughes</name>
<email>whughes@ahl.com</email>
</author>
<published>2017-10-25T15:03:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pep8.git/commit/?id=331fc8512e77732b9bac1e9ed5dc92bef3065cc4'/>
<id>331fc8512e77732b9bac1e9ed5dc92bef3065cc4</id>
<content type='text'>
Previously, the line break in the source would result in
`--hang- closing` (note the space) being rendered in the HTML.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, the line break in the source would result in
`--hang- closing` (note the space) being rendered in the HTML.
</pre>
</div>
</content>
</entry>
</feed>
