-
-
Notifications
You must be signed in to change notification settings - Fork 211
Fix circle-ci builds #450
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 circle-ci builds #450
Conversation
| - pip install --upgrade pip | ||
| - pip install --upgrade numpy | ||
| - pip install --upgrade scipy | ||
| - pip install git+https://github.com/mfeurer/liac-arff.git |
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.
Why not add:
pip install liac-arff
I don't see it anywhere in this script
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.
python setup.py develop takes care of this. Only numpy and scipy need to be present in order to allow the installation of scikit-learn.
| - sudo -E apt-get -yq update | ||
| - sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install dvipng texlive-latex-base texlive-latex-extra | ||
| # finally install the requirements of the package to allow autodoc | ||
| - pip install -r requirements.txt |
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.
How do you enforce the requirements to be installed?
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.
python setup.py develop takes care of this. Only numpy and scipy need to be present in order to allow the installation of scikit-learn.
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.
Seems legit.
|
@janvanrijn you can actually verify this if you click on Details for ci/circleci in the checks window. |
I think this is the last step prior to our first pypi release. We removed the requirements.txt file in PR #438 and therefore need to update the circle-ci build file. Furthermore, this PR enables building of the docs (not deployment) for all branches pushed to github.