mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-17 01:22:19 +03:00
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.
This commit is contained in:
parent
851c4f0c7e
commit
355d3790d2
@ -198,7 +198,7 @@
|
||||
<File KeyPath="yes" Source="SourceDir\pyexpat.pyd" />
|
||||
</Component>
|
||||
<Component Guid="*">
|
||||
<File KeyPath="yes" Source="SourceDir\python38.dll" />
|
||||
<File KeyPath="yes" Source="SourceDir\python39.dll" />
|
||||
</Component>
|
||||
<Component Guid="*">
|
||||
<File KeyPath="yes" Source="SourceDir\rare_commodity.csv" />
|
||||
@ -602,7 +602,7 @@
|
||||
<ComponentRef Id="pt_BR.strings" />
|
||||
<ComponentRef Id="pt_PT.strings" />
|
||||
<ComponentRef Id="pyexpat.pyd" />
|
||||
<ComponentRef Id="python38.dll" />
|
||||
<ComponentRef Id="python39.dll" />
|
||||
<ComponentRef Id="rare_commodity.csv" />
|
||||
<ComponentRef Id="ru.strings" />
|
||||
<ComponentRef Id="select.pyd" />
|
||||
|
2
setup.py
2
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':
|
||||
|
Loading…
x
Reference in New Issue
Block a user