mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-06-06 18:33:13 +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" />
|
<File KeyPath="yes" Source="SourceDir\pyexpat.pyd" />
|
||||||
</Component>
|
</Component>
|
||||||
<Component Guid="*">
|
<Component Guid="*">
|
||||||
<File KeyPath="yes" Source="SourceDir\python38.dll" />
|
<File KeyPath="yes" Source="SourceDir\python39.dll" />
|
||||||
</Component>
|
</Component>
|
||||||
<Component Guid="*">
|
<Component Guid="*">
|
||||||
<File KeyPath="yes" Source="SourceDir\rare_commodity.csv" />
|
<File KeyPath="yes" Source="SourceDir\rare_commodity.csv" />
|
||||||
@ -602,7 +602,7 @@
|
|||||||
<ComponentRef Id="pt_BR.strings" />
|
<ComponentRef Id="pt_BR.strings" />
|
||||||
<ComponentRef Id="pt_PT.strings" />
|
<ComponentRef Id="pt_PT.strings" />
|
||||||
<ComponentRef Id="pyexpat.pyd" />
|
<ComponentRef Id="pyexpat.pyd" />
|
||||||
<ComponentRef Id="python38.dll" />
|
<ComponentRef Id="python39.dll" />
|
||||||
<ComponentRef Id="rare_commodity.csv" />
|
<ComponentRef Id="rare_commodity.csv" />
|
||||||
<ComponentRef Id="ru.strings" />
|
<ComponentRef Id="ru.strings" />
|
||||||
<ComponentRef Id="select.pyd" />
|
<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
|
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}')
|
raise AssertionError(f'Unexpected python version {sys.version}')
|
||||||
|
|
||||||
if sys.platform == 'win32':
|
if sys.platform == 'win32':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user