Hacker News new | ask | show | jobs
by thehesiod 2406 days ago
I'd like to use poetry however ran into https://github.com/sdispater/poetry/issues/1554

We have a custom pypi server and need all requests to go through it, however haven't figured a way to make poetry always use our index server for all modules instead of pypi.org

1 comments

Add a second source and it will prioritise that over pypi.

  [[tool.poetry.source]]
  name = "my-repo-name"
  url = "https://myrepo.url/"