diff --git a/bittensor_cli/cli.py b/bittensor_cli/cli.py index 56c8e2c4a..290abc73a 100755 --- a/bittensor_cli/cli.py +++ b/bittensor_cli/cli.py @@ -1583,9 +1583,6 @@ def main_callback( for k, v in config.items(): if k in self.config.keys(): self.config[k] = v - # Temporarily disable cach for this btcli process. - self.config["disk_cache"] = False - os.environ["DISK_CACHE"] = "0" if self.config.get("use_cache", False): with open(self.debug_file_path, "w+") as f: f.write( diff --git a/pyproject.toml b/pyproject.toml index 31fba5e6d..301d101ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ ] dependencies = [ "wheel", - "async-substrate-interface==2.0.1", + "async-substrate-interface==2.0.2", "aiohttp~=3.13", "backoff~=2.2.1", "bittensor-drand>=1.3.0", @@ -40,7 +40,7 @@ dependencies = [ "pycryptodome>=3.0.0,<4.0.0", "PyYAML~=6.0", "rich>=13.7,<15.0", - "cyscale==0.3.0", + "cyscale>=0.3.1,<1.0.0", "typer>=0.16", "typing_extensions>4.0.0; python_version<'3.11'", "bittensor-wallet==4.0.1",