From 00c21b01b239c4a2174c81541619c0bfd6bac981 Mon Sep 17 00:00:00 2001 From: Jeffrey Martin Date: Mon, 29 Apr 2024 14:31:07 -0500 Subject: [PATCH] update avidtools to remove typing reference (#639) * Update to latest released version of [avidtools](https://github.com/avidml/avidtools) This removes the explicit install requirement for `typing` that is now included as a default distributed package with python 3.5+ Signed-off-by: Jeffrey Martin --- pyproject.toml | 3 +-- requirements.txt | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bec60f2b1..69d7fe607 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ dependencies = [ "jinja2>=3.1.2", "nltk>=3.8.1", "accelerate>=0.23.0", - "avidtools==0.1.1.2", + "avidtools==0.1.2", "stdlibs>=2022.10.9", "langchain>=0.0.300", "nemollm>=0.3.0", @@ -59,7 +59,6 @@ dependencies = [ "deepl==1.17.0", "fschat>=0.2.36", "litellm>=1.33.8", - "typing>=3.7,<3.8; python_version<'3.5'", ] [project.optional-dependencies] diff --git a/requirements.txt b/requirements.txt index 06acb885c..63c219631 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,7 @@ rapidfuzz>=3.0.0 jinja2>=3.1.2 nltk>=3.8.1 accelerate>=0.23.0 -avidtools==0.1.1.2 +avidtools==0.1.2 stdlibs>=2022.10.9 langchain>=0.0.300 nemollm>=0.3.0 @@ -27,7 +27,6 @@ ecoji>=0.1.0 deepl==1.17.0 fschat>=0.2.36 litellm>=1.33.8 -typing>=3.7,<3.8; python_version<'3.5' # tests pytest>=8.0 requests-mock==1.12.1