Skip to content

Commit

Permalink
Merge pull request #6442 from matthew-brett/dynamic-tkagg
Browse files Browse the repository at this point in the history
MRG: loading TCL / Tk symbols dynamically
  • Loading branch information
efiring committed May 24, 2016
2 parents 8bab42d + aa275c6 commit f3e5576
Show file tree
Hide file tree
Showing 5 changed files with 390 additions and 328 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -123,6 +123,8 @@ script:
# Travis VM to run out of memory (since so many copies of inkscape and
# ghostscript are running at the same time).
- |
echo Testing import of tkagg backend
MPLBACKEND="tkagg" python -c 'import matplotlib.pyplot as plt; print(plt.get_backend())'
echo Testing using $NPROC processes
echo The following args are passed to nose $NOSE_ARGS
if [[ $BUILD_DOCS == false ]]; then
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Expand Up @@ -88,6 +88,8 @@ install:
test_script:
# Now build the thing..
- '%CMD_IN_ENV% python setup.py develop'
# Test import of tkagg backend
- python -c "import matplotlib as m; m.use('tkagg'); import matplotlib.pyplot as plt; print(plt.get_backend())"
# tests
- python tests.py
# remove to get around libpng issue?
Expand Down

0 comments on commit f3e5576

Please sign in to comment.