Juan Jose Baldelomar
02/06/2024, 11:37 PMpoetry install when in the folder of the tap itself having set the correct environment variables for authentication of the source, but not with the Meltano installation. Do you guys know a way to solve this problem?Edgar Ramírez (Arch.dev)
02/07/2024, 12:47 AMmy-dep==version) rather than a direct URL (e.g. git+https://...)?
If so, you should be able to use normal pip env vars like PIP_INDEX_URL and PIP_EXTRA_INDEX_URL to refer to your private source.Juan Jose Baldelomar
02/07/2024, 1:00 AM[tool.poetry.dependencies]
python = ">=3.11,<3.12"
private_library = {version = "^0.3.0", source = "my-source"}
[[tool.poetry.source]]
name = "my-source"
url = "HERE GOES THE HTTP URL TO THE GITLAB REPOSITORY"
priority = "supplemental"
and usually what I do when I have something like this is that I would set the env vars:
POETRY_HTTP_BASIC_MY_SOURCE_USERNAME
POETRY_HTTP_BASIC_MY_SOURCE_PASSWORDJuan Jose Baldelomar
02/07/2024, 12:41 PMPIP_EXTRA_INDEX_URL with authentication in the url :)Edgar Ramírez (Arch.dev)
02/07/2024, 2:36 PM