Skip to content

Commit dd7381e

Browse files
authored
Merge pull request #90 from kattni/specify-python
Remove specific Python, use 3.x
2 parents 4b2cb10 + e296e6f commit dd7381e

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
awk -F '\/' '{ print tolower($2) }' |
2323
tr '_' '-'
2424
)
25-
- name: Set up Python 3.7
26-
uses: actions/setup-python@v1
25+
- name: Set up Python 3.x
26+
uses: actions/setup-python@v2
2727
with:
28-
python-version: 3.7
28+
python-version: "3.x"
2929
- name: Versions
3030
run: |
3131
python3 --version

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
awk -F '\/' '{ print tolower($2) }' |
2525
tr '_' '-'
2626
)
27-
- name: Set up Python 3.6
28-
uses: actions/setup-python@v1
27+
- name: Set up Python 3.x
28+
uses: actions/setup-python@v2
2929
with:
30-
python-version: 3.6
30+
python-version: "3.x"
3131
- name: Versions
3232
run: |
3333
python3 --version
@@ -67,7 +67,7 @@ jobs:
6767
echo ::set-output name=setup-py::$( find . -wholename './setup.py' )
6868
- name: Set up Python
6969
if: contains(steps.need-pypi.outputs.setup-py, 'setup.py')
70-
uses: actions/setup-python@v1
70+
uses: actions/setup-python@v2
7171
with:
7272
python-version: '3.x'
7373
- name: Install dependencies

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
version: 2
1010

1111
python:
12-
version: "3.7"
12+
version: "3.x"
1313
install:
1414
- requirements: docs/requirements.txt
1515
- requirements: requirements.txt

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
intersphinx_mapping = {
32-
"python": ("https://docs.python.org/3.4", None),
32+
"python": ("https://docs.python.org/3", None),
3333
"CircuitPython": ("https://circuitpython.readthedocs.io/en/latest/", None),
3434
}
3535

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@
4646
"Topic :: System :: Hardware",
4747
"License :: OSI Approved :: MIT License",
4848
"Programming Language :: Python :: 3",
49-
"Programming Language :: Python :: 3.4",
50-
"Programming Language :: Python :: 3.5",
5149
],
5250
# What does your project relate to?
5351
keywords="adafruit blinka circuitpython micropython led animation led colors animations",

0 commit comments

Comments
 (0)