From 4a10edc6ee97b0df3e9c3cd4cae1a6040922daa7 Mon Sep 17 00:00:00 2001 From: Matt Liberty Date: Mon, 11 Nov 2024 09:53:56 -0500 Subject: [PATCH] Added back numpy dependency, which is used for unit tests. --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index d42f705..c9f7190 100644 --- a/setup.py +++ b/setup.py @@ -74,6 +74,9 @@ ], keywords='cryto cryptography monocypher chacha blake2b 25519', + install_requires=[ + 'numpy>=2.1.0,<3', + ], ext_modules=extensions, python_requires='~=3.10',