Skip to content

Commit b8be53c

Browse files
authored
Merge pull request #242 from InjectiveLabs/fix/fix_setup_py_dependencies
Fix/fix setup py dependencies
2 parents 17237d1 + 2a0ede2 commit b8be53c

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@master
13-
- name: Set up Python 3.7
13+
- name: Set up Python
1414
uses: actions/setup-python@v2
1515
with:
16-
python-version: 3.7
16+
python-version: 3.9
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ make tests
8787
```
8888

8989
### Changelogs
90+
**0.8.3**
91+
* Fix dependency issue in setup.py.
92+
9093
**0.8.2**
9194
* Add web3 library as a dependency for the project.
9295

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
AUTHOR = "Injective Labs"
1919
REQUIRES_PYTHON = ">=3.9"
20-
VERSION = "0.8.2"
20+
VERSION = "0.8.3"
2121

2222
REQUIRED = [
2323
"aiohttp",
@@ -35,8 +35,8 @@
3535
"protobuf",
3636
"requests",
3737
"safe-pysha3",
38-
"urllib3 < 2",
39-
"web3 >= 6.0.0"
38+
"urllib3<2",
39+
"web3>=6.0.0",
4040
"websockets",
4141
]
4242

0 commit comments

Comments
 (0)