Cesar Lizarraga
Cesar Lizarraga
## Why are these changes needed? The KubeRay CRD allows for multiple worker groups, however, as it stands creating more worker groups is a manual process. This PR addresses that...
### Search before asking - [X] I searched the [issues](https://github.com/ray-project/kuberay/issues) and found no similar issues. ### KubeRay Component Others ### What happened + What you expected to happen 1. When...
This will add environment variables as extra options for the index-url flag. Click will [split on whitespace for multiple values by default.](https://thirdparty.aboutcode.org/pypi/simple/) Added a possibly unnecessary test to make sure...
An example pip.conf with sensitive variables changed to look like BASH variables: ```ini [global] extra-index-url = https://aws:${CODEARTIFACT_AUTH_TOKEN}@${DOMAIN}-${ACCOUNT_ID}.d.codeartifact.us-east-1.amazonaws.com/pypi/public-pypi/simple/ index-url = https://aws:${CODEARTIFACT_AUTH_TOKEN}@${DOMAIN}-${ACCOUNT_ID}.d.codeartifact.us-east-1.amazonaws.com/pypi/private-releases/simple/ ``` These are actually set using the `pip config set...
Most test fixtures are failing without any changes to the underlying code. This is an attempt to get them all closer to passing.
Fixes: https://github.com/nexB/python-inspector/issues/180 `pip` prefers the usage of the CLI tool to get information, therefore I resorted to `subprocess` for this. This should get the information from the `pip` CLI tool...
A `requirements.txt` file with the global options at the top of the file like so: ``` --index-url https://aws:${CODEARTIFACT_AUTH_TOKEN}@${DOMAIN}-${ACCOUNT_ID}.d.codeartifact.us-east-1.amazonaws.com/pypi/private-releases/simple/ --extra-index-url https://aws:${CODEARTIFACT_AUTH_TOKEN}@${DOMAIN}-${ACCOUNT_ID}.d.codeartifact.us-east-1.amazonaws.com/pypi/public-pypi/simple/ ``` [This issue](https://github.com/pypa/pip/issues/11511) mentions that the `--index-url` seems like it...