Merge pull request #7204 from jepler/build-python3x
return to using python 3.x for builds
This commit is contained in:
commit
845b68c351
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -37,7 +37,7 @@ jobs:
|
|||||||
- name: Set up Python 3
|
- name: Set up Python 3
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.x"
|
||||||
- name: Get CP deps
|
- name: Get CP deps
|
||||||
run: python tools/ci_fetch_deps.py test ${{ github.sha }}
|
run: python tools/ci_fetch_deps.py test ${{ github.sha }}
|
||||||
- name: CircuitPython version
|
- name: CircuitPython version
|
||||||
|
2
.github/workflows/create_website_pr.yml
vendored
2
.github/workflows/create_website_pr.yml
vendored
@ -23,7 +23,7 @@ jobs:
|
|||||||
- name: Set up Python 3
|
- name: Set up Python 3
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.x"
|
||||||
- name: Get CP deps
|
- name: Get CP deps
|
||||||
run: python tools/ci_fetch_deps.py website ${{ github.sha }}
|
run: python tools/ci_fetch_deps.py website ${{ github.sha }}
|
||||||
- name: Install deps
|
- name: Install deps
|
||||||
|
2
.github/workflows/pre-commit.yml
vendored
2
.github/workflows/pre-commit.yml
vendored
@ -20,7 +20,7 @@ jobs:
|
|||||||
- name: Set up Python 3
|
- name: Set up Python 3
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.x"
|
||||||
- name: Install deps
|
- name: Install deps
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install -y gettext uncrustify
|
sudo apt-get install -y gettext uncrustify
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 716d8531d71b122975e2966a24ec7613b87eb7b0
|
Subproject commit 26716e006d68e5a584ac29b85d9e2979563fc827
|
@ -233,7 +233,7 @@ def set_docs_to_build(build_all):
|
|||||||
doc_match = build_all
|
doc_match = build_all
|
||||||
if not build_all:
|
if not build_all:
|
||||||
doc_pattern = re.compile(
|
doc_pattern = re.compile(
|
||||||
r"^(?:docs|extmod/ulab|(?:(?:ports/\w+/bindings|shared-bindings)\S+\.c|conf\.py|tools/extract_pyi\.py|requirements-doc\.txt)$)|(?:-stubs|\.(?:md|MD|rst|RST))$"
|
r"^(?:.github/workflows/|docs|extmod/ulab|(?:(?:ports/\w+/bindings|shared-bindings)\S+\.c|conf\.py|tools/extract_pyi\.py|requirements-doc\.txt)$)|(?:-stubs|\.(?:md|MD|rst|RST))$"
|
||||||
)
|
)
|
||||||
for p in changed_files:
|
for p in changed_files:
|
||||||
if doc_pattern.search(p):
|
if doc_pattern.search(p):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user