-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make sdk/python/setup.py use requirements.txt #1271
Comments
@Ark-kun, could you please provide more details about why this needs to be done? Thanks! |
Done. |
/unassign @gaoning777 |
|
* Update torchserve doc * Fix autoscaling/canary example * Reorgnize torchserve examples * Add bert example
Currently we have two places in SDK where the list of dependencies is specified -
setup.py
andrequirements.txt
. There should be a single list so that there is a single source of truth.It's a bit non-trivial. It might sound strange, but there is no built-in requirements.txt parser and also setup does not have full support by design.
The position of the python devs is that setup.py requirements and requirements.txt serve different purposes and they do not want to fully support intermixing them.
The text was updated successfully, but these errors were encountered: