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
Problem
The conda recipe installs the package with pip install --no-deps, but its run requirements omit several dependencies declared in setup.py, including apache-airflow, scipy, numpy, and pymbar. The recipe test only imports dpti, so missing dependencies for real modules and DAGs are not caught.
Expected result
The conda runtime dependencies should cover the modules shipped by the package, or optional extras should be split explicitly and tested accordingly.
Source: Codex global repository scan of deepmodeling/dpti at commit b719828.
Project: DeepModeling Agent Code Scan
Problem
The conda recipe installs the package with
pip install --no-deps, but its run requirements omit several dependencies declared insetup.py, includingapache-airflow,scipy,numpy, andpymbar. The recipe test only importsdpti, so missing dependencies for real modules and DAGs are not caught.Code references
dpti/setup.py
Line 12 in b719828
dpti/conda/dpti/meta.yaml
Line 14 in b719828
dpti/conda/dpti/meta.yaml
Line 27 in b719828
dpti/conda/dpti/meta.yaml
Line 33 in b719828
Reproduction
Build and install the conda package in a clean environment, then run:
python -c "import dpti.ti; import dpti.dags.dp_ti_gdi"Expected result
The conda runtime dependencies should cover the modules shipped by the package, or optional extras should be split explicitly and tested accordingly.