diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dfa03d4e..fc6ddbaf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,10 +10,10 @@ jobs: steps: - uses: actions/checkout@master - - name: Set up Python 3.7 + - name: Set up Python uses: actions/setup-python@v2 with: - python-version: 3.7 + python-version: 3.9 - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/README.md b/README.md index 9f2feaae..f46ba42c 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,9 @@ make tests ``` ### Changelogs +**0.8.3** +* Fix dependency issue in setup.py. + **0.8.2** * Add web3 library as a dependency for the project. diff --git a/setup.py b/setup.py index 4f9cb406..fc00456f 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ EMAIL = "achilleas@injectivelabs.com" AUTHOR = "Injective Labs" REQUIRES_PYTHON = ">=3.9" -VERSION = "0.8.2" +VERSION = "0.8.3" REQUIRED = [ "aiohttp", @@ -35,8 +35,8 @@ "protobuf", "requests", "safe-pysha3", - "urllib3 < 2", - "web3 >= 6.0.0" + "urllib3<2", + "web3>=6.0.0", "websockets", ]