From 5a690f4e36ea50d5401ba37d013ef425a98f2542 Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Sat, 2 Jul 2016 16:44:13 +0200 Subject: [PATCH] Prints the current pandas version and reports the minimum required version --- scripts/database/database.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/database/database.py b/scripts/database/database.py index 49bc1801..a91fcffa 100644 --- a/scripts/database/database.py +++ b/scripts/database/database.py @@ -22,6 +22,7 @@ except ImportError: # Additional modules import pandas as pd +print("## Using pandas version "+pd.__version__+", requires at least 0.18.0") # Server storing a copy of the database DATABASE_SERVER_URL = "http://www.cedricnugteren.nl/tuning/clblast.db"