Skip to content

Commit 31afba6

Browse files
LuizDMMkclowes
andauthored
docs: fixed typos in pip install "web3[test]" (#3480)
* fix(setup.py): added the "tester" optional dependency back * Add newsfragment for #3480 --------- Co-authored-by: kclowes <[email protected]>
1 parent 3c27b30 commit 31afba6

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

newsfragments/3480.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add back dependency extra for 'tester'.

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
)
66

77
extras_require = {
8+
"tester": [
9+
"eth-tester[py-evm]>=0.11.0b1,<0.13.0b1",
10+
"py-geth>=5.0.0",
11+
],
812
"dev": [
913
"build>=0.9.0",
1014
"bumpversion>=0.5.3",
@@ -30,8 +34,6 @@
3034
"test": [
3135
# Note: ethereum-maintained libraries in this list should be added to the
3236
# `install_pre_releases.py` script.
33-
"eth-tester[py-evm]>=0.11.0b1,<0.13.0b1",
34-
"py-geth>=5.0.0",
3537
"pytest-asyncio>=0.18.1,<0.23",
3638
"pytest-mock>=1.10",
3739
"pytest-xdist>=2.4.0",
@@ -40,7 +42,10 @@
4042
}
4143

4244
extras_require["dev"] = (
43-
extras_require["dev"] + extras_require["docs"] + extras_require["test"]
45+
extras_require["dev"]
46+
+ extras_require["docs"]
47+
+ extras_require["test"]
48+
+ extras_require["tester"]
4449
)
4550

4651

0 commit comments

Comments
 (0)