Skip to content

Commit b05bb0a

Browse files
author
bohendo
committed
use python 3.8 in CI
1 parent 32c03dd commit b05bb0a

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

.github/workflows/black.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- name: Checkout Code
2020
uses: actions/checkout@v2
2121

22-
- name: Set up Python 3.6
23-
uses: actions/setup-python@v2
22+
- name: Set up Python 3.8
23+
uses: actions/setup-python@v3
2424
with:
25-
python-version: 3.6
25+
python-version: 3.8
2626

2727
- name: Install dependencies
2828
run: |

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ jobs:
4848
uses: actions/setup-node@v2
4949
with:
5050
node-version: ${{ steps.node.outputs.version }}
51-
- name: Set up Python 3.6
51+
- name: Set up Python 3.8
5252
uses: actions/setup-python@v3
5353
with:
54-
python-version: 3.6
54+
python-version: 3.8
5555
- name: Install dependencies
5656
run: |
5757
pip install "solc-select>=v1.0.0b1"

.github/workflows/darglint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v1
17-
- name: Set up Python 3.6
18-
uses: actions/setup-python@v1
17+
- name: Set up Python 3.8
18+
uses: actions/setup-python@v3
1919
with:
20-
python-version: 3.6
20+
python-version: 3.8
2121
- name: Run Tests
2222
run: |
2323
bash scripts/ci_darglint.sh

.github/workflows/etherscan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
run: |
2727
echo 'C:\msys64\mingw64\bin' >> "$GITHUB_PATH"
2828
echo 'C:\msys64\usr\bin' >> "$GITHUB_PATH"
29-
- name: Set up Python 3.6
29+
- name: Set up Python 3.8
3030
uses: actions/setup-python@v3
3131
with:
32-
python-version: 3.6
32+
python-version: 3.8
3333
- name: Install dependencies
3434
run: |
3535
pip install "solc-select>=v1.0.0b1"

.github/workflows/linter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- name: Checkout Code
2020
uses: actions/checkout@v2
2121

22-
- name: Set up Python 3.6
23-
uses: actions/setup-python@v2
22+
- name: Set up Python 3.8
23+
uses: actions/setup-python@v3
2424
with:
25-
python-version: 3.6
25+
python-version: 3.8
2626

2727
- name: Install dependencies
2828
run: |

.github/workflows/mypy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- name: Checkout Code
2020
uses: actions/checkout@v2
2121

22-
- name: Set up Python 3.6
23-
uses: actions/setup-python@v2
22+
- name: Set up Python 3.8
23+
uses: actions/setup-python@v3
2424
with:
25-
python-version: 3.6
25+
python-version: 3.8
2626

2727
- name: Install dependencies
2828
run: |

.github/workflows/pylint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- name: Checkout Code
2020
uses: actions/checkout@v2
2121

22-
- name: Set up Python 3.6
23-
uses: actions/setup-python@v2
22+
- name: Set up Python 3.8
23+
uses: actions/setup-python@v3
2424
with:
25-
python-version: 3.6
25+
python-version: 3.8
2626

2727
- name: Install dependencies
2828
run: |

0 commit comments

Comments
 (0)