matrix-reminder-bot/matrix_reminder_bot/__init__.py

9 lines
209 B
Python

import sys
# Check that we're not running on an unsupported Python version.
if sys.version_info < (3, 8):
print("matrix_reminder_bot requires Python 3.8 or above.")
sys.exit(1)
__version__ = "0.3.0"