From 2f7f2425cfff35eb711f17e65100c2f70acf652a Mon Sep 17 00:00:00 2001 From: Ben Webb Date: Wed, 26 Jun 2024 10:20:05 -0700 Subject: [PATCH] We no longer support Python 2 No need to check for Python 2 any more, since we will always be using Python 3. --- .../examples/toy/Simple_spatiotemporal_example.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/modules/spatiotemporal/examples/toy/Simple_spatiotemporal_example.py b/modules/spatiotemporal/examples/toy/Simple_spatiotemporal_example.py index 11495e3160..248ca36da3 100644 --- a/modules/spatiotemporal/examples/toy/Simple_spatiotemporal_example.py +++ b/modules/spatiotemporal/examples/toy/Simple_spatiotemporal_example.py @@ -1,12 +1,5 @@ -import sys - # Example of model without temporal scoring ----------------------------------------------------------------- -if sys.version_info[0] < 3: - print("Sorry, this example needs Python 3 and a recent version of numpy") - sys.exit(0) - - # import relevant modules import pandas import IMP.spatiotemporal as spatiotemporal