-
Notifications
You must be signed in to change notification settings - Fork 512
Open
Labels
enhancementNew feature or requestNew feature or request
Description
This issue is related to the following conversation from fast.ai forum: https://forums.fast.ai/t/nbdev-for-private-pypi-repositories-and-poetry-package-management/100523
Goal of the issue
- To gauge the interest in nbdev supporting private PyPi repos (e.g. GCP Artifact Registry).
- To discuss the best way to integrate private PyPi repo support into nbdev.
If there's interest, I'd be happy to make the contribution.
Problem
nbdev does not support dependencies from private PyPi repositories.
Workaround
Changing the following line in nbdev CI workflow:
test -f setup.py && pip install -e ".[dev]"
to:
test -f setup.py && pip install --extra-index-url https://$PYPIUSER:$PYPIPASSWORD@$PYPISERVER -e ".[dev]"
fixes the issue.
LinuxIsCool and BohdanBilonoh
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request