Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Use minimum supported Python 3.8 over default x-range which points to…
Browse files Browse the repository at this point in the history
… Python 3.7

See #15851 (comment)
  • Loading branch information
MadLittleMods committed Jun 30, 2023
1 parent d11f71c commit 6ac7044
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: '3.8'
- id: set-distros
run: |
# if we're running from a tag, get the full list of distros; otherwise just use debian:sid
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: '3.8'

- name: Build the packages
# see https://github.com/docker/build-push-action/issues/252
Expand Down Expand Up @@ -125,9 +125,10 @@ jobs:

- uses: actions/setup-python@v4
with:
# setup-python@v4 doesn't impose a default python version. Need to use 3.x
# here, because `python` on osx points to Python 2.7.
python-version: "3.x"
# setup-python@v4 doesn't impose a default python version. We define a version
# here because `python` on osx points to Python 2.7. We use the minimium
# supported Python version that Synapse supports.
python-version: "3.8"

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.9.0
Expand Down

0 comments on commit 6ac7044

Please sign in to comment.