Nidhogg/valheim_bot/__init__.py
2021-06-27 19:09:02 +01:00

9 lines
201 B
Python

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