Hi all,
I'm trying to install a specific commit of a Python package because the commit hasn't made it into a PyPI release yet.
I see
in the docs that "Requirements must follow the format specified in PEP-508" and then when I view
PEP-508 I see an example to accomplish my goal:
If I add a similar line to my requirements.txt and use:
gcloud composer environments update ENVIRONMENT-NAME \\
--update-pypi-packages-from-file requirements.txt \\
--location LOCATION
I get the following error:
(gcloud.composer.environments.update) INVALID_ARGUMENT: Found 1 problem:
Maybe I'm missing something, but seeing as how I'm following an example from PEP-508, it seems like the validation here is more strict than PEP-508.
Is there another way to specify a git commit that will work with Composer?
Thanks!
Kevin