-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Click version restriction after upstream mypy fix
- Loading branch information
Showing
1 changed file
with
2 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,17 +6,15 @@ | |
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'" | ||
] | ||
|
||
setup( | ||
author="Ryan Gibson", | ||
author_email="[email protected]", | ||
name="stego-lsb", | ||
version="1.5.0", | ||
version="1.5.1", | ||
description="stego lsb", | ||
keywords="stego lsb", | ||
license="MIT", | ||
|