You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
H2O version, Operating System and Environment
Branch jenkins-3.44.0.1, but likely affects current master as well (5620485c64aece7daeac46752d08533746dad762).
I am on Ubuntu 20.04.6 LTS.
Actual behavior
I receive build errors when running ./gradlew build dist -x test
Sphinx version error:
The sphinxcontrib.devhelp extension used by this project needs at least Sphinx v5.0; it therefore cannot be built with this version.
:buildH2oDevDist took 26.735 secs
> Task :buildH2oDevDist FAILED
Sphinx version error:
The alabaster extension used by this project needs at least Sphinx v3.4; it therefore cannot be built with this version.
:buildH2oDevDist took 26.129 secs
> Task :buildH2oDevDist FAILED
Extension error:
Could not import extension numpydoc (exception: No module named 'numpydoc')
:buildH2oDevDist took 27.238 secs
> Task :buildH2oDevDist FAILED
Adding numpydoc to the depencies, results in a working build.
Additional context
I also suggest changing the pip install commands in the READMEs to list all dependencies in a single command rather one pip install per dependency. This ensures that pip can check version limitations of all dependencies as a whole, and is needed to get the above commands working.
The text was updated successfully, but these errors were encountered:
H2O version, Operating System and Environment
Branch
jenkins-3.44.0.1
, but likely affects current master as well (5620485c64aece7daeac46752d08533746dad762
).I am on Ubuntu 20.04.6 LTS.
Actual behavior
I receive build errors when running
./gradlew build dist -x test
Expected behavior
I get a smooth build.
Steps to reproduce
Logs & suggested solution
Fix for this is described here
Error after applying this fix:
Based on this google result, I tried adding
"alabaster<0.7.14"
.Next error:
Adding
numpydoc
to the depencies, results in a working build.Additional context
I also suggest changing the
pip install
commands in the READMEs to list all dependencies in a single command rather onepip install
per dependency. This ensures that pip can check version limitations of all dependencies as a whole, and is needed to get the above commands working.The text was updated successfully, but these errors were encountered: