Merge pull request #49 from carver/sanding-rough-edges

Collection of updates
This commit is contained in:
Jason Carver
2020-10-05 10:27:34 -07:00
committed by GitHub
2 changed files with 6 additions and 1 deletions

View File

@ -6,9 +6,12 @@ help:
@echo "clean-build - remove build artifacts"
@echo "clean-pyc - remove Python file artifacts"
@echo "lint - check style with flake8"
@echo "lint-roll - automatically fix problems with isort, flake8, etc"
@echo "test - run tests quickly with the default Python"
@echo "testall - run tests on every Python version with tox"
@echo "release - package and upload a release"
@echo "docs - generate docs and open in browser (linux-docs for version on linux)"
@echo "notes - consume towncrier newsfragments/ and update release notes in docs/"
@echo "release - package and upload a release (does not run notes target)"
@echo "dist - package"
clean: clean-build clean-pyc
@ -22,6 +25,7 @@ clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -rf {} +
lint:
tox -elint

View File

@ -4,6 +4,7 @@ package = "<MODULE_NAME>"
filename = "docs/release_notes.rst"
directory = "newsfragments"
underlines = ["-", "~", "^"]
title_format = "<PROJECT_NAME> v{version} ({project_date})"
issue_format = "`#{issue} <https://github.com/ethereum/<REPO_NAME>/issues/{issue}>`__"
[[tool.towncrier.type]]