From 7bf4fba85a2491dbcb4751e42999f4e19d9789f1 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Thu, 1 Apr 2021 14:47:24 +0100 Subject: [PATCH] Version to 4.2.0-beta1 to distinguish Python 3.8 builds * I don't want to be checking something against 4.1.x releases when my last build was with Python 3.8. # Conflicts: # config.py # Conflicts: # config.py # Conflicts: # config.py --- config.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/config.py b/config.py index f8afe737..5941b5a1 100644 --- a/config.py +++ b/config.py @@ -40,9 +40,10 @@ appcmdname = 'EDMC' # appversion **MUST** follow Semantic Versioning rules: # # Major.Minor.Patch(-prerelease)(+buildmetadata) -# NB: Do *not* import this, use the functions appversion() and appversion_nobuild() -_static_appversion = '5.0.0-beta2' -copyright = '© 2015-2019 Jonathan Harris, 2020-2021 EDCD' +appversion = '4.2.0-beta1' #-rc1+a872b5f' +# For some things we want appversion without (possible) +build metadata +appversion_nobuild = str(semantic_version.Version(appversion).truncate('prerelease')) +copyright = u'© 2015-2019 Jonathan Harris, 2020-2021 EDCD' update_feed = 'https://raw.githubusercontent.com/EDCD/EDMarketConnector/releases/edmarketconnector.xml' update_interval = 8*60*60