Skip to content

Commit d07ae49

Browse files
zaberstage: Require Python 3.5
1 parent 18214cb commit d07ae49

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ZaberStageController/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
# #
1212
#####################################################################
1313

14-
#TODO: check Python version high enough for zaber API
15-
14+
import sys
15+
if sys.version_info < (3, 5):
16+
raise RuntimeError("Zaber stage labscript driver requires Python 3.5+")

0 commit comments

Comments
 (0)