Skip to content

Commit

Permalink
[hotfix][3.6.3] Fixing no version checking (#1063)
Browse files Browse the repository at this point in the history
* fixing no_version_checking error

* updating version to 3.6.3
  • Loading branch information
eduardogr committed Jan 21, 2023
1 parent 5557396 commit 1d61922
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.2
3.6.3
2 changes: 1 addition & 1 deletion bittensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
nest_asyncio.apply()

# Bittensor code and protocol version.
__version__ = '3.6.2'
__version__ = '3.6.3'
version_split = __version__.split(".")
__version_as_int__ = (100 * int(version_split[0])) + (10 * int(version_split[1])) + (1 * int(version_split[2]))

Expand Down
2 changes: 1 addition & 1 deletion bittensor/_cli/cli_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self, config: 'bittensor.Config' ):
config (:obj:`bittensor.Config`, `required`):
bittensor.cli.config()
"""
if not config.no_version_checking:
if config.get('no_version_checking') != None and not config.no_version_checking:
try:
bittensor.utils.version_checking()
except:
Expand Down

0 comments on commit 1d61922

Please sign in to comment.