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 running make install , python3 -m build fails with the following error message:
Unable to determine which files to ship inside the wheel using the following heuristics: https://hatch.pypa.io/latest/plugins/builder/wheel/#default-file-selection
At least one file selection option must be defined in the tool.hatch.build.targets.wheel table, see: https://hatch.pypa.io/latest/config/build/
As an example, if you intend to ship a directory named foo that resides within a src directory located at the root of your project, you can define the following:
[tool.hatch.build.targets.wheel]
packages = ["src/foo"]
can be fixed by adding this to the pyproject.toml file:
when running
make install
,python3 -m build
fails with the following error message:can be fixed by adding this to the
pyproject.toml
file:The text was updated successfully, but these errors were encountered: