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 want to place the recipe in the python project that I want to package. If I can give path where to create the tmp dirs I can put relative path in the requirements.txt. The function used for creation of directories tempfile.mkdtemp supports parameter dir which gives root for the tmp directories. I`m not sure how to manage the passing of parameter. Do you think that it is possible?
The text was updated successfully, but these errors were encountered:
My understanding is that you would like to specify the base location of the temporary directory at that point. Is this correct? If so, it should be rather straightforward to add a command line option for this.
Concerning relative paths in the requirements.txt, I am unsure what your intent is. I thought that the requirements should specify a package name. Is it possible to directly specify a wheel file instead? Or maybe, you use the new local+ feature ?
Yes, at this point. My use case is that I have requirements.txt that requires the current package. So the requirements for the python module are only in setup.cfg. When I have control of the location I can give relative path to the module root and everything will be added automatically. For now I am creating file with the path to the module in the Make file. I can try to make a pr when I have time with the implementation.
Maybe I use some sort of local+. A line can be path to a directory. Maybe pip checks how the line starts. I will see if this solves my case.
I want to place the recipe in the python project that I want to package. If I can give path where to create the tmp dirs I can put relative path in the requirements.txt. The function used for creation of directories
tempfile.mkdtemp
supports parameter dir which gives root for the tmp directories. I`m not sure how to manage the passing of parameter. Do you think that it is possible?The text was updated successfully, but these errors were encountered: