Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a38b091

Browse files
committed
MAINT moved some maintenance and helper python scripts to tools/
1 parent 87a4c3e commit a38b091

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pytest.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@ markers =
1010
pep8ignore =
1111
* 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
1212

13-
boilerplate.py E501
13+
tools/boilerplate.py E501
1414
setup.py E402 E501
1515
setupext.py E301 E302 E501
1616
setup_external_compile.py E302 E501 E711
1717
versioneer.py ALL # External file.
18-
1918
tools/gh_api.py ALL # External file.
2019
tools/github_stats.py ALL # External file.
2120
tools/subset.py E221 E231 E251 E261 E302 E501 E701 E703

tools/README.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Tools developed for Matplotlib

boilerplate.py renamed to tools/boilerplate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def format_value(value):
365365

366366

367367
def build_pyplot():
368-
pyplot_path = os.path.join(os.path.dirname(__file__), 'lib',
368+
pyplot_path = os.path.join("../", os.path.dirname(__file__), 'lib',
369369
'matplotlib', 'pyplot.py')
370370

371371
pyplot_orig = open(pyplot_path, 'r').readlines()

0 commit comments

Comments
 (0)