From 355d3790d20822f960effe154ca72cceaf7f066f Mon Sep 17 00:00:00 2001 From: Athanasius Date: Sat, 6 Mar 2021 12:16:58 +0000 Subject: [PATCH] build: Now using Python 3.9 * .msi installs * .exe in that runs * Basic tests like 'Update' via CAPI and coriolis ship build work. * `plugintest` use of shutil and sqlite also works. --- EDMarketConnector.wxs | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/EDMarketConnector.wxs b/EDMarketConnector.wxs index 48fc1f22..9013912c 100644 --- a/EDMarketConnector.wxs +++ b/EDMarketConnector.wxs @@ -198,7 +198,7 @@ - + @@ -602,7 +602,7 @@ - + diff --git a/setup.py b/setup.py index f131f8f2..14cefcaa 100755 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ import semantic_version from config import appcmdname, applongname, appname, appversion, copyright, update_feed, update_interval -if sys.version_info[0:2] != (3, 8): +if sys.version_info[0:2] != (3, 9): raise AssertionError(f'Unexpected python version {sys.version}') if sys.platform == 'win32':