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", ],