-
Notifications
You must be signed in to change notification settings - Fork 2
22 Updated numpy dependecy as quickfix #23
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
22 Updated numpy dependecy as quickfix #23
Conversation
.github/workflows/pytest.yaml
Outdated
- name: apt update | ||
run: sudo apt-get update | ||
- name: Install blas for Numpy from source | ||
run: sudo apt-get install -y libblas-dev #highly recommended for numpy from source, check https://numpy.org/devdocs/user/building.html#prerequisites | ||
- name: Install lapack for Numpy from source | ||
run: sudo apt-get install -y liblapack-dev #highly recommended for numpy from source, check https://numpy.org/devdocs/user/building.html#prerequisites |
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.
You can do that in one single step:
- name: apt update | |
run: sudo apt-get update | |
- name: Install blas for Numpy from source | |
run: sudo apt-get install -y libblas-dev #highly recommended for numpy from source, check https://numpy.org/devdocs/user/building.html#prerequisites | |
- name: Install lapack for Numpy from source | |
run: sudo apt-get install -y liblapack-dev #highly recommended for numpy from source, check https://numpy.org/devdocs/user/building.html#prerequisites | |
- name: Install lapack/blas for Numpy from source | |
run: sudo apt-get update && sudo apt-get install -y liblapack-dev libblas-dev #highly recommended for numpy from source, check https://numpy.org/devdocs/user/building.html#prerequisites |
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.
right. done
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.
Interesting that the poetry.lock file is not committed.
I noticed that too. I don't know if there is a reason for that. |
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.
Looks like this project does not has a changelog. So, I approved.
fixes #22
We decided against updating to python 3.8 right now, and build Numpy from source without the Buffer overflow issue instead.
The update to python 3.8 with the newest Numpy/Pandas will be moved to a new issue.