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

Include generated stubs in python package #6917

Open
wants to merge 29 commits into
base: main
Choose a base branch
from

Commits on Aug 14, 2024

  1. Configuration menu
    Copy the full SHA
    564af88 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9a9cc95 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. Configuration menu
    Copy the full SHA
    85dd074 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b92858d View commit details
    Browse the repository at this point in the history
  3. Added changelog entry.

    timohl committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    890e28a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5a7f9e5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e948617 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4d25267 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f312848 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    10b6fce View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a11fa4f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7966fc0 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    62e1262 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    ffd1985 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    e4ad29d View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

  1. Configuration menu
    Copy the full SHA
    9df7eb9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9c6f475 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e599939 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2607605 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8c3451a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9c10cc3 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9f640de View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2024

  1. Configuration menu
    Copy the full SHA
    43d8514 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    61da990 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2024

  1. Configuration menu
    Copy the full SHA
    288d51d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    230a9a6 View commit details
    Browse the repository at this point in the history
  3. Changed lambda to lambda_penalty in orient_normals_consistent_tan…

    …gent_plane.
    
    `lambda` is a reserved keyword in python and causes mypy to complain.
    timohl committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    6df9d85 View commit details
    Browse the repository at this point in the history
  4. Changed lookat, up, front, and zoom to optional args.

    This is in line with the cpp implementation and avoids named args before
    positional args.
    timohl committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    54eab24 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2024

  1. Changed fs::path to be bound to os.PathLike|str.

    Strings are implicitly convertible to `fs::path`, but pybind11 just uses
    `os.PathLike` and not `os.PathLike | str` as type annotation.
    Python does not support implicit conversions for annotations, so this
    corrects the annotations to be explicit.
    timohl committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    70b3f81 View commit details
    Browse the repository at this point in the history