From 71249081eaa4f593d0e85b56e4b1eab3f48f6251 Mon Sep 17 00:00:00 2001 From: "Marc P. Rostock" Date: Sun, 7 Apr 2019 20:28:19 +0200 Subject: [PATCH] Changed to use py3.6 behavior also with python 3.7 and above. --- plotly/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotly/utils.py b/plotly/utils.py index da0833cdc98..a7933863c37 100644 --- a/plotly/utils.py +++ b/plotly/utils.py @@ -36,7 +36,7 @@ lock = threading.Lock() PY36 = ( - sys.version_info.major == 3 and sys.version_info.minor == 6 + sys.version_info.major == 3 and sys.version_info.minor >= 6 )