I am using Python 2.7. I am trying to pip install
a repo (on internal github) that has a dependency on another repo (also on internal github). I tried several options but the one that worked was like this:
(env)abc$ cat requirements.txt
-e git://github.abc.com/abc/abc.git#egg=my_abc --process-dependency-links
(env)abc$ pip install -r requirements.txt
But I got a warning while running the command line that said:
"DEPRECATION: Dependency Links processing has been deprecated and will be removed in a future release."
I am on pip v7.1.2. What is the right way to do this?