Skip to content

Commit 649090b

Browse files
update readme
1 parent 7f47ced commit 649090b

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ Python SDK为[FISCO BCOS](https://github.com/FISCO-BCOS/FISCO-BCOS/tree/master)
3737
## 部署Python SDK
3838

3939
### 环境要求
40-
- Python环境:python 3.6.3, 3.7.x
40+
41+
- Python环境:python 3.6.3, 3.7.x ,3.8.x ,3.9.x (python 3.10+的语法对依赖库的要求有较大差异,尚未适配)
42+
4143
- FISCO BCOS节点:请参考
4244

4345
[FISCO BCOS 2.x节点安装](https://fisco-bcos-documentation.readthedocs.io/zh_CN/latest/docs/installation.html#fisco-bcos)搭建

client/format_param_by_abi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616

17-
from collections import Iterable
17+
from collections.abc import Iterable
1818

1919
from client.bcoserror import ArgumentsError
2020
from eth_utils import to_checksum_address

eth_abi/grammar.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
import re
33

44
import parsimonious
5-
from parsimonious import (
6-
expressions,
7-
)
5+
from parsimonious import expressions
86

97
from eth_abi.exceptions import (
108
ABITypeError,

0 commit comments

Comments
 (0)