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
In 1.8.0, I have a requirements.in file that has only the contents -e ., and pip-tools will generate a requirements.txt based on the requirements in my setup.py, as well as including the absolute path to the local package (#204 is the bug tracking translating a relative path to absolute). Even in 1.8.0, this only works if there is not a current requirements.txt, otherwise it fails with the bug described in #416 and #421.
In 1.8.1, with the same requirements.in, it will only generate with the absolute path to the local package, and not freeze the local package's dependencies.
Environment Versions
OS Type: macOS and Ubuntu (confirmed on both)
Python version: CPython 2.7.13 and 3.6.1 installed by pythonz
In 1.8.0, I have a requirements.in file that has only the contents
-e .
, and pip-tools will generate a requirements.txt based on the requirements in my setup.py, as well as including the absolute path to the local package (#204 is the bug tracking translating a relative path to absolute). Even in 1.8.0, this only works if there is not a currentrequirements.txt
, otherwise it fails with the bug described in #416 and #421.In 1.8.1, with the same requirements.in, it will only generate with the absolute path to the local package, and not freeze the local package's dependencies.
Environment Versions
Steps to replicate
Run this shell script:
Expected result
To get the following output from pip-compile ,and written to requirements.txt:
Actual result
Got this instead. The Django and six dependencies aren't recorded.
The text was updated successfully, but these errors were encountered: