2020-08-06 22:16:57 +02:00
|
|
|
import sys
|
|
|
|
|
|
|
|
# Check that we're not running on an unsupported Python version.
|
|
|
|
if sys.version_info < (3, 5):
|
2022-06-13 20:55:01 +02:00
|
|
|
print("matrix_alertbot requires Python 3.5 or above.")
|
2020-08-06 22:16:57 +02:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
__version__ = "0.0.1"
|