aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/CODEOWNERS9
-rw-r--r--.github/CONTRIBUTING.md60
-rw-r--r--.github/ISSUE_TEMPLATE/bug-report.md28
-rw-r--r--.github/ISSUE_TEMPLATE/bug-report.yml61
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml3
-rw-r--r--.github/ISSUE_TEMPLATE/feature-request.md16
-rw-r--r--.github/ISSUE_TEMPLATE/question.md21
-rw-r--r--.github/dependabot.yml9
-rw-r--r--.github/matchers/pylint.json32
-rw-r--r--.github/pull_request_template.md4
-rw-r--r--.github/workflows/ci.yml661
-rw-r--r--.github/workflows/configure.yml38
-rw-r--r--.github/workflows/format.yml30
-rw-r--r--.github/workflows/labeler.yml11
-rw-r--r--.github/workflows/pip.yml47
-rw-r--r--.github/workflows/upstream.yml116
16 files changed, 844 insertions, 302 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
new file mode 100644
index 00000000..4e2c6690
--- /dev/null
+++ b/.github/CODEOWNERS
@@ -0,0 +1,9 @@
+*.cmake @henryiii
+CMakeLists.txt @henryiii
+*.yml @henryiii
+*.yaml @henryiii
+/tools/ @henryiii
+/pybind11/ @henryiii
+noxfile.py @henryiii
+.clang-format @henryiii
+.clang-tidy @henryiii
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 08d9e7cb..ad797439 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -53,6 +53,33 @@ derivative works thereof, in binary and source code form.
## Development of pybind11
+### Quick setup
+
+To setup a quick development environment, use [`nox`](https://nox.thea.codes).
+This will allow you to do some common tasks with minimal setup effort, but will
+take more time to run and be less flexible than a full development environment.
+If you use [`pipx run nox`](https://pipx.pypa.io), you don't even need to
+install `nox`. Examples:
+
+```bash
+# List all available sessions
+nox -l
+
+# Run linters
+nox -s lint
+
+# Run tests on Python 3.9
+nox -s tests-3.9
+
+# Build and preview docs
+nox -s docs -- serve
+
+# Build SDists and wheels
+nox -s build
+```
+
+### Full setup
+
To setup an ideal development environment, run the following commands on a
system with CMake 3.14+:
@@ -66,11 +93,10 @@ cmake --build build -j4
Tips:
-* You can use `virtualenv` (from PyPI) instead of `venv` (which is Python 3
- only).
+* You can use `virtualenv` (faster, from PyPI) instead of `venv`.
* You can select any name for your environment folder; if it contains "env" it
will be ignored by git.
-* If you don’t have CMake 3.14+, just add “cmake” to the pip install command.
+* If you don't have CMake 3.14+, just add "cmake" to the pip install command.
* You can use `-DPYBIND11_FINDPYTHON=ON` to use FindPython on CMake 3.12+
* In classic mode, you may need to set `-DPYTHON_EXECUTABLE=/path/to/python`.
FindPython uses `-DPython_ROOT_DIR=/path/to` or
@@ -78,7 +104,7 @@ Tips:
### Configuration options
-In CMake, configuration options are given with “-D”. Options are stored in the
+In CMake, configuration options are given with "-D". Options are stored in the
build directory, in the `CMakeCache.txt` file, so they are remembered for each
build directory. Two selections are special - the generator, given with `-G`,
and the compiler, which is selected based on environment variables `CXX` and
@@ -88,12 +114,12 @@ after the initial run.
The valid options are:
* `-DCMAKE_BUILD_TYPE`: Release, Debug, MinSizeRel, RelWithDebInfo
-* `-DPYBIND11_FINDPYTHON=ON`: Use CMake 3.12+’s FindPython instead of the
+* `-DPYBIND11_FINDPYTHON=ON`: Use CMake 3.12+'s FindPython instead of the
classic, deprecated, custom FindPythonLibs
* `-DPYBIND11_NOPYTHON=ON`: Disable all Python searching (disables tests)
* `-DBUILD_TESTING=ON`: Enable the tests
* `-DDOWNLOAD_CATCH=ON`: Download catch to build the C++ tests
-* `-DOWNLOAD_EIGEN=ON`: Download Eigen for the NumPy tests
+* `-DDOWNLOAD_EIGEN=ON`: Download Eigen for the NumPy tests
* `-DPYBIND11_INSTALL=ON/OFF`: Enable the install target (on by default for the
master project)
* `-DUSE_PYTHON_INSTALL_DIR=ON`: Try to install into the python dir
@@ -132,8 +158,9 @@ tests with these targets:
* `test_cmake_build`: Install / subdirectory tests
If you want to build just a subset of tests, use
-`-DPYBIND11_TEST_OVERRIDE="test_callbacks.cpp;test_pickling.cpp"`. If this is
-empty, all tests will be built.
+`-DPYBIND11_TEST_OVERRIDE="test_callbacks;test_pickling"`. If this is
+empty, all tests will be built. Tests are specified without an extension if they need both a .py and
+.cpp file.
You may also pass flags to the `pytest` target by editing `tests/pytest.ini` or
by using the `PYTEST_ADDOPTS` environment variable
@@ -203,16 +230,19 @@ of the pybind11 repo.
[`clang-tidy`][clang-tidy] performs deeper static code analyses and is
more complex to run, compared to `clang-format`, but support for `clang-tidy`
is built into the pybind11 CMake configuration. To run `clang-tidy`, the
-following recipe should work. Files will be modified in place, so you can
-use git to monitor the changes.
+following recipe should work. Run the `docker` command from the top-level
+directory inside your pybind11 git clone. Files will be modified in place,
+so you can use git to monitor the changes.
```bash
-docker run --rm -v $PWD:/pybind11 -it silkeh/clang:10
-apt-get update && apt-get install python3-dev python3-pytest
-cmake -S pybind11/ -B build -DCMAKE_CXX_CLANG_TIDY="$(which clang-tidy);-fix"
-cmake --build build
+docker run --rm -v $PWD:/mounted_pybind11 -it silkeh/clang:15-bullseye
+apt-get update && apt-get install -y git python3-dev python3-pytest
+cmake -S /mounted_pybind11/ -B build -DCMAKE_CXX_CLANG_TIDY="$(which clang-tidy);--use-color" -DDOWNLOAD_EIGEN=ON -DDOWNLOAD_CATCH=ON -DCMAKE_CXX_STANDARD=17
+cmake --build build -j 2
```
+You can add `--fix` to the options list if you want.
+
### Include what you use
To run include what you use, install (`brew install include-what-you-use` on
@@ -228,7 +258,7 @@ The report is sent to stderr; you can pipe it into a file if you wish.
### Build recipes
This builds with the Intel compiler (assuming it is in your path, along with a
-recent CMake and Python 3):
+recent CMake and Python):
```bash
python3 -m venv venv
diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md
deleted file mode 100644
index ae36ea65..00000000
--- a/.github/ISSUE_TEMPLATE/bug-report.md
+++ /dev/null
@@ -1,28 +0,0 @@
----
-name: Bug Report
-about: File an issue about a bug
-title: "[BUG] "
----
-
-
-Make sure you've completed the following steps before submitting your issue -- thank you!
-
-1. Make sure you've read the [documentation][]. Your issue may be addressed there.
-2. Search the [issue tracker][] to verify that this hasn't already been reported. +1 or comment there if it has.
-3. Consider asking first in the [Gitter chat room][].
-4. Include a self-contained and minimal piece of code that reproduces the problem. If that's not possible, try to make the description as clear as possible.
- a. If possible, make a PR with a new, failing test to give us a starting point to work on!
-
-[documentation]: https://pybind11.readthedocs.io
-[issue tracker]: https://github.com/pybind/pybind11/issues
-[Gitter chat room]: https://gitter.im/pybind/Lobby
-
-*After reading, remove this checklist and the template text in parentheses below.*
-
-## Issue description
-
-(Provide a short description, state the expected behavior and what actually happens.)
-
-## Reproducible example code
-
-(The code should be minimal, have no external dependencies, isolate the function(s) that cause breakage. Submit matched and complete C++ and Python snippets that can be easily compiled and run to diagnose the issue.)
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml
new file mode 100644
index 00000000..4f1e78f3
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug-report.yml
@@ -0,0 +1,61 @@
+name: Bug Report
+description: File an issue about a bug
+title: "[BUG]: "
+labels: [triage]
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Please do your best to make the issue as easy to act on as possible, and only submit here if there is clearly a problem with pybind11 (ask first if unsure). **Note that a reproducer in a PR is much more likely to get immediate attention.**
+
+ - type: checkboxes
+ id: steps
+ attributes:
+ label: Required prerequisites
+ description: Make sure you've completed the following steps before submitting your issue -- thank you!
+ options:
+ - label: Make sure you've read the [documentation](https://pybind11.readthedocs.io). Your issue may be addressed there.
+ required: true
+ - label: Search the [issue tracker](https://github.com/pybind/pybind11/issues) and [Discussions](https:/pybind/pybind11/discussions) to verify that this hasn't already been reported. +1 or comment there if it has.
+ required: true
+ - label: Consider asking first in the [Gitter chat room](https://gitter.im/pybind/Lobby) or in a [Discussion](https:/pybind/pybind11/discussions/new).
+ required: false
+
+ - type: input
+ id: version
+ attributes:
+ label: What version (or hash if on master) of pybind11 are you using?
+ validations:
+ required: true
+
+ - type: textarea
+ id: description
+ attributes:
+ label: Problem description
+ placeholder: >-
+ Provide a short description, state the expected behavior and what
+ actually happens. Include relevant information like what version of
+ pybind11 you are using, what system you are on, and any useful commands
+ / output.
+ validations:
+ required: true
+
+ - type: textarea
+ id: code
+ attributes:
+ label: Reproducible example code
+ placeholder: >-
+ The code should be minimal, have no external dependencies, isolate the
+ function(s) that cause breakage. Submit matched and complete C++ and
+ Python snippets that can be easily compiled and run to diagnose the
+ issue. — Note that a reproducer in a PR is much more likely to get
+ immediate attention: failing tests in the pybind11 CI are the best
+ starting point for working out fixes.
+ render: text
+
+ - type: input
+ id: regression
+ attributes:
+ label: Is this a regression? Put the last known working version here if it is.
+ description: Put the last known working version here if this is a regression.
+ value: Not a regression
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 20e74313..27f9a804 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -1,5 +1,8 @@
blank_issues_enabled: false
contact_links:
+ - name: Ask a question
+ url: https://github.com/pybind/pybind11/discussions/new
+ about: Please ask and answer questions here, or propose new ideas.
- name: Gitter room
url: https://gitter.im/pybind/Lobby
about: A room for discussing pybind11 with an active community
diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md
deleted file mode 100644
index 5f6ec81e..00000000
--- a/.github/ISSUE_TEMPLATE/feature-request.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-name: Feature Request
-about: File an issue about adding a feature
-title: "[FEAT] "
----
-
-
-Make sure you've completed the following steps before submitting your issue -- thank you!
-
-1. Check if your feature has already been mentioned / rejected / planned in other issues.
-2. If those resources didn't help, consider asking in the [Gitter chat room][] to see if this is interesting / useful to a larger audience and possible to implement reasonably,
-4. If you have a useful feature that passes the previous items (or not suitable for chat), please fill in the details below.
-
-[Gitter chat room]: https://gitter.im/pybind/Lobby
-
-*After reading, remove this checklist.*
diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md
deleted file mode 100644
index b199b6ee..00000000
--- a/.github/ISSUE_TEMPLATE/question.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-name: Question
-about: File an issue about unexplained behavior
-title: "[QUESTION] "
----
-
-If you have a question, please check the following first:
-
-1. Check if your question has already been answered in the [FAQ][] section.
-2. Make sure you've read the [documentation][]. Your issue may be addressed there.
-3. If those resources didn't help and you only have a short question (not a bug report), consider asking in the [Gitter chat room][]
-4. Search the [issue tracker][], including the closed issues, to see if your question has already been asked/answered. +1 or comment if it has been asked but has no answer.
-5. If you have a more complex question which is not answered in the previous items (or not suitable for chat), please fill in the details below.
-6. Include a self-contained and minimal piece of code that illustrates your question. If that's not possible, try to make the description as clear as possible.
-
-[FAQ]: http://pybind11.readthedocs.io/en/latest/faq.html
-[documentation]: https://pybind11.readthedocs.io
-[issue tracker]: https://github.com/pybind/pybind11/issues
-[Gitter chat room]: https://gitter.im/pybind/Lobby
-
-*After reading, remove this checklist.*
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 73273365..2c7d1708 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -5,12 +5,3 @@ updates:
directory: "/"
schedule:
interval: "daily"
- ignore:
- # Official actions have moving tags like v1
- # that are used, so they don't need updates here
- - dependency-name: "actions/checkout"
- - dependency-name: "actions/setup-python"
- - dependency-name: "actions/cache"
- - dependency-name: "actions/upload-artifact"
- - dependency-name: "actions/download-artifact"
- - dependency-name: "actions/labeler"
diff --git a/.github/matchers/pylint.json b/.github/matchers/pylint.json
new file mode 100644
index 00000000..e3a6bd16
--- /dev/null
+++ b/.github/matchers/pylint.json
@@ -0,0 +1,32 @@
+{
+ "problemMatcher": [
+ {
+ "severity": "warning",
+ "pattern": [
+ {
+ "regexp": "^([^:]+):(\\d+):(\\d+): ([A-DF-Z]\\d+): \\033\\[[\\d;]+m([^\\033]+).*$",
+ "file": 1,
+ "line": 2,
+ "column": 3,
+ "code": 4,
+ "message": 5
+ }
+ ],
+ "owner": "pylint-warning"
+ },
+ {
+ "severity": "error",
+ "pattern": [
+ {
+ "regexp": "^([^:]+):(\\d+):(\\d+): (E\\d+): \\033\\[[\\d;]+m([^\\033]+).*$",
+ "file": 1,
+ "line": 2,
+ "column": 3,
+ "code": 4,
+ "message": 5
+ }
+ ],
+ "owner": "pylint-error"
+ }
+ ]
+}
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
index 97a6ff7d..54b7f510 100644
--- a/.github/pull_request_template.md
+++ b/.github/pull_request_template.md
@@ -1,3 +1,7 @@
+<!--
+Title (above): please place [branch_name] at the beginning if you are targeting a branch other than master. *Do not target stable*.
+It is recommended to use conventional commit format, see conventionalcommits.org, but not required.
+-->
## Description
<!-- Include relevant issues or PRs here, describe what changed and why -->
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f90c1995..48f7c5e9 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -9,6 +9,20 @@ on:
- stable
- v*
+permissions: read-all
+
+concurrency:
+ group: test-${{ github.ref }}
+ cancel-in-progress: true
+
+env:
+ PIP_BREAK_SYSTEM_PACKAGES: 1
+ PIP_ONLY_BINARY: numpy
+ FORCE_COLOR: 3
+ PYTEST_TIMEOUT: 300
+ # For cmake:
+ VERBOSE: 1
+
jobs:
# This is the "main" test suite, which tests a large number of different
# versions of default compilers and Python versions in GitHub Actions.
@@ -16,66 +30,68 @@ jobs:
strategy:
fail-fast: false
matrix:
- runs-on: [ubuntu-latest, windows-latest, macos-latest]
+ runs-on: [ubuntu-20.04, windows-2022, macos-latest]
python:
- - 2.7
- - 3.5
- - 3.6
- - 3.9
- # - 3.10-dev # Re-enable once 3.10.0a5 is released
- - pypy2
- - pypy3
+ - '3.6'
+ - '3.9'
+ - '3.10'
+ - '3.11'
+ - '3.12'
+ - 'pypy-3.8'
+ - 'pypy-3.9'
+ - 'pypy-3.10'
# Items in here will either be added to the build matrix (if not
# present), or add new keys to an existing matrix element if all the
# existing keys match.
#
- # We support three optional keys: args (both build), args1 (first
- # build), and args2 (second build).
+ # We support an optional key: args, for cmake args
include:
# Just add a key
- - runs-on: ubuntu-latest
- python: 3.6
+ - runs-on: ubuntu-20.04
+ python: '3.6'
args: >
-DPYBIND11_FINDPYTHON=ON
- - runs-on: windows-latest
- python: 3.6
+ -DCMAKE_CXX_FLAGS="-D_=1"
+ - runs-on: ubuntu-20.04
+ python: 'pypy-3.8'
args: >
-DPYBIND11_FINDPYTHON=ON
-
- # These items will be removed from the build matrix, keys must match.
- exclude:
- # Currently 32bit only, and we build 64bit
- - runs-on: windows-latest
- python: pypy2
- - runs-on: windows-latest
- python: pypy3
-
- # TODO: PyPy2 7.3.3 segfaults, while 7.3.2 was fine.
- - runs-on: ubuntu-latest
- python: pypy2
+ - runs-on: windows-2019
+ python: '3.6'
+ args: >
+ -DPYBIND11_FINDPYTHON=ON
+ # Inject a couple Windows 2019 runs
+ - runs-on: windows-2019
+ python: '3.9'
name: "🐍 ${{ matrix.python }} • ${{ matrix.runs-on }} • x64 ${{ matrix.args }}"
runs-on: ${{ matrix.runs-on }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
+ allow-prereleases: true
- - name: Setup Boost (Windows / Linux latest)
- shell: bash
- run: echo "BOOST_ROOT=$BOOST_ROOT_1_72_0" >> $GITHUB_ENV
+ - name: Setup Boost (Linux)
+ # Can't use boost + define _
+ if: runner.os == 'Linux' && matrix.python != '3.6'
+ run: sudo apt-get install libboost-dev
+
+ - name: Setup Boost (macOS)
+ if: runner.os == 'macOS'
+ run: brew install boost
- name: Update CMake
- uses: jwlawson/actions-setup-cmake@v1.7
+ uses: jwlawson/actions-setup-cmake@v1.14
- name: Cache wheels
if: runner.os == 'macOS'
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
# This path is specific to macOS - we really only need it for PyPy NumPy wheels
# See https://github.com/actions/cache/blob/master/examples.md#python---pip
@@ -85,17 +101,20 @@ jobs:
key: ${{ runner.os }}-pip-${{ matrix.python }}-x64-${{ hashFiles('tests/requirements.txt') }}
- name: Prepare env
- run: python -m pip install -r tests/requirements.txt --prefer-binary
+ run: |
+ python -m pip install -r tests/requirements.txt
- name: Setup annotations on Linux
if: runner.os == 'Linux'
run: python -m pip install pytest-github-actions-annotate-failures
# First build - C++11 mode and inplace
+ # More-or-less randomly adding -DPYBIND11_SIMPLE_GIL_MANAGEMENT=ON here.
- name: Configure C++11 ${{ matrix.args }}
run: >
cmake -S . -B .
-DPYBIND11_WERROR=ON
+ -DPYBIND11_SIMPLE_GIL_MANAGEMENT=ON
-DDOWNLOAD_CATCH=ON
-DDOWNLOAD_EIGEN=ON
-DCMAKE_CXX_STANDARD=11
@@ -109,7 +128,7 @@ jobs:
- name: C++11 tests
# TODO: Figure out how to load the DLL on Python 3.8+
- if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10-dev'))"
+ if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10' || matrix.python == '3.11' || matrix.python == 'pypy-3.8'))"
run: cmake --build . --target cpptest -j 2
- name: Interface test C++11
@@ -119,15 +138,16 @@ jobs:
run: git clean -fdx
# Second build - C++17 mode and in a build directory
- - name: Configure ${{ matrix.args2 }}
+ # More-or-less randomly adding -DPYBIND11_SIMPLE_GIL_MANAGEMENT=OFF here.
+ - name: Configure C++17
run: >
cmake -S . -B build2
-DPYBIND11_WERROR=ON
+ -DPYBIND11_SIMPLE_GIL_MANAGEMENT=OFF
-DDOWNLOAD_CATCH=ON
-DDOWNLOAD_EIGEN=ON
-DCMAKE_CXX_STANDARD=17
${{ matrix.args }}
- ${{ matrix.args2 }}
- name: Build
run: cmake --build build2 -j 2
@@ -137,32 +157,36 @@ jobs:
- name: C++ tests
# TODO: Figure out how to load the DLL on Python 3.8+
- if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10-dev'))"
+ if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10' || matrix.python == '3.11' || matrix.python == 'pypy-3.8'))"
run: cmake --build build2 --target cpptest
- - name: Interface test
- run: cmake --build build2 --target test_cmake_build
+ # Third build - C++17 mode with unstable ABI
+ - name: Configure (unstable ABI)
+ run: >
+ cmake -S . -B build3
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_STANDARD=17
+ -DPYBIND11_INTERNALS_VERSION=10000000
+ ${{ matrix.args }}
- # Eventually Microsoft might have an action for setting up
- # MSVC, but for now, this action works:
- - name: Prepare compiler environment for Windows 🐍 2.7
- if: matrix.python == 2.7 && runner.os == 'Windows'
- uses: ilammy/msvc-dev-cmd@v1
- with:
- arch: x64
+ - name: Build (unstable ABI)
+ run: cmake --build build3 -j 2
- # This makes two environment variables available in the following step(s)
- - name: Set Windows 🐍 2.7 environment variables
- if: matrix.python == 2.7 && runner.os == 'Windows'
- shell: bash
- run: |
- echo "DISTUTILS_USE_SDK=1" >> $GITHUB_ENV
- echo "MSSdk=1" >> $GITHUB_ENV
+ - name: Python tests (unstable ABI)
+ run: cmake --build build3 --target pytest
+
+ - name: Interface test
+ run: cmake --build build2 --target test_cmake_build
# This makes sure the setup_helpers module can build packages using
# setuptools
- name: Setuptools helpers test
- run: pytest tests/extra_setuptools
+ run: |
+ pip install setuptools
+ pytest tests/extra_setuptools
+ if: "!(matrix.runs-on == 'windows-2022')"
deadsnakes:
@@ -170,30 +194,31 @@ jobs:
fail-fast: false
matrix:
include:
- - python-version: 3.9
+ # TODO: Fails on 3.10, investigate
+ - python-version: "3.9"
python-debug: true
valgrind: true
- - python-version: 3.10-dev
+ - python-version: "3.11"
python-debug: false
name: "🐍 ${{ matrix.python-version }}${{ matrix.python-debug && '-dbg' || '' }} (deadsnakes)${{ matrix.valgrind && ' • Valgrind' || '' }} • x64"
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }} (deadsnakes)
- uses: deadsnakes/action@v2.1.1
+ uses: deadsnakes/action@v3.0.1
with:
python-version: ${{ matrix.python-version }}
debug: ${{ matrix.python-debug }}
- name: Update CMake
- uses: jwlawson/actions-setup-cmake@v1.7
+ uses: jwlawson/actions-setup-cmake@v1.14
- name: Valgrind cache
if: matrix.valgrind
- uses: actions/cache@v2
+ uses: actions/cache@v3
id: cache-valgrind
with:
path: valgrind
@@ -218,7 +243,8 @@ jobs:
sudo apt-get install libc6-dbg # Needed by Valgrind
- name: Prepare env
- run: python -m pip install -r tests/requirements.txt --prefer-binary
+ run: |
+ python -m pip install -r tests/requirements.txt
- name: Configure
run: >
@@ -258,19 +284,30 @@ jobs:
- dev
std:
- 11
+ container_suffix:
+ - ""
include:
- clang: 5
std: 14
- clang: 10
- std: 20
- - clang: 10
std: 17
+ - clang: 11
+ std: 20
+ - clang: 12
+ std: 20
+ - clang: 13
+ std: 20
+ - clang: 14
+ std: 20
+ - clang: 15
+ std: 20
+ container_suffix: "-bullseye"
name: "🐍 3 • Clang ${{ matrix.clang }} • C++${{ matrix.std }} • x64"
- container: "silkeh/clang:${{ matrix.clang }}"
+ container: "silkeh/clang:${{ matrix.clang }}${{ matrix.container_suffix }}"
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Add wget and python3
run: apt-get update && apt-get install -y python3-dev python3-numpy python3-pytest libeigen3-dev
@@ -300,11 +337,11 @@ jobs:
# Testing NVCC; forces sources to behave like .cu files
cuda:
runs-on: ubuntu-latest
- name: "🐍 3.8 • CUDA 11 • Ubuntu 20.04"
- container: nvidia/cuda:11.0-devel-ubuntu20.04
+ name: "🐍 3.10 • CUDA 12.2 • Ubuntu 22.04"
+ container: nvidia/cuda:12.2.0-devel-ubuntu22.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
# tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
- name: Install 🐍 3
@@ -328,7 +365,7 @@ jobs:
# container: centos:8
#
# steps:
-# - uses: actions/checkout@v2
+# - uses: actions/checkout@v3
#
# - name: Add Python 3 and a few requirements
# run: yum update -y && yum install -y git python3-devel python3-numpy python3-pytest make environment-modules
@@ -366,33 +403,34 @@ jobs:
# Testing on CentOS 7 + PGI compilers, which seems to require more workarounds
centos-nvhpc7:
+ if: ${{ false }} # JOB DISABLED (NEEDS WORK): https://github.com/pybind/pybind11/issues/4690
runs-on: ubuntu-latest
- name: "🐍 3 • CentOS7 / PGI 20.9 • x64"
+ name: "🐍 3 • CentOS7 / PGI 22.9 • x64"
container: centos:7
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Add Python 3 and a few requirements
- run: yum update -y && yum install -y epel-release && yum install -y git python3-devel make environment-modules cmake3
+ run: yum update -y && yum install -y epel-release && yum install -y git python3-devel make environment-modules cmake3 yum-utils
- name: Install NVidia HPC SDK
- run: yum -y install https://developer.download.nvidia.com/hpc-sdk/20.9/nvhpc-20-9-20.9-1.x86_64.rpm https://developer.download.nvidia.com/hpc-sdk/20.9/nvhpc-2020-20.9-1.x86_64.rpm
+ run: yum-config-manager --add-repo https://developer.download.nvidia.com/hpc-sdk/rhel/nvhpc.repo && yum -y install nvhpc-22.9
# On CentOS 7, we have to filter a few tests (compiler internal error)
- # and allow deeper templete recursion (not needed on CentOS 8 with a newer
+ # and allow deeper template recursion (not needed on CentOS 8 with a newer
# standard library). On some systems, you many need further workarounds:
# https://github.com/pybind/pybind11/pull/2475
- name: Configure
shell: bash
run: |
source /etc/profile.d/modules.sh
- module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/20.9
+ module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/22.9
cmake3 -S . -B build -DDOWNLOAD_CATCH=ON \
-DCMAKE_CXX_STANDARD=11 \
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)") \
-DCMAKE_CXX_FLAGS="-Wc,--pending_instantiations=0" \
- -DPYBIND11_TEST_FILTER="test_smart_ptr.cpp;test_virtual_functions.cpp"
+ -DPYBIND11_TEST_FILTER="test_smart_ptr.cpp"
# Building before installing Pip should produce a warning but not an error
- name: Build
@@ -419,20 +457,20 @@ jobs:
strategy:
fail-fast: false
matrix:
- gcc:
- - 7
- - latest
- std:
- - 11
include:
- - gcc: 10
- std: 20
+ - { gcc: 7, std: 11 }
+ - { gcc: 7, std: 17 }
+ - { gcc: 8, std: 14 }
+ - { gcc: 8, std: 17 }
+ - { gcc: 10, std: 17 }
+ - { gcc: 11, std: 20 }
+ - { gcc: 12, std: 20 }
name: "🐍 3 • GCC ${{ matrix.gcc }} • C++${{ matrix.std }}• x64"
container: "gcc:${{ matrix.gcc }}"
steps:
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v3
- name: Add Python 3
run: apt-get update; apt-get install -y python3-dev python3-numpy python3-pytest python3-pip libeigen3-dev
@@ -441,7 +479,7 @@ jobs:
run: python3 -m pip install --upgrade pip
- name: Update CMake
- uses: jwlawson/actions-setup-cmake@v1.7
+ uses: jwlawson/actions-setup-cmake@v1.14
- name: Configure
shell: bash
@@ -464,6 +502,24 @@ jobs:
- name: Interface test
run: cmake --build build --target test_cmake_build
+ - name: Configure - Exercise cmake -DPYBIND11_TEST_OVERRIDE
+ if: matrix.gcc == '12'
+ shell: bash
+ run: >
+ cmake -S . -B build_partial
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DCMAKE_CXX_STANDARD=${{ matrix.std }}
+ -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
+ "-DPYBIND11_TEST_OVERRIDE=test_call_policies.cpp;test_gil_scoped.cpp;test_thread.cpp"
+
+ - name: Build - Exercise cmake -DPYBIND11_TEST_OVERRIDE
+ if: matrix.gcc == '12'
+ run: cmake --build build_partial -j 2
+
+ - name: Python tests - Exercise cmake -DPYBIND11_TEST_OVERRIDE
+ if: matrix.gcc == '12'
+ run: cmake --build build_partial --target pytest
# Testing on ICC using the oneAPI apt repo
icc:
@@ -474,7 +530,7 @@ jobs:
name: "🐍 3 • ICC latest • x64"
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Add apt repo
run: |
@@ -495,7 +551,7 @@ jobs:
- name: Install dependencies
run: |
set +e; source /opt/intel/oneapi/setvars.sh; set -e
- python3 -m pip install -r tests/requirements.txt --prefer-binary
+ python3 -m pip install -r tests/requirements.txt
- name: Configure C++11
run: |
@@ -569,29 +625,37 @@ jobs:
strategy:
fail-fast: false
matrix:
- centos:
- - 7 # GCC 4.8
- - 8
+ container:
+ - "centos:7" # GCC 4.8
+ - "almalinux:8"
+ - "almalinux:9"
- name: "🐍 3 • CentOS ${{ matrix.centos }} • x64"
- container: "centos:${{ matrix.centos }}"
+ name: "🐍 3 • ${{ matrix.container }} • x64"
+ container: "${{ matrix.container }}"
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- - name: Add Python 3
+ - name: Add Python 3 (RHEL 7)
+ if: matrix.container == 'centos:7'
run: yum update -y && yum install -y python3-devel gcc-c++ make git
+ - name: Add Python 3 (RHEL 8+)
+ if: matrix.container != 'centos:7'
+ run: dnf update -y && dnf install -y python3-devel gcc-c++ make git
+
- name: Update pip
run: python3 -m pip install --upgrade pip
- name: Install dependencies
- run: python3 -m pip install cmake -r tests/requirements.txt --prefer-binary
+ run: |
+ python3 -m pip install cmake -r tests/requirements.txt
- name: Configure
shell: bash
run: >
cmake -S . -B build
+ -DCMAKE_BUILD_TYPE=MinSizeRel
-DPYBIND11_WERROR=ON
-DDOWNLOAD_CATCH=ON
-DDOWNLOAD_EIGEN=ON
@@ -613,18 +677,18 @@ jobs:
# This tests an "install" with the CMake tools
install-classic:
- name: "🐍 3.5 • Debian • x86 • Install"
+ name: "🐍 3.7 • Debian • x86 • Install"
runs-on: ubuntu-latest
- container: i386/debian:stretch
+ container: i386/debian:buster
steps:
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v1 # Required to run inside docker
- name: Install requirements
run: |
apt-get update
apt-get install -y git make cmake g++ libeigen3-dev python3-dev python3-pip
- pip3 install "pytest==3.1.*"
+ pip3 install "pytest==6.*"
- name: Configure for install
run: >
@@ -649,33 +713,32 @@ jobs:
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
working-directory: /build-tests
- - name: Run tests
+ - name: Python tests
run: make pytest -j 2
working-directory: /build-tests
# This verifies that the documentation is not horribly broken, and does a
- # basic sanity check on the SDist.
+ # basic validation check on the SDist.
doxygen:
name: "Documentation build test"
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- - uses: actions/setup-python@v2
+ - uses: actions/setup-python@v4
+ with:
+ python-version: "3.x"
- name: Install Doxygen
run: sudo apt-get install -y doxygen librsvg2-bin # Changed to rsvg-convert in 20.04
- - name: Install docs & setup requirements
- run: python3 -m pip install -r docs/requirements.txt
-
- name: Build docs
- run: python3 -m sphinx -W -b html docs docs/.build
+ run: pipx run nox -s docs
- name: Make SDist
- run: python3 setup.py sdist
+ run: pipx run nox -s build -- --sdist
- run: git status --ignored
@@ -687,7 +750,7 @@ jobs:
- name: Compare Dists (headers only)
working-directory: include
run: |
- python3 -m pip install --user -U ../dist/*
+ python3 -m pip install --user -U ../dist/*.tar.gz
installed=$(python3 -c "import pybind11; print(pybind11.get_include() + '/pybind11')")
diff -rq $installed ./pybind11
@@ -696,42 +759,43 @@ jobs:
fail-fast: false
matrix:
python:
- - 3.5
- 3.6
- 3.7
- 3.8
- 3.9
- - pypy3
- # TODO: fix hang on pypy2
include:
- python: 3.9
- args: -DCMAKE_CXX_STANDARD=20 -DDOWNLOAD_EIGEN=OFF
+ args: -DCMAKE_CXX_STANDARD=20
- python: 3.8
args: -DCMAKE_CXX_STANDARD=17
+ - python: 3.7
+ args: -DCMAKE_CXX_STANDARD=14
+
name: "🐍 ${{ matrix.python }} • MSVC 2019 • x86 ${{ matrix.args }}"
- runs-on: windows-latest
+ runs-on: windows-2019
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
architecture: x86
- name: Update CMake
- uses: jwlawson/actions-setup-cmake@v1.7
+ uses: jwlawson/actions-setup-cmake@v1.14
- name: Prepare MSVC
- uses: ilammy/msvc-dev-cmd@v1
+ uses: ilammy/msvc-dev-cmd@v1.12.1
with:
arch: x86
- name: Prepare env
- run: python -m pip install -r tests/requirements.txt --prefer-binary
+ run: |
+ python -m pip install -r tests/requirements.txt
# First build - C++11 mode and inplace
- name: Configure ${{ matrix.args }}
@@ -745,102 +809,357 @@ jobs:
- name: Build C++11
run: cmake --build build -j 2
- - name: Run tests
+ - name: Python tests
run: cmake --build build -t pytest
- win32-msvc2015:
- name: "🐍 ${{ matrix.python }} • MSVC 2015 • x64"
- runs-on: windows-latest
+ win32-debug:
strategy:
fail-fast: false
matrix:
python:
- - 2.7
- - 3.6
- - 3.7
- # todo: check/cpptest does not support 3.8+ yet
+ - 3.8
+ - 3.9
+
+ include:
+ - python: 3.9
+ args: -DCMAKE_CXX_STANDARD=20
+ - python: 3.8
+ args: -DCMAKE_CXX_STANDARD=17
+
+ name: "🐍 ${{ matrix.python }} • MSVC 2019 (Debug) • x86 ${{ matrix.args }}"
+ runs-on: windows-2019
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- - name: Setup 🐍 ${{ matrix.python }}
- uses: actions/setup-python@v2
+ - name: Setup Python ${{ matrix.python }}
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
+ architecture: x86
- name: Update CMake
- uses: jwlawson/actions-setup-cmake@v1.7
+ uses: jwlawson/actions-setup-cmake@v1.14
- name: Prepare MSVC
- uses: ilammy/msvc-dev-cmd@v1
+ uses: ilammy/msvc-dev-cmd@v1.12.1
with:
- toolset: 14.0
+ arch: x86
- name: Prepare env
- run: python -m pip install -r tests/requirements.txt --prefer-binary
+ run: |
+ python -m pip install -r tests/requirements.txt
# First build - C++11 mode and inplace
- - name: Configure
+ - name: Configure ${{ matrix.args }}
run: >
cmake -S . -B build
- -G "Visual Studio 14 2015" -A x64
+ -G "Visual Studio 16 2019" -A Win32
+ -DCMAKE_BUILD_TYPE=Debug
-DPYBIND11_WERROR=ON
-DDOWNLOAD_CATCH=ON
-DDOWNLOAD_EIGEN=ON
+ ${{ matrix.args }}
+ - name: Build C++11
+ run: cmake --build build --config Debug -j 2
- - name: Build C++14
- run: cmake --build build -j 2
-
- - name: Run all checks
- run: cmake --build build -t check
+ - name: Python tests
+ run: cmake --build build --config Debug -t pytest
- win32-msvc2017:
- name: "🐍 ${{ matrix.python }} • MSVC 2017 • x64"
- runs-on: windows-2016
+ windows-2022:
strategy:
fail-fast: false
matrix:
python:
- - 2.7
- - 3.5
- - 3.7
- std:
- - 14
+ - 3.9
- include:
- - python: 2.7
- std: 17
- args: >
- -DCMAKE_CXX_FLAGS="/permissive- /EHsc /GR"
+ name: "🐍 ${{ matrix.python }} • MSVC 2022 C++20 • x64"
+ runs-on: windows-2022
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- - name: Setup 🐍 ${{ matrix.python }}
- uses: actions/setup-python@v2
+ - name: Setup Python ${{ matrix.python }}
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- - name: Update CMake
- uses: jwlawson/actions-setup-cmake@v1.7
-
- name: Prepare env
- run: python -m pip install -r tests/requirements.txt --prefer-binary
+ run: |
+ python3 -m pip install -r tests/requirements.txt
- # First build - C++11 mode and inplace
- - name: Configure
+ - name: Update CMake
+ uses: jwlawson/actions-setup-cmake@v1.14
+
+ - name: Configure C++20
run: >
cmake -S . -B build
- -G "Visual Studio 15 2017" -A x64
-DPYBIND11_WERROR=ON
-DDOWNLOAD_CATCH=ON
-DDOWNLOAD_EIGEN=ON
- -DCMAKE_CXX_STANDARD=${{ matrix.std }}
- ${{ matrix.args }}
+ -DCMAKE_CXX_STANDARD=20
- - name: Build ${{ matrix.std }}
+ - name: Build C++20
run: cmake --build build -j 2
- - name: Run all checks
- run: cmake --build build -t check
+ - name: Python tests
+ run: cmake --build build --target pytest
+
+ - name: C++20 tests
+ run: cmake --build build --target cpptest -j 2
+
+ - name: Interface test C++20
+ run: cmake --build build --target test_cmake_build
+
+ - name: Configure C++20 - Exercise cmake -DPYBIND11_TEST_OVERRIDE
+ run: >
+ cmake -S . -B build_partial
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_STANDARD=20
+ "-DPYBIND11_TEST_OVERRIDE=test_call_policies.cpp;test_gil_scoped.cpp;test_thread.cpp"
+
+ - name: Build C++20 - Exercise cmake -DPYBIND11_TEST_OVERRIDE
+ run: cmake --build build_partial -j 2
+
+ - name: Python tests - Exercise cmake -DPYBIND11_TEST_OVERRIDE
+ run: cmake --build build_partial --target pytest
+
+ mingw:
+ name: "🐍 3 • windows-latest • ${{ matrix.sys }}"
+ runs-on: windows-latest
+ defaults:
+ run:
+ shell: msys2 {0}
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ - { sys: mingw64, env: x86_64 }
+ - { sys: mingw32, env: i686 }
+ steps:
+ - uses: msys2/setup-msys2@v2
+ with:
+ msystem: ${{matrix.sys}}
+ install: >-
+ git
+ mingw-w64-${{matrix.env}}-gcc
+ mingw-w64-${{matrix.env}}-python-pip
+ mingw-w64-${{matrix.env}}-python-numpy
+ mingw-w64-${{matrix.env}}-python-scipy
+ mingw-w64-${{matrix.env}}-cmake
+ mingw-w64-${{matrix.env}}-make
+ mingw-w64-${{matrix.env}}-python-pytest
+ mingw-w64-${{matrix.env}}-eigen3
+ mingw-w64-${{matrix.env}}-boost
+ mingw-w64-${{matrix.env}}-catch
+
+ - uses: actions/checkout@v3
+
+ - name: Configure C++11
+ # LTO leads to many undefined reference like
+ # `pybind11::detail::function_call::function_call(pybind11::detail::function_call&&)
+ run: cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=11 -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -S . -B build
+
+ - name: Build C++11
+ run: cmake --build build -j 2
+
+ - name: Python tests C++11
+ run: cmake --build build --target pytest -j 2
+
+ - name: C++11 tests
+ run: PYTHONHOME=/${{matrix.sys}} PYTHONPATH=/${{matrix.sys}} cmake --build build --target cpptest -j 2
+
+ - name: Interface test C++11
+ run: PYTHONHOME=/${{matrix.sys}} PYTHONPATH=/${{matrix.sys}} cmake --build build --target test_cmake_build
+
+ - name: Clean directory
+ run: git clean -fdx
+
+ - name: Configure C++14
+ run: cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=14 -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -S . -B build2
+
+ - name: Build C++14
+ run: cmake --build build2 -j 2
+
+ - name: Python tests C++14
+ run: cmake --build build2 --target pytest -j 2
+
+ - name: C++14 tests
+ run: PYTHONHOME=/${{matrix.sys}} PYTHONPATH=/${{matrix.sys}} cmake --build build2 --target cpptest -j 2
+
+ - name: Interface test C++14
+ run: PYTHONHOME=/${{matrix.sys}} PYTHONPATH=/${{matrix.sys}} cmake --build build2 --target test_cmake_build
+
+ - name: Clean directory
+ run: git clean -fdx
+
+ - name: Configure C++17
+ run: cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=17 -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -S . -B build3
+
+ - name: Build C++17
+ run: cmake --build build3 -j 2
+
+ - name: Python tests C++17
+ run: cmake --build build3 --target pytest -j 2
+
+ - name: C++17 tests
+ run: PYTHONHOME=/${{matrix.sys}} PYTHONPATH=/${{matrix.sys}} cmake --build build3 --target cpptest -j 2
+
+ - name: Interface test C++17
+ run: PYTHONHOME=/${{matrix.sys}} PYTHONPATH=/${{matrix.sys}} cmake --build build3 --target test_cmake_build
+
+ windows_clang:
+
+ strategy:
+ matrix:
+ os: [windows-latest]
+ python: ['3.10']
+
+ runs-on: "${{ matrix.os }}"
+
+ name: "🐍 ${{ matrix.python }} • ${{ matrix.os }} • clang-latest"
+
+ steps:
+ - name: Show env
+ run: env
+
+ - name: Checkout
+ uses: actions/checkout@v3
+
+ - name: Set up Clang
+ uses: egor-tensin/setup-clang@v1
+
+ - name: Setup Python ${{ matrix.python }}
+ uses: actions/setup-python@v4
+ with:
+ python-version: ${{ matrix.python }}
+
+ - name: Update CMake
+ uses: jwlawson/actions-setup-cmake@v1.14
+
+ - name: Install ninja-build tool
+ uses: seanmiddleditch/gha-setup-ninja@v3
+
+ - name: Run pip installs
+ run: |
+ python -m pip install --upgrade pip
+ python -m pip install -r tests/requirements.txt
+
+ - name: Show Clang++ version
+ run: clang++ --version
+
+ - name: Show CMake version
+ run: cmake --version
+
+ # TODO: WERROR=ON
+ - name: Configure Clang
+ run: >
+ cmake -G Ninja -S . -B .
+ -DPYBIND11_WERROR=OFF
+ -DPYBIND11_SIMPLE_GIL_MANAGEMENT=OFF
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_COMPILER=clang++
+ -DCMAKE_CXX_STANDARD=17
+
+ - name: Build
+ run: cmake --build . -j 2
+
+ - name: Python tests
+ run: cmake --build . --target pytest -j 2
+
+ - name: C++ tests
+ run: cmake --build . --target cpptest -j 2
+
+ - name: Interface test
+ run: cmake --build . --target test_cmake_build -j 2
+
+ - name: Clean directory
+ run: git clean -fdx
+
+ macos_brew_install_llvm:
+ name: "macos-latest • brew install llvm"
+ runs-on: macos-latest
+
+ env:
+ # https://apple.stackexchange.com/questions/227026/how-to-install-recent-clang-with-homebrew
+ LDFLAGS: '-L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib'
+
+ steps:
+ - name: Update PATH
+ run: echo "/usr/local/opt/llvm/bin" >> $GITHUB_PATH
+
+ - name: Show env
+ run: env
+
+ - name: Checkout
+ uses: actions/checkout@v3
+
+ - name: Show Clang++ version before brew install llvm
+ run: clang++ --version
+
+ - name: brew install llvm
+ run: brew install llvm
+
+ - name: Show Clang++ version after brew install llvm
+ run: clang++ --version
+
+ - name: Update CMake
+ uses: jwlawson/actions-setup-cmake@v1.14
+
+ - name: Run pip installs
+ run: |
+ python3 -m pip install --upgrade pip
+ python3 -m pip install -r tests/requirements.txt
+ python3 -m pip install numpy
+ python3 -m pip install scipy
+
+ - name: Show CMake version
+ run: cmake --version
+
+ - name: CMake Configure
+ run: >
+ cmake -S . -B .
+ -DPYBIND11_WERROR=ON
+ -DPYBIND11_SIMPLE_GIL_MANAGEMENT=OFF
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_COMPILER=clang++
+ -DCMAKE_CXX_STANDARD=17
+ -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
+
+ - name: Build
+ run: cmake --build . -j 2
+
+ - name: Python tests
+ run: cmake --build . --target pytest -j 2
+
+ - name: C++ tests
+ run: cmake --build . --target cpptest -j 2
+
+ - name: Interface test
+ run: cmake --build . --target test_cmake_build -j 2
+
+ - name: CMake Configure - Exercise cmake -DPYBIND11_TEST_OVERRIDE
+ run: >
+ cmake -S . -B build_partial
+ -DPYBIND11_WERROR=ON
+ -DPYBIND11_SIMPLE_GIL_MANAGEMENT=OFF
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_COMPILER=clang++
+ -DCMAKE_CXX_STANDARD=17
+ -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
+ "-DPYBIND11_TEST_OVERRIDE=test_call_policies.cpp;test_gil_scoped.cpp;test_thread.cpp"
+
+ - name: Build - Exercise cmake -DPYBIND11_TEST_OVERRIDE
+ run: cmake --build build_partial -j 2
+
+ - name: Python tests - Exercise cmake -DPYBIND11_TEST_OVERRIDE
+ run: cmake --build build_partial --target pytest -j 2
+
+ - name: Clean directory
+ run: git clean -fdx
diff --git a/.github/workflows/configure.yml b/.github/workflows/configure.yml
index 578dba63..ec7cd612 100644
--- a/.github/workflows/configure.yml
+++ b/.github/workflows/configure.yml
@@ -9,6 +9,14 @@ on:
- stable
- v*
+permissions:
+ contents: read
+
+env:
+ PIP_BREAK_SYSTEM_PACKAGES: 1
+ # For cmake:
+ VERBOSE: 1
+
jobs:
# This tests various versions of CMake in various combinations, to make sure
# the configure step passes.
@@ -16,35 +24,35 @@ jobs:
strategy:
fail-fast: false
matrix:
- runs-on: [ubuntu-latest, macos-latest, windows-latest]
+ runs-on: [ubuntu-20.04, macos-latest, windows-latest]
arch: [x64]
- cmake: [3.18]
+ cmake: ["3.26"]
include:
- - runs-on: ubuntu-latest
+ - runs-on: ubuntu-20.04
arch: x64
- cmake: 3.4
+ cmake: "3.5"
- - runs-on: macos-latest
+ - runs-on: ubuntu-20.04
arch: x64
- cmake: 3.7
+ cmake: "3.27"
- - runs-on: windows-2016
- arch: x86
- cmake: 3.8
+ - runs-on: macos-latest
+ arch: x64
+ cmake: "3.7"
- - runs-on: windows-2016
- arch: x86
- cmake: 3.18
+ - runs-on: windows-2019
+ arch: x64 # x86 compilers seem to be missing on 2019 image
+ cmake: "3.18"
name: 🐍 3.7 • CMake ${{ matrix.cmake }} • ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup Python 3.7
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: 3.7
architecture: ${{ matrix.arch }}
@@ -55,7 +63,7 @@ jobs:
# An action for adding a specific version of CMake:
# https://github.com/jwlawson/actions-setup-cmake
- name: Setup CMake ${{ matrix.cmake }}
- uses: jwlawson/actions-setup-cmake@v1.7
+ uses: jwlawson/actions-setup-cmake@v1.14
with:
cmake-version: ${{ matrix.cmake }}
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml
index 5cebed17..b8242ee5 100644
--- a/.github/workflows/format.yml
+++ b/.github/workflows/format.yml
@@ -12,35 +12,49 @@ on:
- stable
- "v*"
+permissions:
+ contents: read
+
+env:
+ FORCE_COLOR: 3
+ # For cmake:
+ VERBOSE: 1
+
jobs:
pre-commit:
name: Format
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-python@v2
- - uses: pre-commit/action@v2.0.0
+ - uses: actions/checkout@v3
+ - uses: actions/setup-python@v4
+ with:
+ python-version: "3.x"
+ - name: Add matchers
+ run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json"
+ - uses: pre-commit/action@v3.0.0
with:
# Slow hooks are marked with manual - slow is okay here, run them too
extra_args: --hook-stage manual --all-files
clang-tidy:
+ # When making changes here, please also review the "Clang-Tidy" section
+ # in .github/CONTRIBUTING.md and update as needed.
name: Clang-Tidy
runs-on: ubuntu-latest
- container: silkeh/clang:10
+ container: silkeh/clang:15-bullseye
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Install requirements
- run: apt-get update && apt-get install -y python3-dev python3-pytest
+ run: apt-get update && apt-get install -y git python3-dev python3-pytest
- name: Configure
run: >
cmake -S . -B build
- -DCMAKE_CXX_CLANG_TIDY="$(which clang-tidy);--warnings-as-errors=*"
+ -DCMAKE_CXX_CLANG_TIDY="$(which clang-tidy);--use-color;--warnings-as-errors=*"
-DDOWNLOAD_EIGEN=ON
-DDOWNLOAD_CATCH=ON
-DCMAKE_CXX_STANDARD=17
- name: Build
- run: cmake --build build -j 2
+ run: cmake --build build -j 2 -- --keep-going
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
index d2b59796..858a4a0e 100644
--- a/.github/workflows/labeler.yml
+++ b/.github/workflows/labeler.yml
@@ -3,14 +3,23 @@ on:
pull_request_target:
types: [closed]
+permissions: {}
+
jobs:
label:
name: Labeler
runs-on: ubuntu-latest
+ permissions:
+ contents: read
+ pull-requests: write
steps:
- uses: actions/labeler@main
- if: github.event.pull_request.merged == true
+ if: >
+ github.event.pull_request.merged == true &&
+ !startsWith(github.event.pull_request.title, 'chore(deps):') &&
+ !startsWith(github.event.pull_request.title, 'ci(fix):') &&
+ !startsWith(github.event.pull_request.title, 'docs(changelog):')
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/labeler_merged.yml
diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml
index 4414a12e..d6687b44 100644
--- a/.github/workflows/pip.yml
+++ b/.github/workflows/pip.yml
@@ -12,24 +12,32 @@ on:
types:
- published
+permissions:
+ contents: read
+
+env:
+ PIP_BREAK_SYSTEM_PACKAGES: 1
+ PIP_ONLY_BINARY: numpy
+
jobs:
# This builds the sdists and wheels and makes sure the files are exactly as
- # expected. Using Windows and Python 2.7, since that is often the most
+ # expected. Using Windows and Python 3.6, since that is often the most
# challenging matrix element.
test-packaging:
- name: 🐍 2.7 • 📦 tests • windows-latest
+ name: 🐍 3.6 • 📦 tests • windows-latest
runs-on: windows-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- - name: Setup 🐍 2.7
- uses: actions/setup-python@v2
+ - name: Setup 🐍 3.6
+ uses: actions/setup-python@v4
with:
- python-version: 2.7
+ python-version: 3.6
- name: Prepare env
- run: python -m pip install -r tests/requirements.txt --prefer-binary
+ run: |
+ python -m pip install -r tests/requirements.txt
- name: Python Packaging tests
run: pytest tests/extra_python_package/
@@ -42,15 +50,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup 🐍 3.8
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Prepare env
- run: python -m pip install -r tests/requirements.txt build twine --prefer-binary
+ run: |
+ python -m pip install -r tests/requirements.txt build twine
- name: Python Packaging tests
run: pytest tests/extra_python_package/
@@ -64,13 +73,13 @@ jobs:
run: twine check dist/*
- name: Save standard package
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: standard
path: dist/pybind11-*
- name: Save global package
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: global
path: dist/pybind11_global-*
@@ -85,19 +94,21 @@ jobs:
needs: [packaging]
steps:
- - uses: actions/setup-python@v2
+ - uses: actions/setup-python@v4
+ with:
+ python-version: "3.x"
# Downloads all to directories matching the artifact names
- - uses: actions/download-artifact@v2
+ - uses: actions/download-artifact@v3
- name: Publish standard package
- uses: pypa/gh-action-pypi-publish@v1.4.1
+ uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.pypi_password }}
- packages_dir: standard/
+ packages-dir: standard/
- name: Publish global package
- uses: pypa/gh-action-pypi-publish@v1.4.1
+ uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.pypi_password_global }}
- packages_dir: global/
+ packages-dir: global/
diff --git a/.github/workflows/upstream.yml b/.github/workflows/upstream.yml
new file mode 100644
index 00000000..dd8a1c96
--- /dev/null
+++ b/.github/workflows/upstream.yml
@@ -0,0 +1,116 @@
+name: Upstream
+
+on:
+ workflow_dispatch:
+ pull_request:
+
+permissions:
+ contents: read
+
+concurrency:
+ group: upstream-${{ github.ref }}
+ cancel-in-progress: true
+
+env:
+ PIP_BREAK_SYSTEM_PACKAGES: 1
+ PIP_ONLY_BINARY: ":all:"
+ # For cmake:
+ VERBOSE: 1
+
+jobs:
+ standard:
+ name: "🐍 3.12 latest • ubuntu-latest • x64"
+ runs-on: ubuntu-latest
+ # Only runs when the 'python dev' label is selected
+ if: "contains(github.event.pull_request.labels.*.name, 'python dev')"
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Setup Python 3.12
+ uses: actions/setup-python@v4
+ with:
+ python-version: "3.12-dev"
+
+ - name: Setup Boost
+ run: sudo apt-get install libboost-dev
+
+ - name: Update CMake
+ uses: jwlawson/actions-setup-cmake@v1.14
+
+ - name: Run pip installs
+ run: |
+ python -m pip install --upgrade pip
+ python -m pip install -r tests/requirements.txt
+
+ - name: Show platform info
+ run: |
+ python -m platform
+ cmake --version
+ pip list
+
+ # First build - C++11 mode and inplace
+ - name: Configure C++11
+ run: >
+ cmake -S . -B build11
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_STANDARD=11
+ -DCMAKE_BUILD_TYPE=Debug
+
+ - name: Build C++11
+ run: cmake --build build11 -j 2
+
+ - name: Python tests C++11
+ run: cmake --build build11 --target pytest -j 2
+
+ - name: C++11 tests
+ run: cmake --build build11 --target cpptest -j 2
+
+ - name: Interface test C++11
+ run: cmake --build build11 --target test_cmake_build
+
+ # Second build - C++17 mode and in a build directory
+ - name: Configure C++17
+ run: >
+ cmake -S . -B build17
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_STANDARD=17
+
+ - name: Build C++17
+ run: cmake --build build17 -j 2
+
+ - name: Python tests C++17
+ run: cmake --build build17 --target pytest
+
+ - name: C++17 tests
+ run: cmake --build build17 --target cpptest
+
+ # Third build - C++17 mode with unstable ABI
+ - name: Configure (unstable ABI)
+ run: >
+ cmake -S . -B build17max
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_STANDARD=17
+ -DPYBIND11_INTERNALS_VERSION=10000000
+
+ - name: Build (unstable ABI)
+ run: cmake --build build17max -j 2
+
+ - name: Python tests (unstable ABI)
+ run: cmake --build build17max --target pytest
+
+ - name: Interface test (unstable ABI)
+ run: cmake --build build17max --target test_cmake_build
+
+ # This makes sure the setup_helpers module can build packages using
+ # setuptools
+ - name: Setuptools helpers test
+ run: |
+ pip install setuptools
+ pytest tests/extra_setuptools