From 2d94c8b5615337eb879b769a5fba6a992fe5476d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Mon, 7 Oct 2024 17:16:25 +0200 Subject: [PATCH] Disable rich markup --- nixprstatus/__main__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nixprstatus/__main__.py b/nixprstatus/__main__.py index e6bc2dc..c2d3921 100644 --- a/nixprstatus/__main__.py +++ b/nixprstatus/__main__.py @@ -5,7 +5,7 @@ from rich.console import Console from nixprstatus.pr import pr_merge_status from nixprstatus.pr import commits_since -app = typer.Typer() +app = typer.Typer(rich_markup_mode=None) DEFAULT_HEADERS = { "Accept": "application/vnd.github.text+json", diff --git a/pyproject.toml b/pyproject.toml index e9c46c3..e8c90f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nixprstatus" -version = "0.1.3" +version = "0.1.4" description = "Nixpkgs PR status checker" authors = ["Torjus HÃ¥kestad "] license = "MIT"