ITADN

chore: don't depend on pip

#736Pull Requestxmatthias 创建于 2025-09-02已合并
X
xmatthiascommented
packages shouldn't usually depend on pip unless they actually need it (import from it etc). currently - when installing ta-lib in an uv venv (which usually doensn't come with pip) - pip is installed as dependency of ta-lib. to reproduce: ``` uv venv . .venv/bin/activate uv pip install ta-lib uv pip show pip ``` which outputs: ``` Name: pip Version: 25.2 Location: /home/xmatt/devel/.venv/lib/python3.13/site-packages Requires: Required-by: ta-lib <-- pip is only installed due to ta-lib ``` if dependencies of pip were required (there ain't any) - then these should be listed instead.
合并状态:已合并 合并于 2025-09-03 关闭于 2025-09-03 0 条评论