<div dir="ltr">Is there a way to &quot;merge&quot; tox deps with requirements.txt, 
without having to split requirements.txt into multiple files (one per 
dep specified in tox.ini) or other more complicated methods?<br><br>For
 example, I have a project with all current dependencies in 
requirements.txt, and would like to test it with multiple versions of 
django<br><br>I would like my deps = to look like:<br><div><br>deps =<br>  -r../requirements.txt<br>  django17: Django&gt;=1.7,&lt;1.8<br>  django18: Django&gt;=1.8,&lt;1.9<br><br></div><div>This would tell tox to overwrite the Django version in requirements.txt with the environment specified version<br><br></div>Currently
 this errors: Double requirement given: Django==1.7.7 (from -r 
../requirements.txt (line 3)) (already in Django&lt;1.8,&gt;=1.7, 
name=&#39;Django&#39;)</div>