Skip to content

Commit

Permalink
Merge pull request #163 from opentensor/release/8.1.1
Browse files Browse the repository at this point in the history
Release/8.1.1
  • Loading branch information
ibraheem-opentensor authored Oct 4, 2024
2 parents 7358006 + 0d8caa7 commit 921dc0f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 8.1.1 /2024-10-04

## What's Changed

* Handles missing hotkey file when traversing wallet by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/161
* Backmerge/8.1.0 by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/162

**Full Changelog**: https://github.com/opentensor/btcli/compare/v8.0.0...v8.1.1

## 8.1.0 /2024-10-03

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion bittensor_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
from .cli import CLIManager


__version__ = "8.1.0"
__version__ = "8.1.1"

__all__ = ["CLIManager", "__version__"]
2 changes: 1 addition & 1 deletion bittensor_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
from websockets import ConnectionClosed
from yaml import safe_dump, safe_load

__version__ = "8.1.0"
__version__ = "8.1.1"

_core_version = re.match(r"^\d+\.\d+\.\d+", __version__).group(0)
_version_split = _core_version.split(".")
Expand Down
4 changes: 3 additions & 1 deletion bittensor_cli/src/bittensor/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

from bittensor_wallet import Wallet, Keypair
from bittensor_wallet.utils import SS58_FORMAT
from bittensor_wallet.errors import KeyFileError
from bittensor_wallet import utils
from jinja2 import Template
from markupsafe import Markup
Expand Down Expand Up @@ -222,7 +223,8 @@ def get_hotkey_wallets_for_wallet(
except (
UnicodeDecodeError,
AttributeError,
TypeError
TypeError,
KeyFileError,
): # usually an unrelated file like .DS_Store
continue

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ scalecodec==1.2.11
substrate-interface~=1.7.9
typer~=0.12
websockets>=12.0
bittensor-wallet==2.0.0
bittensor-wallet==2.0.1
bt-decode==0.2.0a0

0 comments on commit 921dc0f

Please sign in to comment.