From 289bc1be71026f45af4d6a359bed975a39b840ee Mon Sep 17 00:00:00 2001 From: Billy Earney Date: Mon, 6 Mar 2017 08:58:11 -0600 Subject: [PATCH] remove test for python 3.5 since tk error --- tests/test_issues.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_issues.py b/tests/test_issues.py index fd0872115..6978bdbd4 100644 --- a/tests/test_issues.py +++ b/tests/test_issues.py @@ -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