__init__: use canonical "dev" instead of "develop"

see https://peps.python.org/pep-0440/#implicit-development-release-number
This commit is contained in:
Joe Schr 2022-03-11 18:22:55 +01:00
parent ef8f6783c7
commit 70bcc70826

View File

@ -1,7 +1,7 @@
""" Freqtrade bot """ """ Freqtrade bot """
__version__ = '2022.2.1-develop' __version__ = '2022.2.1-dev'
if __version__.endswith('develop'): if __version__.endswith('dev'):
try: try:
import subprocess import subprocess