1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 15:57:14 +03:00

Python 3.10: Change version number in most of our local files

The requirements-dev.txt change for py2exe will be in a separate commit.
This commit is contained in:
Athanasius 2021-12-03 11:17:18 +00:00
parent 42c2167a53
commit 3a28945ad5
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D
5 changed files with 5 additions and 5 deletions

View File

@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v2.4.0
- uses: actions/setup-python@v2.3.1
with:
python-version: "3.9.9"
python-version: "3.10.0"
architecture: "x86"
- name: Install python tools

View File

@ -77,7 +77,7 @@ repos:
always_run: true
default_language_version:
python: python3.9
python: python3.10
default_stages: [ commit, push ]

View File

@ -1 +1 @@
3.9.9
3.10.0

View File

@ -198,7 +198,7 @@
<File KeyPath="yes" Source="SourceDir\pyexpat.pyd" />
</Component>
<Component Guid="*">
<File KeyPath="yes" Source="SourceDir\python39.dll" />
<File KeyPath="yes" Source="SourceDir\python310.dll" />
</Component>
<Component Guid="*">
<File KeyPath="yes" Source="SourceDir\rare_commodity.csv" />

View File

@ -24,7 +24,7 @@ from config import (
)
from constants import GITVERSION_FILE
if sys.version_info[0:2] != (3, 9):
if sys.version_info[0:2] != (3, 10):
raise AssertionError(f'Unexpected python version {sys.version}')
###########################################################################