|
| 1 | +From efe38badfd18297988c9c67be8ac1108d150a4ca Mon Sep 17 00:00:00 2001 |
| 2 | +From: dherrada < [email protected]> |
| 3 | +Date: Thu, 13 Jan 2022 16:27:30 -0500 |
| 4 | +Subject: [PATCH] First part of patch |
| 5 | + |
| 6 | +--- |
| 7 | + .../PULL_REQUEST_TEMPLATE/adafruit_circuitpython_pr.md | 2 +- |
| 8 | + .github/workflows/build.yml | 6 +++--- |
| 9 | + .github/workflows/release.yml | 8 ++++---- |
| 10 | + .readthedocs.yaml | 2 +- |
| 11 | + 4 files changed, 9 insertions(+), 9 deletions(-) |
| 12 | + |
| 13 | +diff --git a/.github/PULL_REQUEST_TEMPLATE/adafruit_circuitpython_pr.md b/.github/PULL_REQUEST_TEMPLATE/adafruit_circuitpython_pr.md |
| 14 | +index 71ef8f8..8de294e 100644 |
| 15 | +--- a/.github/PULL_REQUEST_TEMPLATE/adafruit_circuitpython_pr.md |
| 16 | ++++ b/.github/PULL_REQUEST_TEMPLATE/adafruit_circuitpython_pr.md |
| 17 | +@@ -4,7 +4,7 @@ |
| 18 | + |
| 19 | + Thank you for contributing! Before you submit a pull request, please read the following. |
| 20 | + |
| 21 | +-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 |
| 22 | ++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 |
| 23 | + |
| 24 | + If your changes are to documentation, please verify that the documentation builds locally by following the steps found here: https://adafru.it/build-docs |
| 25 | + |
| 26 | +diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml |
| 27 | +index ca35544..474520d 100644 |
| 28 | +--- a/.github/workflows/build.yml |
| 29 | ++++ b/.github/workflows/build.yml |
| 30 | +@@ -22,10 +22,10 @@ jobs: |
| 31 | + awk -F '\/' '{ print tolower($2) }' | |
| 32 | + tr '_' '-' |
| 33 | + ) |
| 34 | +- - name: Set up Python 3.7 |
| 35 | +- uses: actions/setup-python@v1 |
| 36 | ++ - name: Set up Python 3.x |
| 37 | ++ uses: actions/setup-python@v2 |
| 38 | + with: |
| 39 | +- python-version: 3.7 |
| 40 | ++ python-version: "3.x" |
| 41 | + - name: Versions |
| 42 | + run: | |
| 43 | + python3 --version |
| 44 | +diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml |
| 45 | +index 6d0015a..a65e5de 100644 |
| 46 | +--- a/.github/workflows/release.yml |
| 47 | ++++ b/.github/workflows/release.yml |
| 48 | +@@ -24,10 +24,10 @@ jobs: |
| 49 | + awk -F '\/' '{ print tolower($2) }' | |
| 50 | + tr '_' '-' |
| 51 | + ) |
| 52 | +- - name: Set up Python 3.6 |
| 53 | +- uses: actions/setup-python@v1 |
| 54 | ++ - name: Set up Python 3.x |
| 55 | ++ uses: actions/setup-python@v2 |
| 56 | + with: |
| 57 | +- python-version: 3.6 |
| 58 | ++ python-version: "3.x" |
| 59 | + - name: Versions |
| 60 | + run: | |
| 61 | + python3 --version |
| 62 | +@@ -67,7 +67,7 @@ jobs: |
| 63 | + echo ::set-output name=setup-py::$( find . -wholename './setup.py' ) |
| 64 | + - name: Set up Python |
| 65 | + if: contains(steps.need-pypi.outputs.setup-py, 'setup.py') |
| 66 | +- uses: actions/setup-python@v1 |
| 67 | ++ uses: actions/setup-python@v2 |
| 68 | + with: |
| 69 | + python-version: '3.x' |
| 70 | + - name: Install dependencies |
| 71 | +diff --git a/.readthedocs.yaml b/.readthedocs.yaml |
| 72 | +index 1335112..f8b2891 100644 |
| 73 | +--- a/.readthedocs.yaml |
| 74 | ++++ b/.readthedocs.yaml |
| 75 | +@@ -9,7 +9,7 @@ |
| 76 | + version: 2 |
| 77 | + |
| 78 | + python: |
| 79 | +- version: "3.7" |
| 80 | ++ version: "3.x" |
| 81 | + install: |
| 82 | + - requirements: docs/requirements.txt |
| 83 | + - requirements: requirements.txt |
| 84 | +-- |
| 85 | +2.25.1 |
| 86 | + |
0 commit comments