-
Notifications
You must be signed in to change notification settings - Fork 304
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
Documentation Missing #370
Comments
Thanks for reporting this @Robert-Carver! ❤️ Here is a link to verify that they have indeed vanished: https://jupyterhub-kubespawner.readthedocs.io/en/latest/spawner.html Here is the latest read the docs build, which is passing: https://readthedocs.org/projects/jupyterhub-kubespawner/builds/9980877/ I recall this happened before, I don't remember why... But, I bet it relates to #366 about kubernetes==11.0.01b is broke. |
AHA!It is because read the docs generate this documentation by first installing kubespawner, but unlike This makes the install succeed, but when we use it kubespawner will fail as it installed a broken pre-release. What we need to do is ensure we don't install the pre-releases. One way to go, is to first run Ping @choldgraf @willingc, can you let me be a RTD maintainer of kubespawner to configure the build? |
Using `python setup.py install` will install PyPI pre-releases of packages while `pip install -r requirements.txt` won't do that. This lead to CI tests failing as reported in kubeflow#421. This commit updates the CI build setup to run two parallell tests, one where we don't use pre-releases and one where we do but allow them to fail and won't wait on the run to complete either. ref: jupyterhub/kubespawner#370 (comment) Fixes kubeflow#421
Using `python setup.py install` will install PyPI pre-releases of packages while `pip install -r requirements.txt` won't do that. This lead to CI tests failing as reported in #421. This commit updates the CI build setup to run two parallell tests, one where we don't use pre-releases and one where we do but allow them to fail and won't wait on the run to complete either. ref: jupyterhub/kubespawner#370 (comment) Fixes #421
The documentation pages for:
Have mysteriously vanished.
The text was updated successfully, but these errors were encountered: