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
Reposted from tox-dev/pyproject-fmt#288
uv tool install pyproject-fmt pyproject-fmt >>> pyproject-fmt (2.5.0)
My pyproject file:
[project] name = "my-app" description = "My app" version = "1.13.1" requires-python = "<3.14,>=3.12" [[project.authors]] name = "Joe Blogs" email = "[email protected]"
After running pyproject-fmt pyproject.toml
pyproject-fmt pyproject.toml
[project] name = "my-app" version = "1.13.1" description = "My app" authors.email = "[email protected]" authors.name = "Joe Blogs" [[project.authors]] classifiers = [ "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", ] requires-python = "<3.14,>=3.12"
There is a broken [[project.authors]] field.
[[project.authors]]
toml spec for array of tables: https://toml.io/en/v1.0.0#array-of-tables
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reposted from tox-dev/pyproject-fmt#288
My pyproject file:
After running
pyproject-fmt pyproject.toml
There is a broken
[[project.authors]]
field.toml spec for array of tables: https://toml.io/en/v1.0.0#array-of-tables
The text was updated successfully, but these errors were encountered: