You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 18, 2023. It is now read-only.
Remove the need for an install_requires.txt file. install_requires.txt is used to fill the install_requires field for PyPi. We need this because the assemble-pip target doesn't support the flags that we need in the requirements.txt file. It throws an error if we try. Reading up on it and it seems commonly accepted that the dependencies in requirements.txt and install_requires will differ, and therefore we should my expected solution is to provide a separate list of requirements manually to assemble-pip.
The text was updated successfully, but these errors were encountered:
Description
Remove the need for an
install_requires.txt
file.install_requires.txt
is used to fill theinstall_requires
field for PyPi. We need this because theassemble-pip
target doesn't support the flags that we need in therequirements.txt
file. It throws an error if we try. Reading up on it and it seems commonly accepted that the dependencies inrequirements.txt
andinstall_requires
will differ, and therefore we should my expected solution is to provide a separate list of requirements manually toassemble-pip
.The text was updated successfully, but these errors were encountered: