We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a39a807 commit e432cebCopy full SHA for e432ceb
CHANGELOG
@@ -1,3 +1,8 @@
1
+0.7.0
2
+-----
3
+
4
+- Rename python module from `pygeth` to `geth`
5
6
0.6.0
7
-----
8
geth/wrapper.py
@@ -48,6 +48,7 @@ def construct_test_chain_kwargs(**overrides):
48
overrides.setdefault('rpc_port', get_open_port())
49
50
overrides.setdefault('ipc_path', tempfile.NamedTemporaryFile().name)
51
+ overrides.setdefault('ipc_api', ALL_APIS)
52
53
overrides.setdefault('verbosity', '5')
54
return overrides
setup.py
@@ -15,7 +15,7 @@
15
16
setup(
17
name='py-geth',
18
- version="0.6.0",
+ version="0.7.0",
19
description="""Run Go-Ethereum as a subprocess""",
20
long_description=readme,
21
author='Piper Merriam',
0 commit comments