Skip to content

Commit

Permalink
setup.py: fix dependencies and require numpy>=1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
miltondp committed Sep 6, 2023
1 parent 3714be8 commit 050cae8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libs/ccc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Remember to change also setup.py with the version here
__version__ = "0.1.6"
__version__ = "0.1.7"
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
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.",
Expand All @@ -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",
],
Expand Down

0 comments on commit 050cae8

Please sign in to comment.