Merge pull request #767 from lausaa/master

python3.6+ is needed for casctl
This commit is contained in:
Robert Baldyga 2021-04-08 14:36:33 +02:00 committed by GitHub
commit b7daa67a71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,8 +10,8 @@ import sys
import opencas
if sys.version_info < (3, 5):
raise RuntimeError('At least Python 3.5 is required')
if sys.version_info < (3, 6):
raise RuntimeError('At least Python 3.6 is required')
def eprint(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)