Skip to content

Commit 26045b0

Browse files
committed
Allow running with Python 3.6 again
We test internally on older systems that have Python 3.6, so we know the code still works there.
1 parent 661eee9 commit 26045b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/saliweb/backend/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424

2525
# Version check
26-
if sys.version_info[0:2] < (3, 7):
27-
raise ImportError("This module requires Python 3.7 or later")
26+
if sys.version_info[0:2] < (3, 6):
27+
raise ImportError("This module requires Python 3.6 or later")
2828

2929

3030
class InvalidStateError(Exception):

0 commit comments

Comments
 (0)