-
-
Notifications
You must be signed in to change notification settings - Fork 246
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,14 +25,11 @@ dependencies: | |
| - pip install --upgrade pip | ||
| - pip install --upgrade numpy | ||
| - pip install --upgrade scipy | ||
| - pip install git+https://github.com/mfeurer/liac-arff.git | ||
| # install documentation building dependencies | ||
| - pip install --upgrade matplotlib setuptools nose coverage sphinx pillow sphinx-gallery sphinx_bootstrap_theme cython numpydoc scikit-learn nbformat nbconvert | ||
| # Installing required packages for `make -C doc check command` to work. | ||
| - 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 | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How do you enforce the requirements to be installed?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems legit. |
||
|
|
||
| # The --user is needed to let sphinx see the source and the binaries | ||
| # The pipefail is requested to propagate exit code | ||
|
|
@@ -58,8 +55,3 @@ general: | |
| artifacts: | ||
| - "doc/_build/html" | ||
| - "~/log.txt" | ||
| # Restric the build to the branch master only | ||
| branches: | ||
| only: | ||
| - master | ||
| - develop | ||
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 developtakes care of this. Only numpy and scipy need to be present in order to allow the installation of scikit-learn.