Closed bobleesj closed 1 month ago
Previously, cookiecutter-generated projects didn't install dependencies during pip install <package-name>.
pip install <package-name>
Check whether the following section exists in pyproject.toml.
pyproject.toml
[project] name = "<package-name>" dynamic=['version', 'dependencies'] ... [tool.setuptools.dynamic] dependencies = {file = ["requirements/run.txt"]}
For more info: https://github.com/diffpy/diffpy.structure/pull/98
Solved via cookiecut
@sbillinge Please include this to the 3.1.0 milestone as well.
Resolved
pip install diffpy.pdfgui==3.1.0rc5 attempts to download all dependencies under run.txt
pip install diffpy.pdfgui==3.1.0rc5
run.txt
Problem
Previously, cookiecutter-generated projects didn't install dependencies during
pip install <package-name>
.Solution
Check whether the following section exists in
pyproject.toml
.For more info: https://github.com/diffpy/diffpy.structure/pull/98