We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 92609de + aafe8bb commit 947f72aCopy full SHA for 947f72a
.github/workflows/test.yml
@@ -426,10 +426,13 @@ jobs:
426
# binderhub/static/dist/bundle.js is built, and use "-e" to
427
# ensure code coverage is captured.
428
#
429
+ # https://discourse.jupyter.org/t/suddenly-getting-oath-cert-error/24217/4
430
+ # pycurl wheels fail to pick up the system CA certs, so install from source
431
+ # until https://github.com/pycurl/pycurl/issues/834 resolves
432
run: |
433
pip install -r dev-requirements.txt -r testing/local-binder-local-hub/requirements.txt
- pip install ".[pycurl]"
- pip install -e ".[pycurl]"
434
+ pip install ".[pycurl]" --no-binary pycurl
435
+ pip install -e ".[pycurl]" --no-binary pycurl
436
437
- name: Setup JupyterHub NPM dependencies
438
run: npm install -g configurable-http-proxy
0 commit comments