From 75ec0d61c88e164245752377a91415259a867334 Mon Sep 17 00:00:00 2001 From: dherrada Date: Fri, 14 Jan 2022 14:18:12 -0500 Subject: [PATCH] Added patch file --- patches/0001-First-part-of-patch.patch | 86 ++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 patches/0001-First-part-of-patch.patch diff --git a/patches/0001-First-part-of-patch.patch b/patches/0001-First-part-of-patch.patch new file mode 100644 index 0000000..c6044e7 --- /dev/null +++ b/patches/0001-First-part-of-patch.patch @@ -0,0 +1,86 @@ +From efe38badfd18297988c9c67be8ac1108d150a4ca Mon Sep 17 00:00:00 2001 +From: dherrada +Date: Thu, 13 Jan 2022 16:27:30 -0500 +Subject: [PATCH] First part of patch + +--- + .../PULL_REQUEST_TEMPLATE/adafruit_circuitpython_pr.md | 2 +- + .github/workflows/build.yml | 6 +++--- + .github/workflows/release.yml | 8 ++++---- + .readthedocs.yaml | 2 +- + 4 files changed, 9 insertions(+), 9 deletions(-) + +diff --git a/.github/PULL_REQUEST_TEMPLATE/adafruit_circuitpython_pr.md b/.github/PULL_REQUEST_TEMPLATE/adafruit_circuitpython_pr.md +index 71ef8f8..8de294e 100644 +--- a/.github/PULL_REQUEST_TEMPLATE/adafruit_circuitpython_pr.md ++++ b/.github/PULL_REQUEST_TEMPLATE/adafruit_circuitpython_pr.md +@@ -4,7 +4,7 @@ + + 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 + +diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml +index ca35544..474520d 100644 +--- a/.github/workflows/build.yml ++++ b/.github/workflows/build.yml +@@ -22,10 +22,10 @@ jobs: + awk -F '\/' '{ print tolower($2) }' | + tr '_' '-' + ) +- - name: Set up Python 3.7 +- uses: actions/setup-python@v1 ++ - name: Set up Python 3.x ++ uses: actions/setup-python@v2 + with: +- python-version: 3.7 ++ python-version: "3.x" + - name: Versions + run: | + python3 --version +diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml +index 6d0015a..a65e5de 100644 +--- a/.github/workflows/release.yml ++++ b/.github/workflows/release.yml +@@ -24,10 +24,10 @@ jobs: + awk -F '\/' '{ print tolower($2) }' | + tr '_' '-' + ) +- - name: Set up Python 3.6 +- uses: actions/setup-python@v1 ++ - name: Set up Python 3.x ++ uses: actions/setup-python@v2 + with: +- python-version: 3.6 ++ python-version: "3.x" + - name: Versions + run: | + python3 --version +@@ -67,7 +67,7 @@ jobs: + echo ::set-output name=setup-py::$( find . -wholename './setup.py' ) + - name: Set up Python + if: contains(steps.need-pypi.outputs.setup-py, 'setup.py') +- uses: actions/setup-python@v1 ++ uses: actions/setup-python@v2 + with: + python-version: '3.x' + - name: Install dependencies +diff --git a/.readthedocs.yaml b/.readthedocs.yaml +index 1335112..f8b2891 100644 +--- a/.readthedocs.yaml ++++ b/.readthedocs.yaml +@@ -9,7 +9,7 @@ + version: 2 + + python: +- version: "3.7" ++ version: "3.x" + install: + - requirements: docs/requirements.txt + - requirements: requirements.txt +-- +2.25.1 +