Skip to content
New issue

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

Hint at missing project.name #6803

Merged
merged 4 commits into from
Sep 14, 2024
Merged

Commits on Aug 30, 2024

  1. Hint at missing project.name

    We got user reports where users were confused about why they can't use `[project.urls]` without other `pyproject.toml`. This PR adds a hint that (according to PEP 621), you need to set `project.name` when using any `project` fields`. (PEP 621 also requires `project.version` xor `dynamic = ["version"]`, but we check that later.)
    
    The intermediate parsing layer to tell apart syntax errors from schema errors doesn't incur a performance penalty according to epage (toml-rs/toml#778 (comment)).
    
    Closes #6419
    Closes #6760
    konstin committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    8f015a7 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2024

  1. Configuration menu
    Copy the full SHA
    8a4290c View commit details
    Browse the repository at this point in the history
  2. Tweaks

    charliermarsh committed Sep 14, 2024
    Configuration menu
    Copy the full SHA
    49cb3b9 View commit details
    Browse the repository at this point in the history
  3. Add tests

    charliermarsh committed Sep 14, 2024
    Configuration menu
    Copy the full SHA
    3080f5a View commit details
    Browse the repository at this point in the history