Skip to content

Commit 8c60ef5

Browse files
authored
Merge pull request #70 from crytic/future
Remove `future` dependency
2 parents dcdac8b + 661dbbe commit 8c60ef5

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

pyevmasm/evmasm.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
from bisect import bisect
22
from binascii import hexlify, unhexlify
3-
from builtins import map, next, range, object
4-
5-
from future.builtins import next, bytes # type: ignore
63
import copy
74

85
DEFAULT_FORK = "cancun"

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ authors = [
1212
license = {text = "Apache License 2.0"}
1313
readme = "README.md"
1414
requires-python = ">=3.8"
15-
dependencies = [
16-
"future"
17-
]
15+
dependencies = []
1816
keywords = ["ethereum", "evm", "assembler", "disassembler", "blockchain"]
1917
classifiers = [
2018
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)