-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade to chain v0.21.9 (#252)
* chore: upgrade to chain v0.21.9 * fix: poetry.lock * fix(scripts): make the flake8 version consistent with pyproject.toml * refactor: appease linter * use TypeError instead of generic exception * fix(utils.py): invalid call of isinstance * fix tests * changelog --------- Co-authored-by: Unique-Divine <[email protected]>
- Loading branch information
1 parent
c87d0f6
commit ddee6d1
Showing
8 changed files
with
515 additions
and
467 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
*.pyc | ||
.coverage | ||
.env | ||
.venv | ||
.pytest_cache | ||
.coveragerc | ||
.DS_Store | ||
.idea | ||
build | ||
.python-version | ||
bin | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "nibiru" | ||
version = "0.21.3b7" | ||
version = "0.21.9" | ||
description = "Python SDK for interacting with Nibiru." | ||
authors = ["Nibiru Chain <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -34,7 +34,7 @@ pre-commit = "^2.20.0" | |
shutup = "^0.2.0" | ||
websocket-client = "^1.4.1" | ||
packaging = "^21.3" | ||
nibiru-proto = "==0.21.3b7" | ||
nibiru-proto = "==0.21.9" | ||
bip32 = "^3.3" | ||
importlib-metadata = "^5.0.0" | ||
types-protobuf = "^4.23.0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#!/bin/bash | ||
poetry run black . | ||
poetry run isort . | ||
flake8 pysdk | ||
flake8 tests | ||
flake8 examples | ||
poetry run python -m pip install flake8 | ||
poetry run flake8 pysdk tests examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters