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
Whenever I use hatch run with pip-deepfreeze environments, it seems like it tries to perform pip install and depfreeze, regardless of whether dependencies were changed in the pyproject.toml or not.
For example, it takes almost 10 seconds just to display current python version in such env:
No change to /Users/bobronium/.../requirements-all.txtNo change to /Users/bobronium/.../requirements.txtPython 3.9.16hatch run python --version 9.44s user 1.31s system 86% cpu 12.495 total
This is what I get without type = "pip-deepfreeze"
hatch run python --version 0.51s user 0.11s system 98% cpu 0.626 total
Ideally, I would expect deepfreeze to run only when hatch decides to sync environment AND finds something to be changed.
The text was updated successfully, but these errors were encountered:
Whenever I use
hatch run
withpip-deepfreeze
environments, it seems like it tries to perform pip install and depfreeze, regardless of whether dependencies were changed in the pyproject.toml or not.For example, it takes almost 10 seconds just to display current python version in such env:
This is what I get without
type = "pip-deepfreeze"
hatch run python --version 0.51s user 0.11s system 98% cpu 0.626 total
Ideally, I would expect deepfreeze to run only when
hatch
decides to sync environment AND finds something to be changed.The text was updated successfully, but these errors were encountered: