Skip to content

Commit 12c43d7

Browse files
committed
fill template, run lint and fix errors, drop pkg_resources for version info
1 parent 76c1ddf commit 12c43d7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+454
-414
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ windows_steps: &windows_steps
4646
executor:
4747
name: win/default
4848
shell: bash.exe
49-
working_directory: C:\Users\circleci\project\<REPO_NAME>
49+
working_directory: C:\Users\circleci\project\eth-tester
5050
steps:
5151
- checkout
5252
- restore_cache:
@@ -199,4 +199,4 @@ workflows:
199199
- py38-pyevm
200200
- py39-pyevm
201201
- py310-pyevm
202-
- py311-pyevm
202+
- py311-pyevm

.github/ISSUE_TEMPLATE/bug_report.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ body:
4141
- type: input
4242
id: lib-version
4343
attributes:
44-
label: <PYPI_NAME> Version
45-
description: Which version of <PYPI_NAME> are you using?
44+
label: eth-tester Version
45+
description: Which version of eth-tester are you using?
4646
placeholder: x.x.x
4747
validations:
4848
required: false

.github/ISSUE_TEMPLATE/config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: true
22
contact_links:
3-
- name: Questions about using <REPO_NAME>?
3+
- name: Questions about using eth-tester?
44
url: https://discord.gg/GHryRvPB84
55
about: You can ask and answer usage questions on the Ethereum Python Community Discord

.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Closes #
1111

1212
- [ ] Add or update documentation related to these changes
1313

14-
- [ ] Add entry to the [release notes](https://github.com/ethereum/<REPO_NAME>/blob/main/newsfragments/README.md)
14+
- [ ] Add entry to the [release notes](https://github.com/ethereum/eth-tester/blob/master/newsfragments/README.md)
1515

1616
#### Cute Animal Picture
1717

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ repos:
4242
rev: v1.5.1
4343
hooks:
4444
- id: mypy
45-
exclude: tests/
45+
exclude: 'tests/|eth_tester/'

.project-template/template_vars.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<MODULE_NAME>
2-
<PYPI_NAME>
3-
<REPO_NAME>
4-
<RTD_NAME>
5-
<PROJECT_NAME>
6-
<SHORT_DESCRIPTION>
1+
eth_tester
2+
eth-tester
3+
eth-tester
4+
eth-tester
5+
eth-tester
6+
Tools for testing Ethereum applications

CHANGELOG renamed to CHANGELOG.rst

File renamed without changes.

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ notes: check-bump
4848
# Now generate the release notes to have them included in the release commit
4949
towncrier build --yes --version $(UPCOMING_VERSION)
5050
# Before we bump the version, make sure that the towncrier-generated docs will build
51-
make build-docs
51+
make docs
5252
git commit -m "Compile release notes"
5353

5454
release: check-bump clean
55-
# require that upstream is configured for ethereum/<REPO_NAME>
56-
git remote -v | grep "upstream\[email protected]:ethereum/<REPO_NAME>.git (push)\|upstream\thttps://github.com/ethereum/<REPO_NAME> (push)"
55+
# require that upstream is configured for ethereum/eth-tester
56+
git remote -v | grep "upstream\[email protected]:ethereum/eth-tester.git (push)\|upstream\thttps://github.com/ethereum/eth-tester (push)"
5757
# verify that docs build correctly
5858
./newsfragments/validate_files.py is-empty
59-
make build-docs
59+
make docs
6060
CURRENT_SIGN_SETTING=$(git config commit.gpgSign)
6161
git config commit.gpgSign true
6262
bumpversion $(bump)

0 commit comments

Comments
 (0)