Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bittensor_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def edit_help(cls, option_name: str, help_text: str):
True,
"--prompt/--no-prompt",
" /--yes",
"--prompt/--no_prompt",
" /--no_prompt",
" /-y",
help="Enable or disable interactive prompts.",
)
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ dependencies = [
"async-substrate-interface>=1.4.2",
"aiohttp~=3.10.2",
"backoff~=2.2.1",
"click<8.2.0", # typer.testing.CliRunner(mix_stderr=) is broken in click 8.2.0+
"GitPython>=3.0.0",
"netaddr~=1.3.0",
"numpy>=2.0.1,<3.0.0",
Expand All @@ -27,7 +26,7 @@ dependencies = [
"PyYAML~=6.0.1",
"rich>=13.7,<15.0",
"scalecodec==1.2.11",
"typer>=0.12,<0.16",
"typer>=0.16",
"bittensor-wallet>=3.0.7",
"plotille>=5.0.0",
"plotly>=6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e_tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def exec_command(
extra_args.extend(["--network", "ws://127.0.0.1:9945"])

# Capture stderr separately from stdout
runner = CliRunner(mix_stderr=False)
runner = CliRunner()
# Prepare the command arguments
args = [
command,
Expand Down
Loading