-
Notifications
You must be signed in to change notification settings - Fork 183
Modify building daal4py for wheel packages #488
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
Modify building daal4py for wheel packages #488
Conversation
eb8c51e
to
392dfd3
Compare
69f74eb
to
9daf339
Compare
requirements-dev.txt
Outdated
clang-format==9.0.0 | ||
Cython==0.29.21 | ||
Jinja2==2.11.3 | ||
numpy>=1.18 |
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.
Downgrade?
requirements.txt
Outdated
@@ -0,0 +1,3 @@ | |||
dpcpp_cpp_rt==2021.1 | |||
daal==2021.1 | |||
numpy==1.20 |
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.
Users can use numpy less:
numpy==1.20 | |
numpy>=1.15 |
setup.py
Outdated
author="Intel", | ||
version=d4p_version, | ||
url='https://github.com/IntelPython/daal4py', | ||
author_email="onedal.maintainers@intel.com", |
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.
Need to align with current attributes
setup_requires = [] | ||
with open('requirements-dev.txt') as f: | ||
setup_requires.extend(f.read().splitlines()) | ||
|
||
# daal setup | ||
setup(name="daal4py", |
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.
I would like see a result to tets.pypi
bc03dd1
to
50cf5ea
Compare
a1524d6
to
e239720
Compare
Description
Daal4py from pip, without conda environment can't search onedal dll libraries. This changes needed to fix this problem.