File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ jobs:
10
10
11
11
steps :
12
12
- uses : actions/checkout@master
13
- - name : Set up Python 3.7
13
+ - name : Set up Python
14
14
uses : actions/setup-python@v2
15
15
with :
16
- python-version : 3.7
16
+ python-version : 3.9
17
17
- name : Install dependencies
18
18
run : |
19
19
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change @@ -87,6 +87,9 @@ make tests
87
87
```
88
88
89
89
### Changelogs
90
+ ** 0.8.3**
91
+ * Fix dependency issue in setup.py.
92
+
90
93
** 0.8.2**
91
94
* Add web3 library as a dependency for the project.
92
95
Original file line number Diff line number Diff line change 17
17
18
18
AUTHOR = "Injective Labs"
19
19
REQUIRES_PYTHON = ">=3.9"
20
- VERSION = "0.8.2 "
20
+ VERSION = "0.8.3 "
21
21
22
22
REQUIRED = [
23
23
"aiohttp" ,
35
35
"protobuf" ,
36
36
"requests" ,
37
37
"safe-pysha3" ,
38
- "urllib3 < 2" ,
39
- "web3 >= 6.0.0"
38
+ "urllib3< 2" ,
39
+ "web3>= 6.0.0" ,
40
40
"websockets" ,
41
41
]
42
42
You can’t perform that action at this time.
0 commit comments