Closed
Description
We have some packages in a secondary pypi server so our requirements.txt looks something like:
-i https://pypi.org/simple
--extra-index-url https://repo.fury.io/techadmin/
amazon-kclpy==1.5.0
argh==0.26.2
...
A recent change this package to pip.js
seems to re-order this:
https://github.com/UnitedIncome/serverless-python-requirements/blob/master/lib/pip.js#L287
to
--extra-index-url https://repo.fury.io/techadmin/
-i https://pypi.org/simple
amazon-kclpy==1.5.0
argh==0.26.2
Now, this works fine with pip install, but when serverless tries to install with this file it can't find anything in the repo.fury.io index.