Skip to content

Commit

Permalink
Loosen numpy requirement
Browse files Browse the repository at this point in the history
Notably, NumPy did not even support Python 3.8 until 1.17.3
  • Loading branch information
ragibson committed Aug 25, 2023
1 parent 8e872da commit 0fd7f5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@

requirements = [
"Click", "Pillow", "numpy; python_version>='3.9'",
"numpy>=1.15.4,<1.25.0; python_version>='3.8' and python_version<'3.9'"
"numpy<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.1",
version="1.5.2",
description="stego lsb",
keywords="stego lsb",
license="MIT",
Expand Down

0 comments on commit 0fd7f5b

Please sign in to comment.