Skip to content

MAINT moved some maintenance and helper python scripts to tools/ #8276

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

Merged
merged 2 commits into from
Mar 13, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ markers =
pep8ignore =
* E111 E114 E115 E116 E121 E122 E123 E124 E125 E126 E127 E128 E129 E131 E226 E240 E241 E242 E243 E244 E245 E246 E247 E248 E249 E265 E266 E704 W503

boilerplate.py E501
tools/boilerplate.py E501
setup.py E402 E501
setupext.py E301 E302 E501
setup_external_compile.py E302 E501 E711
versioneer.py ALL # External file.

tools/gh_api.py ALL # External file.
tools/github_stats.py ALL # External file.
tools/subset.py E221 E231 E251 E261 E302 E501 E701 E703
Expand Down
1 change: 1 addition & 0 deletions tools/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Tools developed for Matplotlib
2 changes: 1 addition & 1 deletion boilerplate.py → tools/boilerplate.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def format_value(value):


def build_pyplot():
pyplot_path = os.path.join(os.path.dirname(__file__), 'lib',
pyplot_path = os.path.join(os.path.dirname(__file__), "..", 'lib',
'matplotlib', 'pyplot.py')

pyplot_orig = open(pyplot_path, 'r').readlines()
Expand Down