1. 11 Nov, 2020 1 commit
    • Henry Schreiner's avatar
      feat: way to only recompile changed files (#2643) · ebd5c5b4
      Henry Schreiner authored
      * feat: lazy compile
      
      * refactor: lazy -> only_changed
      
      * refactor: leave the changed function up to the user
      
      * refactor: pass a function, based on @YannickJadoul and @HDembinski's suggestions
      
      * refactor: old -> _old, as it's not intended for users
      
      * docs: slight improvmenent from @rwgk
      
      * docs: Ccache spelling, extra warning about pip caching
      
      Ccache spelling noted by @YannickJadoul
      ebd5c5b4
  2. 21 Oct, 2020 3 commits
  3. 20 Oct, 2020 1 commit
  4. 18 Oct, 2020 2 commits
  5. 16 Oct, 2020 2 commits
  6. 15 Oct, 2020 2 commits
  7. 14 Oct, 2020 2 commits
  8. 13 Oct, 2020 1 commit
  9. 12 Oct, 2020 1 commit
  10. 09 Oct, 2020 2 commits
    • Henry Schreiner's avatar
      docs: known issues (#2565) · e4e5c49a
      Henry Schreiner authored
      * docs: FAQ CMake updates
      
      * docs: limitations
      
      * ci: don't over label
      
      * docs: update CHANGELOG, add a bit more structure
      
      * ci: label PRs with more labels, and sooner
      
      * docs: updates from @rwgk
      
      * docs: address @YannickJadoul's points
      e4e5c49a
    • Yannick Jadoul's avatar
      feat: deprecate public constructors of module_ class (#2552) · 0c5cc031
      Yannick Jadoul authored
      * Deprecated public constructors of module
      
      * Turn documentation comment of module_::add_object into valid doxygen documentation
      
      * Move definition of PYBIND11_DETAIL_MODULE_STATIC_DEF and PYBIND11_DETAIL_MODULE_CREATE macros up
      
      * Move detail::create_top_level_module to module_::create_extension_module, and unify Python 2 and 3 signature again
      
      * Throw error_already_set if module creation fails in module_::create_extension_module
      
      * Mention module_::create_extension_module in deprecation warning message of module_::module_
      0c5cc031
  11. 08 Oct, 2020 3 commits
  12. 06 Oct, 2020 2 commits
  13. 05 Oct, 2020 2 commits
  14. 04 Oct, 2020 1 commit
  15. 03 Oct, 2020 3 commits
  16. 02 Oct, 2020 3 commits
  17. 30 Sep, 2020 1 commit
    • Henry Schreiner's avatar
      ci: releases (#2530) · 82dbc5b7
      Henry Schreiner authored
      * ci: releases
      
      * docs: minor update form @wjakob
      
      * fix: enforce reasonable version of setuptools
      82dbc5b7
  18. 17 Sep, 2020 4 commits
  19. 16 Sep, 2020 4 commits
    • Boris Staletic's avatar
      fix: rename `pybind11::module` to `pybind11::module_` (#2489) · d3c999c7
      Boris Staletic authored
      Support C++20. For backwards compatibility, we provide an alias for the old name.
      This change is necessary to easily avoid errors when a compiler thinks
      `module` is used as a keyword.
      d3c999c7
    • Henry Schreiner's avatar
      refactor: drop mkdoc and update changelog (#2491) · e37921d7
      Henry Schreiner authored
      * refactor: drop mkdoc
      
      * docs: update changelog
      e37921d7
    • Henry Schreiner's avatar
      feat: setup.py redesign and helpers (#2433) · fd61f503
      Henry Schreiner authored
      * feat: setup.py redesign and helpers
      
      * refactor: simpler design with two outputs
      
      * refactor: helper file update and Windows support
      
      * fix: review points from @YannickJadoul
      
      * refactor: fixes to naming and more docs
      
      * feat: more customization points
      
      * feat: add entry point pybind11-config
      
      * refactor: Try Extension-focused method
      
      * refactor: rename alt/inplace to global
      
      * fix: allow usage with git modules, better docs
      
      * feat: global as an extra (@YannickJadoul's suggestion)
      
      * feat: single version location
      
      * fix: remove the requirement that setuptools must be imported first
      
      * fix: some review points from @wjacob
      
      * fix: use .in, add procedure to docs
      
      * refactor: avoid monkeypatch copy
      
      * docs: minor typos corrected
      
      * fix: minor points from @YannickJadoul
      
      * fix: typo on Windows C++ mode
      
      * fix: MSVC 15 update 3+ have c++14 flag
      
      See <https://docs.microsoft.com/en-us/cpp/build/reference/std-specify-language-standard-version?view=vs-2019>
      
      * docs: discuss making SDists by hand
      
      * ci: use pep517.build instead of manual setup.py
      
      * refactor: more comments from @YannickJadoul
      
      * docs: updates from @ktbarrett
      
      * fix: change to newly recommended tool instead of pep517.build
      
      This was intended as a proof of concept; build seems to be the correct replacement.
      
      See https://github.com/pypa/pep517/pull/83
      
      * docs: updates from @wjakob
      
      * refactor: dual version locations
      
      * docs: typo spotted by @wjakob
      fd61f503
    • Henry Schreiner's avatar
      refactor: replace .get_type with type::handle_of (#2492) · 41aa9260
      Henry Schreiner authored
      * refactor: replace .get_type with type::handle_of
      
      * refactor: use impl for handle_of
      
      * fix: deprecate h.get_type()
      41aa9260