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

[smart_holder] git merge master #5199

Merged
merged 9 commits into from
Jun 26, 2024
Merged

Commits on Jun 25, 2024

  1. docs: prepare for 2.13.0 (pybind#5187)

    * docs: prepare for 2.13.0
    
    Signed-off-by: Henry Schreiner <[email protected]>
    
    * docs: reword cross-compiling entry
    
    Signed-off-by: Henry Schreiner <[email protected]>
    
    * Update changelog.rst
    
    ---------
    
    Signed-off-by: Henry Schreiner <[email protected]>
    henryiii committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    9ec64e3 View commit details
    Browse the repository at this point in the history
  2. Add TypeVars / method generics typing (pybind#5167)

    * typevar prototype
    
    * style: pre-commit fixes
    
    * change to NameT
    
    * style: pre-commit fixes
    
    * make string const
    
    * add missing closing bracket
    
    * style: pre-commit fixes
    
    * clean up handle_type_name
    
    * style: pre-commit fixes
    
    * add back missing <
    
    * style: pre-commit fixes
    
    * add back NameT
    
    * try fixed_string
    
    * style: pre-commit fixes
    
    * std::basic_fixed_string
    
    * test c++20
    
    * style: pre-commit fixes
    
    * cleanup
    
    * fix object to typevar conversion
    
    * style: pre-commit fixes
    
    * And CPP20 checks
    
    * style: pre-commit fixes
    
    * add missing cpp20++ check
    
    * style: pre-commit fixes
    
    * Add C++20 check to python
    
    * Fix python if {
    
    * style: pre-commit fixes
    
    * update test name
    
    * style: pre-commit fixes
    
    * remove call on cpp_std
    
    * make field const
    
    * test nontype_template
    
    * update feature check
    
    * update name of guard
    
    * fix try except in test
    
    * fix pre commit
    
    * remove extra semi colon
    
    * except AttributeError
    
    * fix try except in test
    
    * remove const
    
    * Clean up tests
    
    * style: pre-commit fixes
    
    * use contextlib.suppres
    
    * request changes
    
    * lint
    
    * Add comments
    
    * style: pre-commit fixes
    
    * Add support for unions and optionals to be compatible with object
    
    * lint
    
    * remove comment
    
    ---------
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    InvincibleRMC and pre-commit-ci[bot] committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    aebcd70 View commit details
    Browse the repository at this point in the history
  3. feat(types): add support for typing.Literal type (pybind#5192)

    * typevar prototype
    
    * style: pre-commit fixes
    
    * change to NameT
    
    * style: pre-commit fixes
    
    * make string const
    
    * add missing closing bracket
    
    * style: pre-commit fixes
    
    * clean up handle_type_name
    
    * style: pre-commit fixes
    
    * add back missing <
    
    * style: pre-commit fixes
    
    * add back NameT
    
    * try fixed_string
    
    * style: pre-commit fixes
    
    * std::basic_fixed_string
    
    * test c++20
    
    * style: pre-commit fixes
    
    * cleanup
    
    * fix object to typevar conversion
    
    * style: pre-commit fixes
    
    * And CPP20 checks
    
    * style: pre-commit fixes
    
    * add missing cpp20++ check
    
    * style: pre-commit fixes
    
    * Add C++20 check to python
    
    * Fix python if {
    
    * style: pre-commit fixes
    
    * update test name
    
    * style: pre-commit fixes
    
    * remove call on cpp_std
    
    * make field const
    
    * test nontype_template
    
    * update feature check
    
    * update name of guard
    
    * fix try except in test
    
    * fix pre commit
    
    * remove extra semi colon
    
    * except AttributeError
    
    * fix try except in test
    
    * remove const
    
    * Clean up tests
    
    * style: pre-commit fixes
    
    * start string literal
    
    * start int literal
    
    * func declare
    
    * commit clean
    
    * use contextlib.suppres
    
    * resolve stash
    
    * more literal type
    
    * fix annotation name
    
    * stash
    
    * request changes
    
    * lint
    
    * Add comments
    
    * style: pre-commit fixes
    
    * Add support for unions and optionals to be compatible with object
    
    * lint
    
    * remove comment
    
    * Create Literal Type implementation
    
    * clean up
    
    * Update comment
    
    * remove incorrect comment
    
    * rerun CI
    
    * rerun CI
    
    * fix extra line
    
    * lint
    
    * move if defined block
    
    * style: pre-commit fixes
    
    ---------
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    InvincibleRMC and pre-commit-ci[bot] committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    183059f View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. feat(types): adds support for Never and NoReturn from python Typing (p…

    …ybind#5193)
    
    * Adds support for Never and NoReturn
    
    * lint
    InvincibleRMC committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    26281c7 View commit details
    Browse the repository at this point in the history
  2. ci: release with trusted publisher and attestations (pybind#5196)

    * ci: release with trusted publisher and attestations
    
    Signed-off-by: Henry Schreiner <[email protected]>
    
    * Update pip.yml
    
    ---------
    
    Signed-off-by: Henry Schreiner <[email protected]>
    henryiii committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    b5ec7c7 View commit details
    Browse the repository at this point in the history
  3. feat(types): adds support for TypeGuard and TypeIs (pybind#5194)

    * Adds support for TypeGuard and TypeIs
    
    * style: pre-commit fixes
    
    ---------
    
    Co-authored-by: Henry Schreiner <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    3 people committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    2be85c6 View commit details
    Browse the repository at this point in the history
  4. chore: prepare for 2.13.0 (pybind#5198)

    * chore: prepare for 2.13.0
    
    Signed-off-by: Henry Schreiner <[email protected]>
    
    * Update changelog.rst
    
    ---------
    
    Signed-off-by: Henry Schreiner <[email protected]>
    henryiii committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    0c69e1e View commit details
    Browse the repository at this point in the history
  5. chore: back to work

    Signed-off-by: Henry Schreiner <[email protected]>
    henryiii committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    895e657 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'master' into sh_merge_master

    Ralf W. Grosse-Kunstleve committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    fb4c618 View commit details
    Browse the repository at this point in the history