Merge pull request #17346 from gavindsouza/ci-min-PY38

ci: Match CI with minimum Python version requirement
This commit is contained in:
gavin 2022-06-29 11:33:15 +05:30 committed by GitHub
commit d89c1e1666
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 9 deletions

View file

@ -5,10 +5,10 @@ import shlex
import subprocess
import sys
import urllib.request
from functools import cache
from functools import lru_cache
@cache
@lru_cache(maxsize=None)
def fetch_pr_data(pr_number, repo, endpoint):
api_url = f"https://api.github.com/repos/{repo}/pulls/{pr_number}"

View file

@ -33,7 +33,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.8'
- name: Setup Node
uses: actions/setup-node@v3

View file

@ -18,7 +18,7 @@ jobs:
node-version: 14
- uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.8'
- name: Set up bench and build assets
run: |
npm install -g yarn

View file

@ -21,7 +21,7 @@ jobs:
python-version: '12.x'
- uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.8'
- name: Set up bench and build assets
run: |
npm install -g yarn

View file

@ -42,7 +42,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.8'
- name: Check if build should be run
id: check-build

View file

@ -45,7 +45,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.8'
- name: Check if build should be run
id: check-build

View file

@ -41,7 +41,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.8'
- name: Check if build should be run
id: check-build

View file

@ -478,7 +478,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.8
- name: Setup Node
uses: actions/setup-node@v2