From a1b34543380c06ba45b648e05e8137d339eff2b0 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 19 Sep 2022 03:51:23 +0200 Subject: [PATCH] markdown-anki-decks: relax typer constraint further --- pkgs/tools/misc/markdown-anki-decks/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/markdown-anki-decks/default.nix b/pkgs/tools/misc/markdown-anki-decks/default.nix index 62c8ca86e6f0..375966da36b9 100644 --- a/pkgs/tools/misc/markdown-anki-decks/default.nix +++ b/pkgs/tools/misc/markdown-anki-decks/default.nix @@ -32,7 +32,7 @@ python3.pkgs.buildPythonApplication rec { substituteInPlace pyproject.toml \ --replace 'python-frontmatter = "^0.5.0"' 'python-frontmatter = "^1.0.0"' \ --replace 'genanki = "^0.10.1"' 'genanki = "*"' \ - --replace 'typer = "^0.3.2"' 'typer = "^0.4.0"' + --replace 'typer = "^0.3.2"' 'typer = "*"' ''; # No tests available on Pypi and there is only a failing version assertion test in the repo.