Warn if running too-new, untested Python version. Break out version reqs into separate file for more visibility.
This commit is contained in:
parent
2b328defcc
commit
8ac0ce1905
2 changed files with 45 additions and 5 deletions
10
evennia/VERSION_REQS.txt
Normal file
10
evennia/VERSION_REQS.txt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# These are read by the evennia/server/evennia_launcher.py to give more explicit
|
||||
# errors/warnings when trying to run Evennia with wrong/unexpected versions (this happens
|
||||
# when people upgrade outside regular channels). This file only supports lines of
|
||||
# `value = number` and only specific names supported by the handler.
|
||||
|
||||
PYTHON_MIN = 3.9
|
||||
PYTHON_MAX_TESTED = 3.11
|
||||
TWISTED_MIN = 20.3.0
|
||||
DJANGO_MIN = 4.0.2
|
||||
DJANGO_LT = 4.1
|
||||
Loading…
Add table
Add a link
Reference in a new issue