From eacd3831bbac4b767af40776df5a0d70d1a35503 Mon Sep 17 00:00:00 2001 From: Heloise Date: Thu, 4 May 2023 08:43:03 +0100 Subject: [PATCH] HOT FIX __minimum_python_version_ error I've noticed an error when running the sedfitting routines on my new laptop - probably because of python >3.8 --- hoki/sedfitting/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/hoki/sedfitting/__init__.py b/hoki/sedfitting/__init__.py index af5392c..fb6da45 100644 --- a/hoki/sedfitting/__init__.py +++ b/hoki/sedfitting/__init__.py @@ -131,7 +131,3 @@ def plot_voronoi(x, y, counts, pixelsize, ax, cmap='hot', origin=None, **kwargs) class UnsupportedPythonError(Exception): pass - -if LooseVersion(sys.version) < LooseVersion(__minimum_python_version__): - raise UnsupportedPythonError("hoki does not support Python < {}" - .format(__minimum_python_version__))