Skip to content

DOC: Fix flake8 issues in doc/source/whatsnew/v0.10.*.rst #24259

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
saurav2608 opened this issue Dec 13, 2018 · 1 comment · Fixed by #24277
Closed

DOC: Fix flake8 issues in doc/source/whatsnew/v0.10.*.rst #24259

saurav2608 opened this issue Dec 13, 2018 · 1 comment · Fixed by #24277

Comments

@saurav2608
Copy link

xref: #24177

We didn't start validating the format of PEP8 and other code standards in the documentation examples until recently. We still have some files with errors, that we need to skip, and that we should fix, so we can start validating them.

Two steps are required to replicate the issue

  1. Edit setup.cfg in the pandas home, and in the flake8-rst section, remove from the exclude list the file doc/source/whatsnew/v0.10.0.rst & doc/source/whatsnew/v0.10.1.rst

  2. Remove the import block ( from pandas import *) from the lines (8-11) of the file v0.10.*.rst.

After that, running the next command will report the errors in the file (note that syntax error usually prevent to validate other errors, and the list of errors to fix can become much longer when the syntax error is fixed (please make sure that you are using flake8-rst version 0.7.0 or higher):

$ flake8-rst doc/source/whatsnew/v0.10.*
doc/source/whatsnew/v0.10.0.rst:58:25: E261 at least two spaces before inline comment
doc/source/whatsnew/v0.10.0.rst:75:21: F821 undefined name 'Series'
doc/source/whatsnew/v0.10.0.rst:185:9: E225 missing whitespace around operator
doc/source/whatsnew/v0.10.0.rst:187:17: F821 undefined name 'StringIO'
doc/source/whatsnew/v0.10.0.rst:188:17: F821 undefined name 'StringIO'
doc/source/whatsnew/v0.10.0.rst:197:17: F821 undefined name 'StringIO'
doc/source/whatsnew/v0.10.0.rst:198:17: F821 undefined name 'StringIO'
...
doc/source/whatsnew/v0.10.1.rst:46:4: F821 undefined name 'os'
doc/source/whatsnew/v0.10.1.rst:53:12: F821 undefined name 'HDFStore'
doc/source/whatsnew/v0.10.1.rst:54:9: F821 undefined name 'DataFrame'
doc/source/whatsnew/v0.10.1.rst:54:19: F821 undefined name 'randn'
doc/source/whatsnew/v0.10.1.rst:54:38: F821 undefined name 'date_range'
doc/source/whatsnew/v0.10.1.rst:55:15: E128 continuation line under-indented for visual indent
doc/source/whatsnew/v0.10.1.rst:63:39: E251 unexpected spaces around keyword / parameter equals
...

Once all the errors are addressed, please open a pull request with the fixes in the file, and removing the file from setup.cfg. If you need to do something that feels wrong to fix an error, please ask in a comment to this issue. Please avoid other unrelated changes, which can be addressed in a separate pull request.
cc: @datapythonista

@saurav2608
Copy link
Author

I am taking this up.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants