Skip to content

Commit 1205538

Browse files
authored
move to python3.8, as 3.6 reached EOL and GH actions don't support it
1 parent af97e13 commit 1205538

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/benchamrk.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v3
19-
- name: Set up Python 3.6
19+
- name: Set up Python 3.8
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: '3.6'
22+
python-version: '3.8'
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip

.github/workflows/python-app.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v3
21-
- name: Set up Python 3.6
21+
- name: Set up Python 3.8
2222
uses: actions/setup-python@v4
2323
with:
24-
python-version: '3.6'
24+
python-version: '3.8'
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)