Skip to content

Commit 71d89f6

Browse files
committed
Fix the github action
Signed-off-by: Jiyeong Seok <[email protected]>
1 parent 215103c commit 71d89f6

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/publish-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ jobs:
6868
- uses: actions/checkout@v2
6969
with:
7070
ref: main
71-
- name: Set up Python 3.6
71+
- name: Set up Python 3.8
7272
uses: actions/setup-python@v2
7373
with:
74-
python-version: 3.6
74+
python-version: '3.8'
7575
- name: Install dependencies
7676
run: |
7777
python -m pip install --upgrade pip
@@ -100,7 +100,7 @@ jobs:
100100
- name: Set up Python
101101
uses: actions/setup-python@v2
102102
with:
103-
python-version: '3.7'
103+
python-version: '3.8'
104104
- name: Install dependencies
105105
run: |
106106
python -m pip install --upgrade pip

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ jobs:
5353
ASSET_MIME: application/vnd.microsoft.portable-executable
5454
steps:
5555
- uses: actions/checkout@v2
56-
- name: Set up Python 3.6
56+
- name: Set up Python 3.8
5757
uses: actions/setup-python@v2
5858
with:
59-
python-version: 3.6
59+
python-version: '3.8'
6060
- name: Install dependencies
6161
run: |
6262
python -m pip install --upgrade pip

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ skipdist = true
66

77
[testenv]
88
install_command = pip install {opts} {packages}
9-
basepython= python3.6
109
whitelist_externals = cat
1110
cp
1211
rm

0 commit comments

Comments
 (0)