-
I am setting up a
I have tried with a public github repository and it is working well. However, when it comes to referencing a repository in ò Installing my_repo (0.1.0 5662892)
BuildSystemTableValidationError
Failed to validate `build-system` in pyproject.toml: Unknown properties: paths
at ~\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\build\__init__.py:231 in _parse_build_system_table
227| raise BuildSystemTableValidationError('`backend-path` must be an array of strings')
228|
229| unknown_props = build_system_table.keys() - {'requires', 'build-backend', 'backend-path'}
230| if unknown_props:
> 231| raise BuildSystemTableValidationError(f'Unknown properties: {", ".join(unknown_props)}')
232|
233| return build_system_table
234|
235| More information about the issue:
[tool.poetry.dependencies]
python = "^3.9"
my_repo = {path = "<PATH_TO_MY_REPO>"} I already tried everything. So I would be really helpful if somebody can give me some hints about what's going on :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
According to the error message, validation of your |
Beta Was this translation helpful? Give feedback.
According to the error message, validation of your
pyproject.toml
fails because you have apaths
key underbuild-system
. What does this section look like in yourpyproject.toml
?