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
When run with PYTHONDEVMODE=1pip-compile emits a bunch of warnings like this:
/usr/local/lib/python3.8/tempfile.py:819: ResourceWarning: Implicitly cleaning up <TemporaryDirectory '/tmp/tmpfrhhtu6jbuild'>
_warnings.warn(warn_message, ResourceWarning)
/usr/local/lib/python3.8/tempfile.py:819: ResourceWarning: Implicitly cleaning up <TemporaryDirectory '/tmp/tmp0o5twtbvsource'>
Quick skim through the sources reveals that temporary directories are created without explicit cleanup. Probably the easiest way to fix it is to use them as context managers.
Environment Versions
OS Type: any
Python version: 3.8
pip version: 20.0.2
pip-tools version: 5.3.1
Steps to replicate
run PYTHONDEVMODE=1 pip-compile ... on a nontrivial list of dependencies
see the warnings
Expected result
No warnings
Actual result
A bunch of warnings
The text was updated successfully, but these errors were encountered:
When run with
PYTHONDEVMODE=1
pip-compile
emits a bunch of warnings like this:Quick skim through the sources reveals that temporary directories are created without explicit cleanup. Probably the easiest way to fix it is to use them as context managers.
Environment Versions
Steps to replicate
PYTHONDEVMODE=1 pip-compile ...
on a nontrivial list of dependenciesExpected result
No warnings
Actual result
A bunch of warnings
The text was updated successfully, but these errors were encountered: