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

Python: Version must be a quoted string now

Else `3.10` gets interpreted as `3.1` and it all breaks.
This commit is contained in:
Athanasius 2022-01-25 14:30:58 +00:00
parent eb0ff31805
commit 109f964fc3
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v2.3.1
with:
python-version: 3.10
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip

View File

@ -23,7 +23,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v2.3.1
with:
python-version: 3.10
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip