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

Python: Bump minor version in GH workflows & update Releasing.md

I used Releasing.md as reference for what would need the version
updating, but it didn't say anything about all the workflows, it now
does.
This commit is contained in:
Athanasius 2022-01-25 14:26:42 +00:00
parent d6be32f7c9
commit eb0ff31805
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D
3 changed files with 6 additions and 4 deletions

View File

@ -52,10 +52,10 @@ jobs:
####################################################################
# Get Python set up
####################################################################
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2.3.1
with:
python-version: 3.9
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip

View File

@ -20,10 +20,10 @@ jobs:
- uses: actions/checkout@v2.4.0
with:
fetch-depth: 0
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2.3.1
with:
python-version: 3.9
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip

View File

@ -446,3 +446,5 @@ When changing the Python version (Major.Minor.Patch) used:
pythonXX.dll file.
3. `.pre-commit-config.yaml` will need the `default_language_version`
section updated to the appropriate version.
4. All `.github/workflows/` files will need to be citing the correct
version in any `uses: actions/setup-python` section.