From 050cae893ffb92e864045d61a2a47e8115722331 Mon Sep 17 00:00:00 2001 From: Milton Pividori Date: Tue, 8 Aug 2023 12:36:03 -0600 Subject: [PATCH] setup.py: fix dependencies and require numpy>=1.21 --- libs/ccc/__init__.py | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/libs/ccc/__init__.py b/libs/ccc/__init__.py index 88810bee..b05ed826 100644 --- a/libs/ccc/__init__.py +++ b/libs/ccc/__init__.py @@ -1,2 +1,2 @@ # Remember to change also setup.py with the version here -__version__ = "0.1.6" +__version__ = "0.1.7" diff --git a/setup.py b/setup.py index e5d18f41..272abd58 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setuptools.setup( name="ccc-coef", - version="0.1.6", # remember to change libs/ccc/__init__.py file also + version="0.1.7", # remember to change libs/ccc/__init__.py file also author="Milton Pividori", author_email="miltondp@gmail.com", description="The Clustermatch Correlation Coefficient (CCC) is a highly-efficient, next-generation not-only-linear correlation coefficient that can work on numerical and categorical data types.", @@ -30,7 +30,8 @@ ], python_requires=">=3.9", install_requires=[ - "numpy", + # numpy.typing is only available in numpy>=1.21.0 + "numpy>=1.21.0", "scipy", "numba", ],