-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix some dependencies for easy installation #47
Fix some dependencies for easy installation #47
Conversation
@matsui528 Plz review this :) |
@@ -13,7 +13,7 @@ jobs: | |||
max-parallel: 3 | |||
matrix: | |||
platform: [ubuntu-latest] | |||
python-version: [3.5, 3.7, 3.8, 3.9] | |||
python-version: ["3.7", "3.8", "3.9"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shoud be str type (to use 3.10, which currently incompatible with pqkmeans ...)
@@ -1,6 +1,5 @@ | |||
numpy | |||
numpy<1.21 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
errors occur with recent numpy
scikit-learn | ||
pipe | ||
pipe<2.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
breaking changes on 2.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Confirmed on Python 3.9 in codespaces. LGTM!
Problem
#46
The old library lshash3 is preventing easy installation of pqkmeans. This library is depended on by texmex-python.
Solution
Move texmex-python to the extras_require section.
Of course, you can also
pip install pqkmeans[texmex]
(orpip install -e . [texmex]
) to install it with texmex.