We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
project.dependencies
Project dependencies reads:
The project.dependencies table represents the dependencies that are used when uploading to PyPI or building a wheel.
PEP 621 reads:
Format: Array of PEP 508 strings (dependencies) and a table with values of arrays of PEP 508 strings (optional-dependencies)
dependencies
optional-dependencies
So, to my understanding, project.dependencies is an array (kinda list), not a table (map, dictionary, key-value pairs).
The text was updated successfully, but these errors were encountered:
Hmm, then Dependency tables are not "tables" but "array and tables"…
Sorry, something went wrong.
Dependency tables reads:
The tool.uv.sources table extends the standard dependency tables
tool.uv.sources
and has dependencies = ["foo"] array sample.
dependencies = ["foo"]
Am I missing something obvious?
We could probably just switch to "field" or something here. I don't think "table" was intended to convey semantic meaning as used.
cdd6de5
Successfully merging a pull request may close this issue.
Project dependencies reads:
PEP 621 reads:
So, to my understanding,
project.dependencies
is an array (kinda list), not a table (map, dictionary, key-value pairs).The text was updated successfully, but these errors were encountered: