From 9fb894f3d8bc831e785d2b6d73ffeef80e3e1042 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Men=C3=A9ndez=20Hurtado?= Date: Thu, 3 Sep 2015 17:33:03 +0200 Subject: [PATCH] FIX: missing compatibility Py2/3 --- GPy/inference/mcmc/samplers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/inference/mcmc/samplers.py b/GPy/inference/mcmc/samplers.py index 6459e8af..02b677ba 100644 --- a/GPy/inference/mcmc/samplers.py +++ b/GPy/inference/mcmc/samplers.py @@ -1,6 +1,6 @@ # ## Copyright (c) 2014, Zhenwen Dai # Licensed under the BSD 3-clause license (see LICENSE.txt) - +from __future__ import print_function import numpy as np from scipy import linalg, optimize