Hi Everyone,
I have a task that installs a python requirement from bitbucket over ssh.
The requirement are defined in a requirements.txt file.
In the agent, that task fails buiding the environment with the following error:
Replacing original pip vcs '
' with 'git+git@bitbucket.org/REST-OF-GIT-URL.git#egg=MY-PACKAGE'
ERROR: Invalid requirement: 'git+git@bitbucket.org/REST-OF-GIT-URL.git#egg=MY-PACKAGE'
Hint: It looks like a path. File 'git+git@bitbucket.org/REST-OF-GIT-URL.git#egg=MY-PACKAGE' does not exist.
RequirementsManager handler <clearml_agent.helper.package.external_req.ExternalRequirements object at 0x7f5d9b4d29a0> raised exception: Failed installing GIT/HTTPs package 'git+git@bitbucket.org/REST-OF-GIT-URL.git#egg=MY-PACKAGE'
clearml_agent: ERROR: Could not install task requirements!
Failed installing GIT/HTTPs package 'git+git@bitbucket.org/REST-OF-GIT-URL.git#egg=MY-PACKAGE'
So it seems like the agent removed the 'ssh://' string from the repo URL, so it's effectively invalid.
Am I doing something wrong here?
That same task used to work so it's very confusing.