First part of patch

Signed-off-by: dherrada <dylan.herrada@adafruit.com>
This commit is contained in:
dherrada 2022-01-13 16:27:30 -05:00
parent 9e9335a6c1
commit 00cdd6b696
4 changed files with 9 additions and 9 deletions

View file

@ -4,7 +4,7 @@
Thank you for contributing! Before you submit a pull request, please read the following. Thank you for contributing! Before you submit a pull request, please read the following.
Make sure any changes you're submitting are in line with the CircuitPython Design Guide, available here: https://circuitpython.readthedocs.io/en/latest/docs/design_guide.html Make sure any changes you're submitting are in line with the CircuitPython Design Guide, available here: https://docs.circuitpython.org/en/latest/docs/design_guide.html
If your changes are to documentation, please verify that the documentation builds locally by following the steps found here: https://adafru.it/build-docs If your changes are to documentation, please verify that the documentation builds locally by following the steps found here: https://adafru.it/build-docs

View file

@ -22,10 +22,10 @@ jobs:
awk -F '\/' '{ print tolower($2) }' | awk -F '\/' '{ print tolower($2) }' |
tr '_' '-' tr '_' '-'
) )
- name: Set up Python 3.7 - name: Set up Python 3.x
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: 3.7 python-version: "3.x"
- name: Versions - name: Versions
run: | run: |
python3 --version python3 --version

View file

@ -24,10 +24,10 @@ jobs:
awk -F '\/' '{ print tolower($2) }' | awk -F '\/' '{ print tolower($2) }' |
tr '_' '-' tr '_' '-'
) )
- name: Set up Python 3.6 - name: Set up Python 3.x
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: 3.6 python-version: "3.x"
- name: Versions - name: Versions
run: | run: |
python3 --version python3 --version
@ -67,7 +67,7 @@ jobs:
echo ::set-output name=setup-py::$( find . -wholename './setup.py' ) echo ::set-output name=setup-py::$( find . -wholename './setup.py' )
- name: Set up Python - name: Set up Python
if: contains(steps.need-pypi.outputs.setup-py, 'setup.py') if: contains(steps.need-pypi.outputs.setup-py, 'setup.py')
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: '3.x' python-version: '3.x'
- name: Install dependencies - name: Install dependencies

View file

@ -9,7 +9,7 @@
version: 2 version: 2
python: python:
version: "3.7" version: "3.x"
install: install:
- requirements: docs/requirements.txt - requirements: docs/requirements.txt
- requirements: requirements.txt - requirements: requirements.txt