1. 02 Oct, 2020 12 commits
  2. 30 Sep, 2020 7 commits
  3. 27 Sep, 2020 1 commit
    • static allocation for PyModuleDef, to avoid leak check errors. (#2413) · d159a563
      * Initializing PyModuleDef object with PyModuleDef_HEAD_INIT.
      
      Python 3.8 documentation: m_base - Always initialize this member to PyModuleDef_HEAD_INIT.
      
      Long-standing (since first github commit in 2015), inconsequential bug.
      
      Also removing inconsequential Py_INCREF(def): PyModule_Create() resets the reference count to 1.
      
      * git rebase master
      
      * moving static PyModuleDef declaration to global scope, as requested by @wjakob
      
      * renaming the two new macros, to start with PYBIND11_DETAIL_MODULE
      Ralf W. Grosse-Kunstleve committed
  4. 22 Sep, 2020 2 commits
  5. 21 Sep, 2020 1 commit
  6. 19 Sep, 2020 3 commits
  7. 18 Sep, 2020 3 commits
  8. 17 Sep, 2020 8 commits
  9. 16 Sep, 2020 3 commits
    • fix: rename `pybind11::module` to `pybind11::module_` (#2489) · d3c999c7
      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.
      Boris Staletic committed
    • refactor: drop mkdoc and update changelog (#2491) · e37921d7
      * refactor: drop mkdoc
      
      * docs: update changelog
      Henry Schreiner committed
    • feat: setup.py redesign and helpers (#2433) · fd61f503
      * 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
      Henry Schreiner committed