From 04a9d9d994e2a0f5957747e1e2b862da96c75326 Mon Sep 17 00:00:00 2001 From: bobturneruk Date: Thu, 24 Sep 2020 11:14:14 +0100 Subject: [PATCH] remove deprecated parameter --- GPy/testing/plotting_tests.py | 2 +- travis_tests.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GPy/testing/plotting_tests.py b/GPy/testing/plotting_tests.py index 23564ff3..90dceab0 100644 --- a/GPy/testing/plotting_tests.py +++ b/GPy/testing/plotting_tests.py @@ -38,7 +38,7 @@ from nose import SkipTest try: import matplotlib - matplotlib.use('agg', warn=False) + matplotlib.use('agg') except ImportError: # matplotlib not installed from nose import SkipTest diff --git a/travis_tests.py b/travis_tests.py index bd3f5680..16713962 100644 --- a/travis_tests.py +++ b/travis_tests.py @@ -31,7 +31,7 @@ #!/usr/bin/env python import matplotlib -matplotlib.use('agg', warn=False) +matplotlib.use('agg') import nose, warnings with warnings.catch_warnings():