From 5aa8e7e9d65bc61657e2d0de43b8b78a58645e19 Mon Sep 17 00:00:00 2001 From: Derek Graeber Date: Mon, 1 Apr 2024 16:26:08 -0400 Subject: [PATCH] loosen typing-extensions min library --- CHANGELOG.md | 1 + requirements.txt | 15 ++------------- setup.py | 2 +- 3 files changed, 4 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc86f462..e05b9557 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch - updated `werkzeug~=2.3.8` in requirements-dev as per dependabot - removed explicit support for python 3.7 - this was only due to support for black in requirements-dev, but was also removed from setup.py +- loosened restrictions on `typing-requirements` library ### Fixes diff --git a/requirements.txt b/requirements.txt index d2b1c310..d41d3494 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # -# This file is autogenerated by pip-compile with Python 3.7 +# This file is autogenerated by pip-compile with Python 3.9 # by the following command: # # pip-compile @@ -57,10 +57,6 @@ humanfriendly==10.0 # property-manager idna==3.6 # via requests -importlib-metadata==6.7.0 - # via - # click - # pydantic jinja2==3.1.3 # via # cookiecutter @@ -118,15 +114,10 @@ smmap==5.0.1 # via gitdb text-unidecode==1.3 # via python-slugify -typing-extensions==4.6.3 +typing-extensions>=4.6.3 # via - # annotated-types - # arrow - # gitpython - # importlib-metadata # pydantic # pydantic-core - # rich # seed-farmer (setup.py) urllib3==1.26.18 # via @@ -135,5 +126,3 @@ urllib3==1.26.18 # seed-farmer (setup.py) verboselogs==1.7 # via property-manager -zipp==3.15.0 - # via importlib-metadata diff --git a/setup.py b/setup.py index f32e113f..47eb10e9 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ "pyhumps~=3.5.0", "pydantic~=2.5.3", "executor~=23.2", - "typing-extensions~=4.6.1", + "typing-extensions>=4.6.3", "rich~=12.4.0", "requests>=2.28,<2.32", "python-dotenv~=0.21.0",