Skip to content

Commit

Permalink
chore: finish removing python3.7 (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotPeopling2day authored Sep 10, 2022
1 parent fddebbe commit 919404d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
8 changes: 5 additions & 3 deletions .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

```
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# evm-trace
# Quick Start

Ethereum Virtual Machine transaction tracing tool

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 919404d

Please sign in to comment.