Skip to content

Commit 8d1bdee

Browse files
authored
fix: use python 3.8 for ci (#159)
1 parent 18ffb1a commit 8d1bdee

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616

17-
- name: Set up Python 3.9
17+
- name: Set up Python 3.8
1818
uses: actions/setup-python@v2
1919
with:
20-
python-version: 3.9.13
20+
python-version: 3.8
2121
cache: 'pip'
2222

2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install -e .[dev]
26+
pip install -e ".[dev]"
2727
2828
- name: Lint with flake8
2929
run: |

.github/workflows/code_quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-python@v2
1111
with:
12-
python-version: 3.9
12+
python-version: 3.8
1313
- uses: pre-commit/[email protected]

0 commit comments

Comments
 (0)