UV - Private Packages

For Aikido to update dependencies that include private packages, it needs access to your private registries so it can generate accurate lockfile updates. For UV, this can be achieved by adding the appropriate environment variables in Aikido.

Credentials for package indexes

If you're adding package indexesarrow-up-right that require authentication in your pyproject.toml, you can provide the username and password for the indexes by setting up environment variables in Aikido. The environment variables should be created in the following format:

  • UV_INDEX_[INDEX_NAME]_USERNAME

  • UV_INDEX_[INDEX_NAME]_PASSWORD

Where the [INDEX_NAME] is the name of the index which you specified in your pyproject.toml file in uppercase. For example, set UV_INDEX_PYTORCH_USERNAME and UV_INDEX_PYTORCH_PASSWORD for the following project file:

[[tool.uv.index]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cpu"

When creating a PR via Autofix, Aikido will include these environment variables when running uv commands.

Setting a default index

If you're overriding the default index instead of adding a index in your pyproject.toml file, you can set the UV_DEFAULT_INDEX environment variable in Aikido.

Configuration in Aikido

You can configure Aikido to authenticate with your private registry by following the steps below:

  1. Go to your account's settings page for AutoFix, herearrow-up-right.

  2. Click on “Connect Registry”, the configuration modal will now be shown.

  1. Select the “UV” section.

  1. Add the environment variables (eg. UV_DEFAULT_INDEX) required for your build file. All environment variables that start with UV_ are allowed.

  2. Click “Connect Registry” to save the configuration.

Last updated

Was this helpful?