Skip to content

Commit

Permalink
Fix balances parsing issue (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
Uxio0 authored Sep 13, 2021
1 parent 0615ada commit 46ea9dd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: pip install -r requirements-test.txt coveralls wheel
run: |
pip install wheel
pip install -r requirements-test.txt coveralls
env:
PIP_USE_MIRRORS: true
- name: Run tests and coverage
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ docutils==0.17.1
drf-yasg[validation]==1.20.0
ethereum==2.3.2
firebase-admin==5.0.2
gnosis-py[django]==3.3.1
gnosis-py[django]==3.3.2
gunicorn[gevent]==20.1.0
hexbytes==0.2.2
packaging>=21.0
Expand Down
2 changes: 1 addition & 1 deletion safe_transaction_service/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.2.0"
__version__ = "3.2.1"
__version_info__ = tuple(
[
int(num) if num.isdigit() else num
Expand Down

0 comments on commit 46ea9dd

Please sign in to comment.