Skip to content

Commit e77d874

Browse files
authored
chore: upgrade dependencies (#10)
* chore: upgrade dependencies * chore: run black * chore: update pre-commit * chore: run mdformat * chore: upgrade github actions configurations * chore: upgrade pyproject.toml * fix: project id in wrong spot * fix: fixup ethervm
1 parent de975c4 commit e77d874

16 files changed

+313
-93
lines changed

.github/ISSUE_TEMPLATE/bug.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Bug report
3+
about: Report an error that you've encountered.
4+
labels: bug
5+
---
6+
7+
### Environment information
8+
9+
- `ape` and plugin versions:
10+
11+
```
12+
$ ape --version
13+
# ...copy and paste result of above command here...
14+
15+
$ ape plugins list
16+
# ...copy and paste result of above command here...
17+
```
18+
19+
- Python Version: x.x.x
20+
- OS: osx/linux/win
21+
22+
### What went wrong?
23+
24+
Please include information like:
25+
26+
- what command you ran
27+
- the code that caused the failure (see [this link](https://help.github.com/articles/basic-writing-and-formatting-syntax/) for help with formatting code)
28+
- full output of the error you received
29+
30+
### How can it be fixed?
31+
32+
Fill this in if you have ideas on how the bug could be fixed.

.github/ISSUE_TEMPLATE/feature.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Feature request
3+
about: Request a new feature, or an improvement to existing functionality.
4+
labels: enhancement
5+
---
6+
7+
### Overview
8+
9+
Provide a simple overview of what you wish to see added. Please include:
10+
11+
- What you are trying to do
12+
- Why Ape's current functionality is inadequate to address your goal
13+
14+
### Specification
15+
16+
Describe the syntax and semantics of how you would like to see this feature implemented. The more detailed the better!
17+
18+
Remember, your feature is much more likely to be included if it does not involve any breaking changes.
19+
20+
### Dependencies
21+
22+
Include links to any open issues that must be resolved before this feature can be implemented.

.github/ISSUE_TEMPLATE/work-item.md

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
name: Work item
3+
about: New work item for Ape team
4+
labels: backlog
5+
---
6+
7+
### Elevator pitch:
8+
9+
<!-- 1-2 line summary of the scope of this work item -->
10+
11+
### Value:
12+
13+
<!--
14+
Who is this for?
15+
Persona or group of people whom will derive value from the scenario.
16+
What benefits will be achieved or business metrics improved?
17+
-->
18+
19+
### Dependencies:
20+
21+
<!-- Call out key people, teams, tech dependencies, or assumptions. -->
22+
23+
### Design approach:
24+
25+
<!--
26+
Free text / diagram / whiteboard picture / etc. that clearly shows your approach and considerations to build the task list.
27+
Existing code patterns in production code base that you will base your work off of.
28+
-->
29+
30+
### Task list:
31+
32+
<!-- Bulleted list describing the exit criteria, desired end state and any documentation, monitors, work for DRI, etc. that will need to be added to make sure someone else can support once it's live. -->
33+
34+
- [ ] Tasks go here
35+
36+
### Estimated completion date:
37+
38+
### Design review:
39+
40+
<!-- 1-2 people needed for signoff -->
41+
42+
Do not signoff unless:
43+
44+
- 1. agreed the tasks and design approach will achieve acceptance, and
45+
- 2. the work can be completed by one person within the SLA.
46+
Design reviewers should consider simpler approaches to achieve goals.
47+
48+
(Please leave a comment to sign off)

.github/PULL_REQUEST_TEMPLATE.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
### What I did
2+
3+
<!-- The `fixes:` field denotes an issue that will be marked resolved by merging this PR -->
4+
5+
fixes: #
6+
7+
### How I did it
8+
9+
### How to verify it
10+
11+
### Checklist
12+
13+
- [ ] Passes all linting checks (pre-commit and CI jobs)
14+
- [ ] New test cases have been added and are passing
15+
- [ ] Documentation has been updated
16+
- [ ] PR title follows [Conventional Commit](https://www.conventionalcommits.org/en/v1.0.0/) standard (will be automatically included in the changelog)

.github/release-drafter.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name-template: '$RESOLVED_VERSION'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
4+
categories:
5+
- title: 'Features'
6+
labels:
7+
- 'feat'
8+
- title: 'Bug Fixes'
9+
labels:
10+
- 'fix'
11+
- title: 'Other updates'
12+
labels:
13+
- 'refactor'
14+
- 'chore'
15+
- 'docs'
16+
17+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
18+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
19+
20+
version-resolver:
21+
major:
22+
labels:
23+
- 'major'
24+
minor:
25+
labels:
26+
- 'minor'
27+
patch:
28+
labels:
29+
- 'patch'
30+
default: patch
31+
32+
template: |
33+
## Changes
34+
35+
$CHANGES
36+
37+
Special thanks to: $CONTRIBUTORS

.github/workflows/commitlint.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
on: push
2+
3+
name: Commit Message
4+
5+
# NOTE: Skip check on PR so as not to confuse contributors
6+
# NOTE: Also install a PR title checker so we don't mess up merges
7+
jobs:
8+
check:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
with:
14+
fetch-depth: 0
15+
16+
- name: Setup Python
17+
uses: actions/setup-python@v2
18+
with:
19+
python-version: 3.8
20+
21+
- name: Install Dependencies
22+
run: pip install .[dev]
23+
24+
- name: Check commit history
25+
run: cz check --rev-range $(git rev-list --all --reverse | head -1)..HEAD

.github/workflows/draft.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
update-draft:
10+
runs-on: ubuntu-latest
11+
steps:
12+
# Drafts your next Release notes as Pull Requests are merged into "main"
13+
- uses: release-drafter/release-drafter@v5
14+
with:
15+
disable-autolabeler: true
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: |
2222
python -m pip install --upgrade pip
2323
pip install -e .[release]
24-
24+
2525
- name: Build
2626
run: python setup.py sdist bdist_wheel
2727

.github/workflows/test.yaml

+42-33
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ on: ["push", "pull_request"]
22

33
name: Test
44

5-
env:
6-
WEB3_INFURA_PROJECT_ID: ${{ secrets.WEB3_INFURA_PROJECT_ID }}
7-
85
jobs:
96
linting:
107
runs-on: ubuntu-latest
@@ -18,17 +15,22 @@ jobs:
1815
python-version: 3.8
1916

2017
- name: Install Dependencies
21-
run: pip install .[lint]
18+
run: |
19+
python -m pip install --upgrade pip
20+
pip install .[lint]
2221
2322
- name: Run Black
2423
run: black --check .
2524

25+
- name: Run isort
26+
run: isort --check-only .
27+
2628
- name: Run flake8
2729
run: flake8 .
2830

29-
- name: Run isort
30-
run: isort --check-only .
31-
31+
- name: Run mdformat
32+
run: mdformat . --check --number
33+
3234
type-check:
3335
runs-on: ubuntu-latest
3436

@@ -41,17 +43,20 @@ jobs:
4143
python-version: 3.8
4244

4345
- name: Install Dependencies
44-
run: pip install .[lint]
46+
run: |
47+
python -m pip install --upgrade pip
48+
pip install .[lint,test]
4549
4650
- name: Run MyPy
47-
run: mypy -p evm_asm
51+
run: mypy .
4852

4953
functional:
50-
runs-on: ubuntu-latest
54+
runs-on: ${{ matrix.os }}
5155

5256
strategy:
5357
matrix:
54-
python-version: [3.6, 3.7, 3.8]
58+
os: [ubuntu-latest, macos-latest] # eventually add `windows-latest`
59+
python-version: [3.8, 3.9, "3.10"]
5560

5661
steps:
5762
- uses: actions/checkout@v2
@@ -62,27 +67,31 @@ jobs:
6267
python-version: ${{ matrix.python-version }}
6368

6469
- name: Install Dependencies
65-
run: pip install .[test]
66-
67-
- name: Run Tests
68-
run: pytest -m "not fuzzing"
69-
70-
fuzzing:
71-
runs-on: ubuntu-latest
72-
73-
strategy:
74-
fail-fast: true
75-
76-
steps:
77-
- uses: actions/checkout@v2
78-
79-
- name: Setup Python
80-
uses: actions/setup-python@v2
81-
with:
82-
python-version: 3.8
83-
84-
- name: Install Dependencies
85-
run: pip install .[test]
70+
run: |
71+
python -m pip install --upgrade pip
72+
pip install .[test]
8673
8774
- name: Run Tests
88-
run: pytest -m "fuzzing" --no-cov -s
75+
run: pytest -m "not fuzzing" -n 0 -s --cov
76+
env:
77+
WEB3_INFURA_PROJECT_ID: ${{ secrets.WEB3_INFURA_PROJECT_ID }}
78+
79+
# fuzzing:
80+
# runs-on: ubuntu-latest
81+
#
82+
# strategy:
83+
# fail-fast: true
84+
#
85+
# steps:
86+
# - uses: actions/checkout@v2
87+
#
88+
# - name: Setup Python
89+
# uses: actions/setup-python@v2
90+
# with:
91+
# python-version: 3.8
92+
#
93+
# - name: Install Dependencies
94+
# run: pip install .[test]
95+
#
96+
# - name: Run Tests
97+
# run: pytest -m "fuzzing" --no-cov -s

.github/workflows/title.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: PR Title
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
10+
jobs:
11+
check:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
17+
- name: Setup Python
18+
uses: actions/setup-python@v2
19+
with:
20+
python-version: 3.8
21+
22+
- name: Install Dependencies
23+
run: pip install commitizen
24+
25+
- name: Check PR Title
26+
env:
27+
TITLE: ${{ github.event.pull_request.title }}
28+
run: cz check --message "$TITLE"

0 commit comments

Comments
 (0)