diff --git a/pyproject.toml b/pyproject.toml index 194bb5c..b64346f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ namespaces = true # ----------------------------------------- Project Metadata ------------------------------------- # [project] -version = "0.0.0.dev25" +version = "0.0.0.dev26" name = "LoggerMan" dependencies = [ "MDit == 0.0.0.dev11", diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..37b75b1 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +MDit == 0.0.0.dev11 +ActionMan == 0.0.0.dev17 +ProtocolMan == 0.0.0.dev2 +ExceptionMan == 0.0.0.dev11 +pydantic +rich \ No newline at end of file diff --git a/src/loggerman/logger.py b/src/loggerman/logger.py index ee15cfb..f2ddae0 100644 --- a/src/loggerman/logger.py +++ b/src/loggerman/logger.py @@ -185,7 +185,7 @@ def process_exit_code(): console_config = _mdit.target.rich.ConsoleConfig( color_system="truecolor" if in_github else "auto", force_terminal=True if in_github else None, - width=91 if in_github else None, + width=90 if in_github else None, ) elif isinstance(console_config, dict): console_config = _mdit.target.rich.ConsoleConfig(**console_config)