Skip to content

Commit 5a78084

Browse files
committed
setup.py: fix dependencies and require numpy>=1.21
1 parent 3714be8 commit 5a78084

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

libs/ccc/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Remember to change also setup.py with the version here
2-
__version__ = "0.1.6"
2+
__version__ = "0.1.7"

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setuptools.setup(
1313
name="ccc-coef",
14-
version="0.1.6", # remember to change libs/ccc/__init__.py file also
14+
version="0.1.7", # remember to change libs/ccc/__init__.py file also
1515
author="Milton Pividori",
1616
author_email="[email protected]",
1717
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 @@
3030
],
3131
python_requires=">=3.9",
3232
install_requires=[
33-
"numpy",
33+
# numpy.typing is only available in numpy>=1.21.0
34+
"numpy>=1.21.0",
3435
"scipy",
3536
"numba",
3637
],

0 commit comments

Comments
 (0)