Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added working python3.7 patch #223

Merged
merged 1 commit into from
May 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions patches/0001-Moved-CI-to-Python-3.7.patch
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
From 8aae58251db367121928397025fcd7a487e1ba9c Mon Sep 17 00:00:00 2001
From: Dylan Herrada <33632497+dherrada@users.noreply.github.com>
Date: Thu, 20 May 2021 16:13:41 -0400
From f2d8d960f1713c8e161b78826a52ef79816c7a19 Mon Sep 17 00:00:00 2001
From: dherrada <dylan.herrada@adafruit.com>
Date: Mon, 24 May 2021 09:54:31 -0400
Subject: [PATCH] Moved CI to Python 3.7

---
.github/workflows/build.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 0a44310..a9516b8 100644
index 0ab7182..c4c975d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -25 +25 @@ jobs:
@@ -22,10 +22,10 @@ jobs:
awk -F '\/' '{ print tolower($2) }' |
tr '_' '-'
)
- - name: Set up Python 3.6
+ - name: Set up Python 3.7
@@ -28 +28 @@ jobs:
uses: actions/setup-python@v1
with:
- python-version: 3.6
+ python-version: 3.7
- name: Versions
run: |
python3 --version
--
2.25.1