Skip to content

Commit 73bdb8d

Browse files
committed
Remove the missing eth-pm package from stable web3
1 parent fa1102e commit 73bdb8d

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ docs: build-docs
4444
open docs/_build/html/index.html
4545

4646
linux-docs: build-docs
47-
xdg-open docs/_build/html/index.html
47+
readlink -f docs/_build/html/index.html
4848

4949
release: clean
5050
CURRENT_SIGN_SETTING=$(git config commit.gpgSign)

docs/web3.pm.rst

+11-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,18 @@ Package Manager API
66
77
The ``web3.pm`` object exposes methods to interact with Packages as defined by `ERC 1123 <https://github.com/ethereum/EIPs/issues/1123>`_.
88

9+
10+
Installation
11+
------------
12+
913
.. warning:: The PM module is still under development, and not all use-cases are currently supported, so it is not included by default in the web3 instance.
1014

15+
You must install the eth-pm module separately, until it is stable. Install with:
16+
17+
.. code-block:: python
18+
19+
pip install --upgrade ethpm
20+
1121
Attaching
1222
---------
1323

@@ -16,7 +26,7 @@ To use ``web3.pm``, attach it to your ``web3`` instance.
1626
.. code-block:: python
1727
1828
from web3.pm import PM
19-
PM.attach(web3, 'pmp')
29+
PM.attach(web3, 'pm')
2030
2131
2232
Methods

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"cytoolz>=0.9.0,<1.0.0;implementation_name=='cpython'",
2222
"eth-abi>=1.1.1,<2",
2323
"eth-account>=0.2.1,<0.3.0",
24-
"eth-pm==0.1.0-alpha.17",
2524
"eth-utils>=1.0.1,<2.0.0",
2625
"hexbytes>=0.1.0,<1.0.0",
2726
"lru-dict>=1.1.6,<2.0.0",

0 commit comments

Comments
 (0)