Home
last modified time | relevance | path

Searched +full:- +full:ddownload_eigen (Results 1 – 4 of 4) sorted by relevance

/external/python/pybind11/.github/workflows/
Dci.yml8 - master
9 - stable
10 - v*
17 fail-fast: false
19 runs-on: [ubuntu-latest, windows-latest, macos-latest]
21 - 2.7
22 - 3.5
23 - 3.6
24 - 3.9
25 # - 3.10-dev # Re-enable once 3.10.0a5 is released
[all …]
Dformat.yml1 # This is a format job. Pre-commit has a first-party GitHub action, so we use
2 # that: https://github.com/pre-commit/action
11 - master
12 - stable
13 - "v*"
16 pre-commit:
18 runs-on: ubuntu-latest
20 - uses: actions/checkout@v2
21 - uses: actions/setup-python@v2
22 - uses: pre-commit/action@v2.0.0
[all …]
/external/python/pybind11/.github/
DCONTRIBUTING.md12 question, it's essential that you submit a self-contained and minimal piece of
28 * Add tests for any new functionality and run the test suite (`cmake --build
29 build --target pytest`) to ensure that no existing features break.
30 * Please run [`pre-commit`][pre-commit] to check your code matches the
31 project style. (Note that `gawk` is required.) Use `pre-commit run
32 --all-files` before committing (or use installed-mode, check pre-commit docs)
39 pybind11 is provided under a BSD-style license that can be found in the
48 hereby grant the following license: a non-exclusive, royalty-free perpetual
60 python3 -m venv venv
62 pip install -r tests/requirements.txt
[all …]
/external/python/pybind11/tests/
DCMakeLists.txt1 # CMakeLists.txt -- Build system for the pybind11 test suite
6 # BSD-style license that can be found in the LICENSE file.
32 if(_FILE_FOUND GREATER -1)
67 CACHE STRING "Tests from ;-separated list of *.cpp files will be built instead of all tests")
70 CACHE STRING "Tests from ;-separated list of *.cpp files will be removed from all tests")
136 # cmake -DPYBIND11_TEST_OVERRIDE="test_callbacks.cpp;test_pickling.cpp" ..
138 # cmake -DPYBIND11_TEST_OVERRIDE= ..
176 if(PYBIND11_TEST_FILES_EIGEN_I GREATER -1)
179 # produces a fatal error if loaded from a pre-3.0 cmake.
228 message(STATUS "Building tests WITHOUT Eigen, use -DDOWNLOAD_EIGEN on CMake 3.11+ to download")
[all …]