Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove unused docs deps, bump remaining #2890

Merged
merged 4 commits into from
Mar 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions newsfragments/2890.internal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
remove unused docs dependencies and bump version of remaining
16 changes: 3 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,9 @@
"types-protobuf==3.19.13",
],
"docs": [
"mock",
"click>=5.1",
"configparser==3.5.0",
"contextlib2>=0.5.4",
"py-geth>=3.11.0",
"py-solc-x>=1.1.1",
"pytest>=6.2.5",
"sphinx>=4.2.0",
"sphinx_rtd_theme>=0.5.2",
"toposort>=1.4",
"towncrier==18.5.0",
"urllib3",
"wheel",
"sphinx>=5.0.0",
"sphinx_rtd_theme>=1.0.0",
"towncrier>=21,<22",
],
"dev": [
"bumpversion",
Expand Down
8 changes: 0 additions & 8 deletions web3/_utils/normalizers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import codecs
from distutils.version import (
LooseVersion,
)
import functools
import json
from typing import (
Expand All @@ -14,7 +11,6 @@
cast,
)

import eth_abi
from eth_abi.exceptions import (
ParseError,
)
Expand Down Expand Up @@ -239,10 +235,6 @@ def abi_ens_resolver(
]


if LooseVersion(eth_abi.__version__) < LooseVersion("2"):
BASE_RETURN_NORMALIZERS.append(decode_abi_strings)


#
# Property Normalizers
#
Expand Down