Skip to content

Commit f9536f5

Browse files
committed
correcting version in setup.cfg
1 parent b8bf324 commit f9536f5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

negmas/scripts/negotiate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ def run(
7878
"-a",
7979
help="Negotiator (agent) type",
8080
),
81-
reserved: list[float] | None = typer.Option(None, "--reserved", "-r"),
81+
reserved: list[float] = typer.Option(None, "--reserved", "-r"),
8282
normalize: bool = True,
83-
steps: int | None = typer.Option(None, "--steps", "-s"), # type: ignore
84-
timelimit: int | None = typer.Option(None, "--time", "--timelimit", "-t"), # type: ignore
83+
steps: int = typer.Option(None, "--steps", "-s"), # type: ignore
84+
timelimit: int = typer.Option(None, "--time", "--timelimit", "-t"), # type: ignore
8585
plot: bool = True,
8686
verbose: bool = typer.Option(False, "--verbose", "-v"),
8787
progress: bool = False,

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tag = False
66

77
[metadata]
88
name = negmas
9-
version = 0.9.5
9+
version = 0.9.6
1010
author = Yasser Mohammad
1111
author_email = yasserfarouk@gmail.com
1212
description = NEGotiations Managed by Agent Simulations

0 commit comments

Comments
 (0)