Skip to content

Commit

Permalink
remove test for python 3.5 since tk error
Browse files Browse the repository at this point in the history
  • Loading branch information
bearney74 committed Mar 6, 2017
1 parent a712f1c commit 289bc1b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ def test_issue_368():
if sys.version_info < (3,4): #matplotlib only supported in python >= 3.4
return

if sys.version_info == (3,5): # $DISPLAY not set error in 3.5..
return # so ignore 3.5 for now

import numpy as np
import matplotlib.pyplot as plt
from sklearn import svm # sklearn = scikit-learn
Expand Down

0 comments on commit 289bc1b

Please sign in to comment.