Skip to content

Commit 46d503b

Browse files
authored
Merge pull request #317 from crytic/dev-38
Move to python 3.8
2 parents 1ca05b8 + a9ddeb5 commit 46d503b

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

.github/workflows/black.yml

Lines changed: 2 additions & 2 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
22+
- name: Set up Python 3.8
2323
uses: actions/setup-python@v2
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: 2 additions & 2 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
17+
- name: Set up Python 3.8
1818
uses: actions/setup-python@v1
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: 2 additions & 2 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
22+
- name: Set up Python 3.8
2323
uses: actions/setup-python@v2
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: 2 additions & 2 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
22+
- name: Set up Python 3.8
2323
uses: actions/setup-python@v2
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: 2 additions & 2 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
22+
- name: Set up Python 3.8
2323
uses: actions/setup-python@v2
2424
with:
25-
python-version: 3.6
25+
python-version: 3.8
2626

2727
- name: Install dependencies
2828
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.black]
2-
target-version = ["py36"]
2+
target-version = ["py38"]
33
line-length = 100
44
[tool.pylint.messages_control]
55
disable = """

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
author="Trail of Bits",
1414
version="0.2.4",
1515
packages=find_packages(),
16-
python_requires=">=3.6",
16+
python_requires=">=3.8",
1717
install_requires=["pysha3>=1.0.2"],
1818
license="AGPL-3.0",
1919
long_description=long_description,

0 commit comments

Comments
 (0)