From ba679c297014339fe6ed1dd5e76f767588fafc7e Mon Sep 17 00:00:00 2001 From: "Tony Ibbs (Tibs)" Date: Wed, 18 May 2022 15:09:25 +0100 Subject: [PATCH] Update requirements.txt 1. https://github.com/tiangolo/typer/issues/377 makes it necessary to update the version of typer to use a pinned version of click (that has the `get_terminal_size` function) 2. updated the other couple of main deoendencies a little 3. also need to specify requests 4. generated a new requirements.txt using `pip freeze` After which `python search.py --help` works. --- requirements.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 7c848e9..3730dc9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ -opensearch-py==1.0.0 -python-dotenv==0.19.2 -typer==0.4.0 +opensearch-py==1.1.0 +click==8.1.3 +python-dotenv==0.20.0 +typer==0.4.1