Merge pull request #3 from adafruit/discord-fix

Using python 3.7 so sphinx is ok with __future__
This commit is contained in:
Dan Halbert 2020-07-09 13:44:44 -04:00 committed by GitHub
commit 8a048b9f5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -18,10 +18,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.7
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: 3.6 python-version: 3.7
- name: Versions - name: Versions
run: | run: |
python3 --version python3 --version

View file

@ -20,10 +20,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.7
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: 3.6 python-version: 3.7
- name: Versions - name: Versions
run: | run: |
python3 --version python3 --version

View file

@ -21,7 +21,7 @@ extensions = [
# Uncomment the below if you use native CircuitPython modules such as # Uncomment the below if you use native CircuitPython modules such as
# digitalio, micropython and busio. List the modules you use. Without it, the # digitalio, micropython and busio. List the modules you use. Without it, the
# autodoc module docs will fail to generate with a warning. # autodoc module docs will fail to generate with a warning.
# autodoc_mock_imports = ["digitalio", "busio"] autodoc_mock_imports = ["bleak", "digitalio", "busio"]
intersphinx_mapping = { intersphinx_mapping = {