From 298b783d7a0625b8deb2d8aad28402327b6d6e3c Mon Sep 17 00:00:00 2001 From: Ryan Gibson Date: Tue, 18 Jul 2023 17:08:44 -0400 Subject: [PATCH] Remove Click version restriction after upstream mypy fix --- setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index c475c50..97ac212 100644 --- a/setup.py +++ b/setup.py @@ -6,9 +6,7 @@ readme = readme_file.read() requirements = [ - # TODO: remove Click restriction after release of 8.1.6 or merge of - # https://github.com/pallets/click/pull/2565 - "Click<8.1.4", "Pillow", "numpy; python_version>='3.9'", + "Click", "Pillow", "numpy; python_version>='3.9'", "numpy>=1.15.4,<1.25.0; python_version>='3.8' and python_version<'3.9'" ] @@ -16,7 +14,7 @@ author="Ryan Gibson", author_email="ryanalexandergibson@gmail.com", name="stego-lsb", - version="1.5.0", + version="1.5.1", description="stego lsb", keywords="stego lsb", license="MIT",