Skip to content

Commit

Permalink
Bump dependencies (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
kigawas authored Jul 29, 2022
1 parent 140966b commit 493cc73
Show file tree
Hide file tree
Showing 7 changed files with 103 additions and 30 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ repos:
- id: isort

- repo: https://github.com/ambv/black
rev: 22.1.0
rev: 22.6.0
hooks:
- id: black
exclude: venv

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.931
rev: v0.971
hooks:
- id: mypy
entry: mypy bip44/
pass_filenames: false

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
rev: v4.3.0
hooks:
- id: trailing-whitespace
- id: check-yaml
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ True

## Release Notes

### 0.1.1 ~ 0.1.3
### 0.1.1 ~ 0.1.2

- Support Python 3.10, 3.11
- Bump dependencies
Expand Down
13 changes: 13 additions & 0 deletions bip44/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
r"""
$$\ $$\ $$\ $$\ $$\ $$\
$$ | \__| $$ | $$ |$$ | $$ |
$$$$$$$\ $$\ $$$$$$\ $$ | $$ |$$ | $$ |
$$ __$$\ $$ |$$ __$$\ $$$$$$$$ |$$$$$$$$ |
$$ | $$ |$$ |$$ / $$ |\_____$$ |\_____$$ |
$$ | $$ |$$ |$$ | $$ | $$ | $$ |
$$$$$$$ |$$ |$$$$$$$ | $$ | $$ |
\_______/ \__|$$ ____/ \__| \__|
$$ |
$$ |
\__|
"""
from .wallet import Wallet

__all__ = ("Wallet",)
2 changes: 1 addition & 1 deletion bip44/consts.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Tuple
from bip32 import HARDENED_INDEX

from bip32 import HARDENED_INDEX

__all__ = ("COIN_PATHS",)

Expand Down
106 changes: 83 additions & 23 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bip44"
version = "0.1.3"
version = "0.1.2"
# doc
authors = ["Weiliang Li <to.be.impressive@gmail.com>"]
description = "Simple Python bip44 implementation. Mnemonic + bip32."
Expand Down
2 changes: 1 addition & 1 deletion tests/test_bip44.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from coincurve import PublicKey

from bip44.wallet import Wallet
from bip44.utils import get_eth_addr, to_checksum_addr
from bip44.wallet import Wallet

MNEMONIC = "purity tunnel grid error scout long fruit false embody caught skin gate"
MNEMONIC_JA = "なみだ むろん しひょう こうつう はかい たいうん さほう ことり げんき おでかけ ひこく ざんしょ"
Expand Down

0 comments on commit 493cc73

Please sign in to comment.