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
I'm trying to build a bunch of wheels of each of the requirements for my project and put them in a docker container so that I don't have to install all the build requirements on said container. I thought I would be able to do this with the following:
Usually, I think this would work, but I also have two requirements that come from git repositories that we've forked and changed slightly to fit our needs. So, for example, we have something like:
However, we don't publish our custom changes to PyPI, so building the wheel wont work since the package doesn't exist. If I make the git repo editable via "-e", wheel wont build it.
Description:
I'm trying to build a bunch of wheels of each of the requirements for my project and put them in a docker container so that I don't have to install all the build requirements on said container. I thought I would be able to do this with the following:
pip freeze > build_requirements.txt pip wheel -w ./wheels -r build_requirements.txt
Usually, I think this would work, but I also have two requirements that come from git repositories that we've forked and changed slightly to fit our needs. So, for example, we have something like:
However, we don't publish our custom changes to PyPI, so building the wheel wont work since the package doesn't exist. If I make the git repo editable via "-e", wheel wont build it.
So, the two ways of fixing this would be
(This might be related to or duplicate of #3379)
The text was updated successfully, but these errors were encountered: