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
$ uv --version uv 0.3.5 (6c62d9fbf 2024-08-27)
starting with
$ cat pyproject.toml [project] name = "uv-empty-space" version = "0.1.0" description = "Add your description here" readme = "README.md" requires-python = ">=3.12" dependencies = [ # first block "requests", # second block "pydantic", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build"
running uv add pandas yields the below:
uv add pandas
$ cat pyproject.toml [project] name = "uv-empty-space" version = "0.1.0" description = "Add your description here" readme = "README.md" requires-python = ">=3.12" dependencies = [ # first block "requests", # second block "pydantic", "pandas>=2.2.2", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build"
i wonder if the empty line between requests and pydantic should be preserved?
requests
pydantic
The text was updated successfully, but these errors were encountered:
pyproject.toml
No branches or pull requests
starting with
running
uv add pandas
yields the below:i wonder if the empty line between
requests
andpydantic
should be preserved?The text was updated successfully, but these errors were encountered: