mirror of https://github.com/m-labs/artiq.git
setup: minimum Python version is 3.11 (StreamWriter.start_tls)
This commit is contained in:
parent
9f9acb3528
commit
322f9f6e55
4
setup.py
4
setup.py
|
@ -6,8 +6,8 @@ import sys
|
||||||
import versioneer
|
import versioneer
|
||||||
|
|
||||||
|
|
||||||
if sys.version_info[:2] < (3, 7):
|
if sys.version_info[:2] < (3, 11):
|
||||||
raise Exception("You need Python 3.7+")
|
raise Exception("You need Python 3.11+")
|
||||||
|
|
||||||
|
|
||||||
# Depends on PyQt6, but setuptools cannot check for it.
|
# Depends on PyQt6, but setuptools cannot check for it.
|
||||||
|
|
Loading…
Reference in New Issue