- 06 Apr, 2021 1 commit
-
-
Weiming Zhao authored
-
- 08 Feb, 2021 1 commit
-
-
Axel Huebl authored
On Windows, clang-cl does not understand /MP. ``` clang-cl: warning: argument unused during compilation: '/MP' [-Wunused-command-line-argument] ``` with Clang 10.0.0
-
- 21 Jan, 2021 1 commit
-
-
Henry Schreiner authored
-
- 19 Jan, 2021 1 commit
-
-
Henry Schreiner authored
* style: avoid using unintialized variables Tested with cmake --warn-unintialized -S . -B build * refactor: use function for possibly uninit vars
-
- 14 Jan, 2021 3 commits
-
-
heyer2 authored
* Fix STATIC and SHARED flags not being detected * fix: use classic naming for all lib types Co-authored-by:Henry Schreiner <henryschreineriii@gmail.com>
-
Henry Schreiner authored
Sometimes programmers want to control this, and while it can be changed after the fact, it's commonly set via a CMAKE_ variable; if that variable is set, we should respect that (like the CMAKE_INTERPROCEDURAL_OPTIMIZATION setting).
-
Yannick Jadoul authored
* Disable builds for 3.10.0a4, and enable a nightly 3.10-dev build * Fix job name * Remove deadsnakes job for now * Add deadsnakes jobs * There's no deadsnakes 2.7 * Add 3.10 to versions to be discovered by legacy FindPython, and fix debug input to deadsnakes/action * Try out branch with fix * Update to deadsnakes/action@v2.1.1
-
- 22 Dec, 2020 1 commit
-
-
Henry Schreiner authored
-
- 16 Dec, 2020 1 commit
-
-
Henry Schreiner authored
* fix: regression with installed pybind11 overriding discovered one Closes #2709 * docs: wording incorrect
-
- 15 Nov, 2020 1 commit
-
-
Frank authored
-
- 05 Nov, 2020 1 commit
-
-
Henry Schreiner authored
* fix: match new extension discovery with changes to classic discovery Followup to #2638 - this was fixed in 2.6.0, but only for classic Python * fix: followup to avoid warnings
-
- 03 Nov, 2020 1 commit
-
-
Henry Schreiner authored
-
- 15 Oct, 2020 2 commits
-
-
Henry Schreiner authored
-
Henry Schreiner authored
-
- 14 Oct, 2020 2 commits
-
-
Henry Schreiner authored
* feat: basic typing support * docs: mention syncing as suggested by @rwgk * docs: update changelog * docs: copy of warning in limitations
-
Henry Schreiner authored
* fix: ipo should be off for debug or relwithdebinfo Closes #2587 * docs: slightly more detailed about IPO * Update pybind11Common.cmake
-
- 09 Oct, 2020 1 commit
-
-
Henry Schreiner authored
-
- 05 Oct, 2020 1 commit
-
-
Henry Schreiner authored
* fix: find_import didn't work properly for classic tools * ci: fix all files not being checked in style run
-
- 03 Oct, 2020 1 commit
-
-
Henry Schreiner authored
* feat: import check as a common function * docs: add cmake to docs
-
- 02 Oct, 2020 1 commit
-
-
Henry Schreiner authored
-
- 30 Sep, 2020 2 commits
-
-
Wenzel Jakob authored
On very incomplete python installations (e.g. within Docker), it's possible that distutils is not installed. In that case, the ``execute_command`` statement that queries distutils for the Python module extension fails, and pybind11 uses the empty string. This commit adds an extra check that causes a CMake failure with more actionable information (just spent a lot of time trying to track down this problem :))
-
Henry Schreiner authored
* ci: releases * docs: minor update form @wjakob * fix: enforce reasonable version of setuptools
-
- 21 Sep, 2020 1 commit
-
-
Henry Schreiner authored
Closes #2515, found by @rhjdjong
-
- 16 Sep, 2020 2 commits
-
-
Henry Schreiner authored
* refactor: drop mkdoc * docs: update changelog
-
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
-
- 06 Sep, 2020 1 commit
-
-
Wenzel Jakob authored
-
- 05 Sep, 2020 1 commit
-
-
Henry Schreiner authored
* fix: use classic extension handling unless otherwise requested * fix: variable must be cached to be used externally
-
- 26 Aug, 2020 1 commit
-
-
Henry Schreiner authored
* fix: respect PYTHON_VERSION if set in classic mode * fix: add warning when using PYTHON_VERSION
-
- 22 Aug, 2020 1 commit
-
-
Henry Schreiner authored
* fix: reduce target collision in add_submodule mode Closes #2420 * fix: update CMakeLists.txt
-
- 21 Aug, 2020 2 commits
-
-
Henry Schreiner authored
-
Bjorn authored
CPython configured with `--with-pydebug` could not use `pybind11_add_module`
-
- 19 Aug, 2020 1 commit
-
-
Henry Schreiner authored
* feat: FindPython support * refactor: rename to PYBIND11_FINDPYTHON * docs: Caps fixes * feat: NOPYTHON mode * test: check simple call * docs: add changelog/upgrade guide * feat: Support Python3 and Python2 * refactor: Use targets in tests * fix: support CMake 3.4+ * feat: classic search also finds virtual environments * docs: some updates from @wjakob's review * fix: wrong name for QUIET mode variable, reported by @skoslowski * refactor: cleaner output messaging * fix: support debug Python's in FindPython mode too * fixup! refactor: cleaner output messaging * fix: missing pybind11_FOUND and pybind11_INCLUDE_DIR restored to subdir mode * fix: nicer reporting of Python / PyPy * fix: out-of-order variable fix * docs: minor last-minute cleanup
-
- 08 Aug, 2020 1 commit
-
-
Henry Schreiner authored
-
- 06 Aug, 2020 3 commits
-
-
Henry Schreiner authored
-
Henry Schreiner authored
-
Henry Schreiner authored
-
- 31 Jul, 2020 4 commits
-
-
Henry Schreiner authored
-
Henry Schreiner authored
-
Henry Schreiner authored
-
Henry Schreiner authored
fix: include PYTHON_IS_DEBUG
-