From 0b4946797f17de084baba30601b8bcbc662ddaa8 Mon Sep 17 00:00:00 2001 From: Robin Holzinger <127766570+RobinHolzingerQC@users.noreply.github.com> Date: Wed, 22 Nov 2023 14:04:59 +0100 Subject: [PATCH] Pin `typer` to address issues in argument defaults (#672) * pin typer>=0.9,<1.0 * pin typer in setup.cfg --- environment.yml | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/environment.yml b/environment.yml index 438ecc55..6a498249 100644 --- a/environment.yml +++ b/environment.yml @@ -5,7 +5,7 @@ dependencies: - python>=3.7 - pip - fastapi - - typer + - typer >=0.9,<1.0 - authlib=0.15.5 - psycopg2 - httpx>=0.22.0 diff --git a/setup.cfg b/setup.cfg index f5b2737d..81c3b02d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -41,7 +41,7 @@ install_requires = sqlalchemy-utils tenacity toml - typer + typer >=0.9,<1.0 typing_extensions ujson uvicorn