diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md index a60c9b7..a75a574 100644 --- a/.github/ISSUE_TEMPLATE/bug.md +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -5,6 +5,11 @@ labels: 'bug' --- ### Environment information +* Python Version: x.x.x +* OS: macOS/linux/win + +If using with `ape`, please provide: + * `ape` and plugin versions: ``` @@ -15,9 +20,6 @@ $ ape plugins list # ...copy and paste result of above command here... ``` -* Python Version: x.x.x -* OS: osx/linux/win - ### What went wrong? Please include information like: diff --git a/README.md b/README.md index d07cc67..3795e7d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# evm-trace +# Quick Start Ethereum Virtual Machine transaction tracing tool diff --git a/pyproject.toml b/pyproject.toml index d360f98..1d255ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ write_to = "evm_trace/version.py" [tool.black] line-length = 100 -target-version = ['py37', 'py38', 'py39', 'py310'] +target-version = ['py38', 'py39', 'py310'] include = '\.pyi?$' [tool.pytest.ini_options] diff --git a/setup.py b/setup.py index 2d4e459..d2123c3 100644 --- a/setup.py +++ b/setup.py @@ -54,11 +54,10 @@ url="https://github.com/ApeWorX/evm-trace", include_package_data=True, install_requires=[ - "importlib-metadata ; python_version<'3.8'", - "pydantic>=1.10.1,<2.0", - "hexbytes>=0.3.0,<1.0.0", - "eth-utils>=2.0.0", - "ethpm-types>=0.3.7,<0.4.0", + "pydantic>=1.10.1,<2", + "hexbytes>=0.3.0,<1", + "eth-utils>=2", + "ethpm-types>=0.3.7,<0.4", "msgspec>=0.8.0", ], python_requires=">=3.8,<4",