aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/pybind11/.github
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2021-01-02 10:15:39 +0100
committerMiodrag Milanovic <mmicko@gmail.com>2021-01-02 10:15:39 +0100
commite76cdab6dd77bad411e6ac9372ee527aff89ef17 (patch)
treee9868f05cf455336d75f33b1312d71034f8fb334 /3rdparty/pybind11/.github
parentc6cdf30501dcb2da01361229dd66a05dad73a132 (diff)
downloadnextpnr-e76cdab6dd77bad411e6ac9372ee527aff89ef17.tar.gz
nextpnr-e76cdab6dd77bad411e6ac9372ee527aff89ef17.tar.bz2
nextpnr-e76cdab6dd77bad411e6ac9372ee527aff89ef17.zip
Update pybind11 to version 2.6.1
Diffstat (limited to '3rdparty/pybind11/.github')
-rw-r--r--3rdparty/pybind11/.github/CONTRIBUTING.md319
-rw-r--r--3rdparty/pybind11/.github/ISSUE_TEMPLATE/bug-report.md28
-rw-r--r--3rdparty/pybind11/.github/ISSUE_TEMPLATE/config.yml5
-rw-r--r--3rdparty/pybind11/.github/ISSUE_TEMPLATE/feature-request.md16
-rw-r--r--3rdparty/pybind11/.github/ISSUE_TEMPLATE/question.md21
-rw-r--r--3rdparty/pybind11/.github/dependabot.yml11
-rw-r--r--3rdparty/pybind11/.github/labeler.yml8
-rw-r--r--3rdparty/pybind11/.github/labeler_merged.yml3
-rw-r--r--3rdparty/pybind11/.github/pull_request_template.md14
-rw-r--r--3rdparty/pybind11/.github/workflows/ci.yml676
-rw-r--r--3rdparty/pybind11/.github/workflows/configure.yml84
-rw-r--r--3rdparty/pybind11/.github/workflows/format.yml46
-rw-r--r--3rdparty/pybind11/.github/workflows/labeler.yml16
-rw-r--r--3rdparty/pybind11/.github/workflows/pip.yml103
14 files changed, 1350 insertions, 0 deletions
diff --git a/3rdparty/pybind11/.github/CONTRIBUTING.md b/3rdparty/pybind11/.github/CONTRIBUTING.md
new file mode 100644
index 00000000..4ced21ba
--- /dev/null
+++ b/3rdparty/pybind11/.github/CONTRIBUTING.md
@@ -0,0 +1,319 @@
+Thank you for your interest in this project! Please refer to the following
+sections on how to contribute code and bug reports.
+
+### Reporting bugs
+
+Before submitting a question or bug report, please take a moment of your time
+and ensure that your issue isn't already discussed in the project documentation
+provided at [pybind11.readthedocs.org][] or in the [issue tracker][]. You can
+also check [gitter][] to see if it came up before.
+
+Assuming that you have identified a previously unknown problem or an important
+question, it's essential that you submit a self-contained and minimal piece of
+code that reproduces the problem. In other words: 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 in isolation; or
+ideally make a small PR with a failing test case that can be used as a starting
+point.
+
+## Pull requests
+
+Contributions are submitted, reviewed, and accepted using GitHub pull requests.
+Please refer to [this article][using pull requests] for details and adhere to
+the following rules to make the process as smooth as possible:
+
+* Make a new branch for every feature you're working on.
+* Make small and clean pull requests that are easy to review but make sure they
+ do add value by themselves.
+* Add tests for any new functionality and run the test suite (`cmake --build
+ build --target pytest`) to ensure that no existing features break.
+* Please run [`pre-commit`][pre-commit] to check your code matches the
+ project style. (Note that `gawk` is required.) Use `pre-commit run
+ --all-files` before committing (or use installed-mode, check pre-commit docs)
+ to verify your code passes before pushing to save time.
+* This project has a strong focus on providing general solutions using a
+ minimal amount of code, thus small pull requests are greatly preferred.
+
+### Licensing of contributions
+
+pybind11 is provided under a BSD-style license that can be found in the
+``LICENSE`` file. By using, distributing, or contributing to this project, you
+agree to the terms and conditions of this license.
+
+You are under no obligation whatsoever to provide any bug fixes, patches, or
+upgrades to the features, functionality or performance of the source code
+("Enhancements") to anyone; however, if you choose to make your Enhancements
+available either publicly, or directly to the author of this software, without
+imposing a separate written license agreement for such Enhancements, then you
+hereby grant the following license: a non-exclusive, royalty-free perpetual
+license to install, use, modify, prepare derivative works, incorporate into
+other computer software, distribute, and sublicense such enhancements or
+derivative works thereof, in binary and source code form.
+
+
+## Development of pybind11
+
+To setup an ideal development environment, run the following commands on a
+system with CMake 3.14+:
+
+```bash
+python3 -m venv venv
+source venv/bin/activate
+pip install -r tests/requirements.txt
+cmake -S . -B build -DDOWNLOAD_CATCH=ON -DDOWNLOAD_EIGEN=ON
+cmake --build build -j4
+```
+
+Tips:
+
+* You can use `virtualenv` (from PyPI) instead of `venv` (which is Python 3
+ only).
+* 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.
+* 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
+ `-DPython_EXECUTABLE=/path/to/python`.
+
+### Configuration options
+
+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
+similar, or `-DCMAKE_CXX_COMPILER=`. Unlike the others, these cannot be changed
+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
+ 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
+* `-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
+
+
+<details><summary>A few standard CMake tricks: (click to expand)</summary><p>
+
+* Use `cmake --build build -v` to see the commands used to build the files.
+* Use `cmake build -LH` to list the CMake options with help.
+* Use `ccmake` if available to see a curses (terminal) gui, or `cmake-gui` for
+ a completely graphical interface (not present in the PyPI package).
+* Use `cmake --build build -j12` to build with 12 cores (for example).
+* Use `-G` and the name of a generator to use something different. `cmake
+ --help` lists the generators available.
+ - On Unix, setting `CMAKE_GENERATER=Ninja` in your environment will give
+ you automatic mulithreading on all your CMake projects!
+* Open the `CMakeLists.txt` with QtCreator to generate for that IDE.
+* You can use `-DCMAKE_EXPORT_COMPILE_COMMANDS=ON` to generate the `.json` file
+ that some tools expect.
+
+</p></details>
+
+
+To run the tests, you can "build" the check target:
+
+```bash
+cmake --build build --target check
+```
+
+`--target` can be spelled `-t` in CMake 3.15+. You can also run individual
+tests with these targets:
+
+* `pytest`: Python tests only
+* `cpptest`: C++ tests only
+* `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.
+
+### Formatting
+
+All formatting is handled by pre-commit.
+
+Install with brew (macOS) or pip (any OS):
+
+```bash
+# Any OS
+python3 -m pip install pre-commit
+
+# OR macOS with homebrew:
+brew install pre-commit
+```
+
+Then, you can run it on the items you've added to your staging area, or all
+files:
+
+```bash
+pre-commit run
+# OR
+pre-commit run --all-files
+```
+
+And, if you want to always use it, you can install it as a git hook (hence the
+name, pre-commit):
+
+```bash
+pre-commit install
+```
+
+### Clang-Tidy
+
+To run Clang tidy, the following recipe should work. 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
+```
+
+### Include what you use
+
+To run include what you use, install (`brew install include-what-you-use` on
+macOS), then run:
+
+```bash
+cmake -S . -B build-iwyu -DCMAKE_CXX_INCLUDE_WHAT_YOU_USE=$(which include-what-you-use)
+cmake --build build
+```
+
+The report is sent to stderr; you can pip 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):
+
+```bash
+python3 -m venv venv
+. venv/bin/activate
+pip install pytest
+cmake -S . -B build-intel -DCMAKE_CXX_COMPILER=$(which icpc) -DDOWNLOAD_CATCH=ON -DDOWNLOAD_EIGEN=ON -DPYBIND11_WERROR=ON
+```
+
+This will test the PGI compilers:
+
+```bash
+docker run --rm -it -v $PWD:/pybind11 nvcr.io/hpc/pgi-compilers:ce
+apt-get update && apt-get install -y python3-dev python3-pip python3-pytest
+wget -qO- "https://cmake.org/files/v3.18/cmake-3.18.2-Linux-x86_64.tar.gz" | tar --strip-components=1 -xz -C /usr/local
+cmake -S pybind11/ -B build
+cmake --build build
+```
+
+### Explanation of the SDist/wheel building design
+
+> These details below are _only_ for packaging the Python sources from git. The
+> SDists and wheels created do not have any extra requirements at all and are
+> completely normal.
+
+The main objective of the packaging system is to create SDists (Python's source
+distribution packages) and wheels (Python's binary distribution packages) that
+include everything that is needed to work with pybind11, and which can be
+installed without any additional dependencies. This is more complex than it
+appears: in order to support CMake as a first class language even when using
+the PyPI package, they must include the _generated_ CMake files (so as not to
+require CMake when installing the `pybind11` package itself). They should also
+provide the option to install to the "standard" location
+(`<ENVROOT>/include/pybind11` and `<ENVROOT>/share/cmake/pybind11`) so they are
+easy to find with CMake, but this can cause problems if you are not an
+environment or using ``pyproject.toml`` requirements. This was solved by having
+two packages; the "nice" pybind11 package that stores the includes and CMake
+files inside the package, that you get access to via functions in the package,
+and a `pybind11-global` package that can be included via `pybind11[global]` if
+you want the more invasive but discoverable file locations.
+
+If you want to install or package the GitHub source, it is best to have Pip 10
+or newer on Windows, macOS, or Linux (manylinux1 compatible, includes most
+distributions). You can then build the SDists, or run any procedure that makes
+SDists internally, like making wheels or installing.
+
+
+```bash
+# Editable development install example
+python3 -m pip install -e .
+```
+
+Since Pip itself does not have an `sdist` command (it does have `wheel` and
+`install`), you may want to use the upcoming `build` package:
+
+```bash
+python3 -m pip install build
+
+# Normal package
+python3 -m build -s .
+
+# Global extra
+PYBIND11_GLOBAL_SDIST=1 python3 -m build -s .
+```
+
+If you want to use the classic "direct" usage of `python setup.py`, you will
+need CMake 3.15+ and either `make` or `ninja` preinstalled (possibly via `pip
+install cmake ninja`), since directly running Python on `setup.py` cannot pick
+up and install `pyproject.toml` requirements. As long as you have those two
+things, though, everything works the way you would expect:
+
+```bash
+# Normal package
+python3 setup.py sdist
+
+# Global extra
+PYBIND11_GLOBAL_SDIST=1 python3 setup.py sdist
+```
+
+A detailed explanation of the build procedure design for developers wanting to
+work on or maintain the packaging system is as follows:
+
+#### 1. Building from the source directory
+
+When you invoke any `setup.py` command from the source directory, including
+`pip wheel .` and `pip install .`, you will activate a full source build. This
+is made of the following steps:
+
+1. If the tool is PEP 518 compliant, like Pip 10+, it will create a temporary
+ virtual environment and install the build requirements (mostly CMake) into
+ it. (if you are not on Windows, macOS, or a manylinux compliant system, you
+ can disable this with `--no-build-isolation` as long as you have CMake 3.15+
+ installed)
+2. The environment variable `PYBIND11_GLOBAL_SDIST` is checked - if it is set
+ and truthy, this will be make the accessory `pybind11-global` package,
+ instead of the normal `pybind11` package. This package is used for
+ installing the files directly to your environment root directory, using
+ `pybind11[global]`.
+2. `setup.py` reads the version from `pybind11/_version.py` and verifies it
+ matches `includes/pybind11/detail/common.h`.
+3. CMake is run with `-DCMAKE_INSTALL_PREIFX=pybind11`. Since the CMake install
+ procedure uses only relative paths and is identical on all platforms, these
+ files are valid as long as they stay in the correct relative position to the
+ includes. `pybind11/share/cmake/pybind11` has the CMake files, and
+ `pybind11/include` has the includes. The build directory is discarded.
+4. Simpler files are placed in the SDist: `tools/setup_*.py.in`,
+ `tools/pyproject.toml` (`main` or `global`)
+5. The package is created by running the setup function in the
+ `tools/setup_*.py`. `setup_main.py` fills in Python packages, and
+ `setup_global.py` fills in only the data/header slots.
+6. A context manager cleans up the temporary CMake install directory (even if
+ an error is thrown).
+
+### 2. Building from SDist
+
+Since the SDist has the rendered template files in `tools` along with the
+includes and CMake files in the correct locations, the builds are completely
+trivial and simple. No extra requirements are required. You can even use Pip 9
+if you really want to.
+
+
+[pre-commit]: https://pre-commit.com
+[pybind11.readthedocs.org]: http://pybind11.readthedocs.org/en/latest
+[issue tracker]: https://github.com/pybind/pybind11/issues
+[gitter]: https://gitter.im/pybind/Lobby
+[using pull requests]: https://help.github.com/articles/using-pull-requests
diff --git a/3rdparty/pybind11/.github/ISSUE_TEMPLATE/bug-report.md b/3rdparty/pybind11/.github/ISSUE_TEMPLATE/bug-report.md
new file mode 100644
index 00000000..ae36ea65
--- /dev/null
+++ b/3rdparty/pybind11/.github/ISSUE_TEMPLATE/bug-report.md
@@ -0,0 +1,28 @@
+---
+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/3rdparty/pybind11/.github/ISSUE_TEMPLATE/config.yml b/3rdparty/pybind11/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 00000000..20e74313
--- /dev/null
+++ b/3rdparty/pybind11/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
+blank_issues_enabled: false
+contact_links:
+ - name: Gitter room
+ url: https://gitter.im/pybind/Lobby
+ about: A room for discussing pybind11 with an active community
diff --git a/3rdparty/pybind11/.github/ISSUE_TEMPLATE/feature-request.md b/3rdparty/pybind11/.github/ISSUE_TEMPLATE/feature-request.md
new file mode 100644
index 00000000..5f6ec81e
--- /dev/null
+++ b/3rdparty/pybind11/.github/ISSUE_TEMPLATE/feature-request.md
@@ -0,0 +1,16 @@
+---
+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/3rdparty/pybind11/.github/ISSUE_TEMPLATE/question.md b/3rdparty/pybind11/.github/ISSUE_TEMPLATE/question.md
new file mode 100644
index 00000000..b199b6ee
--- /dev/null
+++ b/3rdparty/pybind11/.github/ISSUE_TEMPLATE/question.md
@@ -0,0 +1,21 @@
+---
+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/3rdparty/pybind11/.github/dependabot.yml b/3rdparty/pybind11/.github/dependabot.yml
new file mode 100644
index 00000000..c1eac3c4
--- /dev/null
+++ b/3rdparty/pybind11/.github/dependabot.yml
@@ -0,0 +1,11 @@
+version: 2
+updates:
+ # Maintain dependencies for GitHub Actions
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "daily"
+ ignore:
+ # Offical actions have moving tags like v1
+ # that are used, so they don't need updates here
+ - dependency-name: "actions/*"
diff --git a/3rdparty/pybind11/.github/labeler.yml b/3rdparty/pybind11/.github/labeler.yml
new file mode 100644
index 00000000..abb0d05a
--- /dev/null
+++ b/3rdparty/pybind11/.github/labeler.yml
@@ -0,0 +1,8 @@
+docs:
+- any:
+ - 'docs/**/*.rst'
+ - '!docs/changelog.rst'
+ - '!docs/upgrade.rst'
+
+ci:
+- '.github/workflows/*.yml'
diff --git a/3rdparty/pybind11/.github/labeler_merged.yml b/3rdparty/pybind11/.github/labeler_merged.yml
new file mode 100644
index 00000000..2374ad42
--- /dev/null
+++ b/3rdparty/pybind11/.github/labeler_merged.yml
@@ -0,0 +1,3 @@
+needs changelog:
+- all:
+ - '!docs/changelog.rst'
diff --git a/3rdparty/pybind11/.github/pull_request_template.md b/3rdparty/pybind11/.github/pull_request_template.md
new file mode 100644
index 00000000..5570f6f2
--- /dev/null
+++ b/3rdparty/pybind11/.github/pull_request_template.md
@@ -0,0 +1,14 @@
+## Description
+
+<!-- Include relevant issues or PRs here, describe what changed and why -->
+
+
+## Suggested changelog entry:
+
+<!-- fill in the below block with the expected RestructuredText entry (delete if no entry needed) -->
+
+```rst
+
+```
+
+<!-- If the upgrade guide needs updating, note that here too -->
diff --git a/3rdparty/pybind11/.github/workflows/ci.yml b/3rdparty/pybind11/.github/workflows/ci.yml
new file mode 100644
index 00000000..73424f92
--- /dev/null
+++ b/3rdparty/pybind11/.github/workflows/ci.yml
@@ -0,0 +1,676 @@
+name: CI
+
+on:
+ workflow_dispatch:
+ pull_request:
+ push:
+ branches:
+ - master
+ - stable
+ - v*
+
+jobs:
+ # This is the "main" test suite, which tests a large number of different
+ # versions of default compilers and Python versions in GitHub Actions.
+ standard:
+ strategy:
+ fail-fast: false
+ matrix:
+ runs-on: [ubuntu-latest, windows-latest, macos-latest]
+ python:
+ - 2.7
+ - 3.5
+ - 3.6
+ - 3.7
+ - 3.8
+ - 3.9
+ # - 3.10.0-alpha.1 - need next release for pybind11 fix
+ - pypy2
+ - pypy3
+
+ # 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).
+ include:
+ # Just add a key
+ - runs-on: ubuntu-latest
+ python: 3.6
+ args: >
+ -DPYBIND11_FINDPYTHON=ON
+ - runs-on: windows-latest
+ python: 3.6
+ args: >
+ -DPYBIND11_FINDPYTHON=ON
+ - runs-on: ubuntu-latest
+ python: 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
+
+ # Let's drop a few macOS runs since that tends to be 2.7 or 3.8+
+ - runs-on: macos-latest
+ python: 3.6
+ - runs-on: macos-latest
+ python: 3.7
+
+ name: "🐍 ${{ matrix.python }} • ${{ matrix.runs-on }} • x64 ${{ matrix.args }}"
+ runs-on: ${{ matrix.runs-on }}
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Setup Python ${{ matrix.python }}
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ matrix.python }}
+
+ - name: Setup Boost (Windows / Linux latest)
+ shell: bash
+ run: echo "BOOST_ROOT=$BOOST_ROOT_1_72_0" >> $GITHUB_ENV
+
+ - name: Update CMake
+ uses: jwlawson/actions-setup-cmake@v1.4
+
+ - name: Cache wheels
+ if: runner.os == 'macOS'
+ uses: actions/cache@v2
+ 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
+ # for ways to do this more generally
+ path: ~/Library/Caches/pip
+ # Look to see if there is a cache hit for the corresponding requirements file
+ 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
+
+ - 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
+ - name: Configure C++11 ${{ matrix.args }}
+ run: >
+ cmake -S . -B .
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_STANDARD=11
+ ${{ matrix.args }}
+
+ - name: Build C++11
+ run: cmake --build . -j 2
+
+ - name: Python tests C++11
+ run: cmake --build . --target pytest -j 2
+
+ - 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))"
+ run: cmake --build . --target cpptest -j 2
+
+ - name: Interface test C++11
+ run: cmake --build . --target test_cmake_build
+
+ - name: Clean directory
+ run: git clean -fdx
+
+ # Second build - C++17 mode and in a build directory
+ - name: Configure ${{ matrix.args2 }}
+ run: >
+ cmake -S . -B build2
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_STANDARD=17
+ ${{ matrix.args }}
+ ${{ matrix.args2 }}
+
+ - name: Build
+ run: cmake --build build2 -j 2
+
+ - name: Python tests
+ run: cmake --build build2 --target pytest
+
+ - 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))"
+ run: cmake --build build2 --target cpptest
+
+ - name: Interface test
+ run: cmake --build build2 --target test_cmake_build
+
+ # 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
+
+ # 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
+
+ # This makes sure the setup_helpers module can build packages using
+ # setuptools
+ - name: Setuptools helpers test
+ run: pytest tests/extra_setuptools
+
+
+ # Testing on clang using the excellent silkeh clang docker images
+ clang:
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ clang:
+ - 3.6
+ - 3.7
+ - 3.9
+ - 7
+ - 9
+ - dev
+ std:
+ - 11
+ include:
+ - clang: 5
+ std: 14
+ - clang: 10
+ std: 20
+ - clang: 10
+ std: 17
+
+ name: "🐍 3 • Clang ${{ matrix.clang }} • C++${{ matrix.std }} • x64"
+ container: "silkeh/clang:${{ matrix.clang }}"
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Add wget and python3
+ run: apt-get update && apt-get install -y python3-dev python3-numpy python3-pytest libeigen3-dev
+
+ - name: Configure
+ shell: bash
+ run: >
+ cmake -S . -B build
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DCMAKE_CXX_STANDARD=${{ matrix.std }}
+ -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
+
+ - name: Build
+ run: cmake --build build -j 2
+
+ - name: Python tests
+ run: cmake --build build --target pytest
+
+ - name: C++ tests
+ run: cmake --build build --target cpptest
+
+ - name: Interface test
+ run: cmake --build build --target test_cmake_build
+
+
+ # 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
+
+ steps:
+ - uses: actions/checkout@v2
+
+ # tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
+ - name: Install 🐍 3
+ run: apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get install -y cmake git python3-dev python3-pytest python3-numpy
+
+ - name: Configure
+ run: cmake -S . -B build -DPYBIND11_CUDA_TESTS=ON -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON
+
+ - name: Build
+ run: cmake --build build -j2 --verbose
+
+ - name: Python tests
+ run: cmake --build build --target pytest
+
+
+ # Testing CentOS 8 + PGI compilers
+ centos-nvhpc8:
+ runs-on: ubuntu-latest
+ name: "🐍 3 • CentOS8 / PGI 20.7 • x64"
+ container: centos:8
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - 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
+
+ - name: Install CMake with pip
+ run: |
+ python3 -m pip install --upgrade pip
+ python3 -m pip install cmake --prefer-binary
+
+ - name: Install NVidia HPC SDK
+ run: yum -y install https://developer.download.nvidia.com/hpc-sdk/nvhpc-20-7-20.7-1.x86_64.rpm https://developer.download.nvidia.com/hpc-sdk/nvhpc-2020-20.7-1.x86_64.rpm
+
+ - name: Configure
+ shell: bash
+ run: |
+ source /etc/profile.d/modules.sh
+ module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/20.7
+ cmake -S . -B build -DDOWNLOAD_CATCH=ON -DCMAKE_CXX_STANDARD=14 -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
+
+ - name: Build
+ run: cmake --build build -j 2 --verbose
+
+ - name: Python tests
+ run: cmake --build build --target pytest
+
+ - name: C++ tests
+ run: cmake --build build --target cpptest
+
+ - name: Interface test
+ run: cmake --build build --target test_cmake_build
+
+
+ # Testing on CentOS 7 + PGI compilers, which seems to require more workarounds
+ centos-nvhpc7:
+ runs-on: ubuntu-latest
+ name: "🐍 3 • CentOS7 / PGI 20.9 • x64"
+ container: centos:7
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - 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
+
+ - 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
+
+ # 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
+ # 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
+ 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"
+
+ # Building before installing Pip should produce a warning but not an error
+ - name: Build
+ run: cmake3 --build build -j 2 --verbose
+
+ - name: Install CMake with pip
+ run: |
+ python3 -m pip install --upgrade pip
+ python3 -m pip install pytest
+
+ - name: Python tests
+ run: cmake3 --build build --target pytest
+
+ - name: C++ tests
+ run: cmake3 --build build --target cpptest
+
+ - name: Interface test
+ run: cmake3 --build build --target test_cmake_build
+
+ # Testing on GCC using the GCC docker images (only recent images supported)
+ gcc:
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ gcc:
+ - 7
+ - latest
+ std:
+ - 11
+ include:
+ - gcc: 10
+ std: 20
+
+ name: "🐍 3 • GCC ${{ matrix.gcc }} • C++${{ matrix.std }}• x64"
+ container: "gcc:${{ matrix.gcc }}"
+
+ steps:
+ - uses: actions/checkout@v1
+
+ - name: Add Python 3
+ run: apt-get update; apt-get install -y python3-dev python3-numpy python3-pytest python3-pip libeigen3-dev
+
+ - name: Update pip
+ run: python3 -m pip install --upgrade pip
+
+ - name: Setup CMake 3.18
+ uses: jwlawson/actions-setup-cmake@v1.4
+ with:
+ cmake-version: 3.18
+
+ - name: Configure
+ shell: bash
+ run: >
+ cmake -S . -B build
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DCMAKE_CXX_STANDARD=${{ matrix.std }}
+ -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
+
+ - name: Build
+ run: cmake --build build -j 2
+
+ - name: Python tests
+ run: cmake --build build --target pytest
+
+ - name: C++ tests
+ run: cmake --build build --target cpptest
+
+ - name: Interface test
+ run: cmake --build build --target test_cmake_build
+
+
+ # Testing on CentOS (manylinux uses a centos base, and this is an easy way
+ # to get GCC 4.8, which is the manylinux1 compiler).
+ centos:
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ centos:
+ - 7 # GCC 4.8
+ - 8
+
+ name: "🐍 3 • CentOS ${{ matrix.centos }} • x64"
+ container: "centos:${{ matrix.centos }}"
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Add Python 3
+ run: yum update -y && yum 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
+
+ - name: Configure
+ shell: bash
+ run: >
+ cmake -S . -B build
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_STANDARD=11
+ -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
+
+ - name: Build
+ run: cmake --build build -j 2
+
+ - name: Python tests
+ run: cmake --build build --target pytest
+
+ - name: C++ tests
+ run: cmake --build build --target cpptest
+
+ - name: Interface test
+ run: cmake --build build --target test_cmake_build
+
+
+ # This tests an "install" with the CMake tools
+ install-classic:
+ name: "🐍 3.5 • Debian • x86 • Install"
+ runs-on: ubuntu-latest
+ container: i386/debian:stretch
+
+ steps:
+ - uses: actions/checkout@v1
+
+ - 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.*"
+
+ - name: Configure for install
+ run: >
+ cmake .
+ -DPYBIND11_INSTALL=1 -DPYBIND11_TEST=0
+ -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
+
+ - name: Make and install
+ run: make install
+
+ - name: Copy tests to new directory
+ run: cp -a tests /pybind11-tests
+
+ - name: Make a new test directory
+ run: mkdir /build-tests
+
+ - name: Configure tests
+ run: >
+ cmake ../pybind11-tests
+ -DDOWNLOAD_CATCH=ON
+ -DPYBIND11_WERROR=ON
+ -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
+ working-directory: /build-tests
+
+ - name: Run 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.
+ doxygen:
+ name: "Documentation build test"
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - uses: actions/setup-python@v2
+
+ - 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
+
+ - name: Make SDist
+ run: python3 setup.py sdist
+
+ - run: git status --ignored
+
+ - name: Check local include dir
+ run: >
+ ls pybind11;
+ python3 -c "import pybind11, pathlib; assert (a := pybind11.get_include()) == (b := str(pathlib.Path('include').resolve())), f'{a} != {b}'"
+
+ - name: Compare Dists (headers only)
+ working-directory: include
+ run: |
+ python3 -m pip install --user -U ../dist/*
+ installed=$(python3 -c "import pybind11; print(pybind11.get_include() + '/pybind11')")
+ diff -rq $installed ./pybind11
+
+ win32:
+ strategy:
+ 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
+ - python: 3.8
+ args: -DCMAKE_CXX_STANDARD=17
+
+ name: "🐍 ${{ matrix.python }} • MSVC 2019 • x86 ${{ matrix.args }}"
+ runs-on: windows-latest
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Setup Python ${{ matrix.python }}
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ matrix.python }}
+ architecture: x86
+
+ - name: Update CMake
+ uses: jwlawson/actions-setup-cmake@v1.4
+
+ - name: Prepare MSVC
+ uses: ilammy/msvc-dev-cmd@v1
+ with:
+ arch: x86
+
+ - name: Prepare env
+ run: python -m pip install -r tests/requirements.txt --prefer-binary
+
+ # First build - C++11 mode and inplace
+ - name: Configure ${{ matrix.args }}
+ run: >
+ cmake -S . -B build
+ -G "Visual Studio 16 2019" -A Win32
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ ${{ matrix.args }}
+ - name: Build C++11
+ run: cmake --build build -j 2
+
+ - name: Run tests
+ run: cmake --build build -t pytest
+
+ win32-msvc2015:
+ name: "🐍 ${{ matrix.python }} • MSVC 2015 • x64"
+ runs-on: windows-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ python:
+ - 2.7
+ - 3.6
+ - 3.7
+ # todo: check/cpptest does not support 3.8+ yet
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Setup 🐍 ${{ matrix.python }}
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ matrix.python }}
+
+ - name: Update CMake
+ uses: jwlawson/actions-setup-cmake@v1.4
+
+ - name: Prepare MSVC
+ uses: ilammy/msvc-dev-cmd@v1
+ with:
+ toolset: 14.0
+
+ - name: Prepare env
+ run: python -m pip install -r tests/requirements.txt --prefer-binary
+
+ # First build - C++11 mode and inplace
+ - name: Configure
+ run: >
+ cmake -S . -B build
+ -G "Visual Studio 14 2015" -A x64
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+
+ - name: Build C++14
+ run: cmake --build build -j 2
+
+ - name: Run all checks
+ run: cmake --build build -t check
+
+
+ win32-msvc2017:
+ name: "🐍 ${{ matrix.python }} • MSVC 2017 • x64"
+ runs-on: windows-2016
+ strategy:
+ fail-fast: false
+ matrix:
+ python:
+ - 2.7
+ - 3.5
+ - 3.7
+ std:
+ - 14
+
+ include:
+ - python: 2.7
+ std: 17
+ args: >
+ -DCMAKE_CXX_FLAGS="/permissive- /EHsc /GR"
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Setup 🐍 ${{ matrix.python }}
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ matrix.python }}
+
+ - name: Update CMake
+ uses: jwlawson/actions-setup-cmake@v1.4
+
+ - name: Prepare env
+ run: python -m pip install -r tests/requirements.txt --prefer-binary
+
+ # First build - C++11 mode and inplace
+ - name: Configure
+ 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 }}
+
+ - name: Build ${{ matrix.std }}
+ run: cmake --build build -j 2
+
+ - name: Run all checks
+ run: cmake --build build -t check
diff --git a/3rdparty/pybind11/.github/workflows/configure.yml b/3rdparty/pybind11/.github/workflows/configure.yml
new file mode 100644
index 00000000..23f60229
--- /dev/null
+++ b/3rdparty/pybind11/.github/workflows/configure.yml
@@ -0,0 +1,84 @@
+name: Config
+
+on:
+ workflow_dispatch:
+ pull_request:
+ push:
+ branches:
+ - master
+ - stable
+ - v*
+
+jobs:
+ # This tests various versions of CMake in various combinations, to make sure
+ # the configure step passes.
+ cmake:
+ strategy:
+ fail-fast: false
+ matrix:
+ runs-on: [ubuntu-latest, macos-latest, windows-latest]
+ arch: [x64]
+ cmake: [3.18]
+
+ include:
+ - runs-on: ubuntu-latest
+ arch: x64
+ cmake: 3.4
+
+ - runs-on: macos-latest
+ arch: x64
+ cmake: 3.7
+
+ - runs-on: windows-2016
+ arch: x86
+ cmake: 3.8
+
+ - runs-on: windows-2016
+ arch: x86
+ cmake: 3.18
+
+ name: 🐍 3.7 • CMake ${{ matrix.cmake }} • ${{ matrix.runs-on }}
+ runs-on: ${{ matrix.runs-on }}
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Setup Python 3.7
+ uses: actions/setup-python@v2
+ with:
+ python-version: 3.7
+ architecture: ${{ matrix.arch }}
+
+ - name: Prepare env
+ run: python -m pip install -r tests/requirements.txt
+
+ # 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.3
+ with:
+ cmake-version: ${{ matrix.cmake }}
+
+ # These steps use a directory with a space in it intentionally
+ - name: Make build directories
+ run: mkdir "build dir"
+
+ - name: Configure
+ working-directory: build dir
+ shell: bash
+ run: >
+ cmake ..
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DPYTHON_EXECUTABLE=$(python -c "import sys; print(sys.executable)")
+
+ # Only build and test if this was manually triggered in the GitHub UI
+ - name: Build
+ working-directory: build dir
+ if: github.event_name == 'workflow_dispatch'
+ run: cmake --build . --config Release
+
+ - name: Test
+ working-directory: build dir
+ if: github.event_name == 'workflow_dispatch'
+ run: cmake --build . --config Release --target check
diff --git a/3rdparty/pybind11/.github/workflows/format.yml b/3rdparty/pybind11/.github/workflows/format.yml
new file mode 100644
index 00000000..5cebed17
--- /dev/null
+++ b/3rdparty/pybind11/.github/workflows/format.yml
@@ -0,0 +1,46 @@
+# This is a format job. Pre-commit has a first-party GitHub action, so we use
+# that: https://github.com/pre-commit/action
+
+name: Format
+
+on:
+ workflow_dispatch:
+ pull_request:
+ push:
+ branches:
+ - master
+ - stable
+ - "v*"
+
+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
+ with:
+ # Slow hooks are marked with manual - slow is okay here, run them too
+ extra_args: --hook-stage manual --all-files
+
+ clang-tidy:
+ name: Clang-Tidy
+ runs-on: ubuntu-latest
+ container: silkeh/clang:10
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Install requirements
+ run: apt-get update && apt-get install -y python3-dev python3-pytest
+
+ - name: Configure
+ run: >
+ cmake -S . -B build
+ -DCMAKE_CXX_CLANG_TIDY="$(which clang-tidy);--warnings-as-errors=*"
+ -DDOWNLOAD_EIGEN=ON
+ -DDOWNLOAD_CATCH=ON
+ -DCMAKE_CXX_STANDARD=17
+
+ - name: Build
+ run: cmake --build build -j 2
diff --git a/3rdparty/pybind11/.github/workflows/labeler.yml b/3rdparty/pybind11/.github/workflows/labeler.yml
new file mode 100644
index 00000000..d2b59796
--- /dev/null
+++ b/3rdparty/pybind11/.github/workflows/labeler.yml
@@ -0,0 +1,16 @@
+name: Labeler
+on:
+ pull_request_target:
+ types: [closed]
+
+jobs:
+ label:
+ name: Labeler
+ runs-on: ubuntu-latest
+ steps:
+
+ - uses: actions/labeler@main
+ if: github.event.pull_request.merged == true
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ configuration-path: .github/labeler_merged.yml
diff --git a/3rdparty/pybind11/.github/workflows/pip.yml b/3rdparty/pybind11/.github/workflows/pip.yml
new file mode 100644
index 00000000..4414a12e
--- /dev/null
+++ b/3rdparty/pybind11/.github/workflows/pip.yml
@@ -0,0 +1,103 @@
+name: Pip
+
+on:
+ workflow_dispatch:
+ pull_request:
+ push:
+ branches:
+ - master
+ - stable
+ - v*
+ release:
+ types:
+ - published
+
+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
+ # challenging matrix element.
+ test-packaging:
+ name: 🐍 2.7 • 📦 tests • windows-latest
+ runs-on: windows-latest
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Setup 🐍 2.7
+ uses: actions/setup-python@v2
+ with:
+ python-version: 2.7
+
+ - name: Prepare env
+ run: python -m pip install -r tests/requirements.txt --prefer-binary
+
+ - name: Python Packaging tests
+ run: pytest tests/extra_python_package/
+
+
+ # This runs the packaging tests and also builds and saves the packages as
+ # artifacts.
+ packaging:
+ name: 🐍 3.8 • 📦 & 📦 tests • ubuntu-latest
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Setup 🐍 3.8
+ uses: actions/setup-python@v2
+ with:
+ python-version: 3.8
+
+ - name: Prepare env
+ run: python -m pip install -r tests/requirements.txt build twine --prefer-binary
+
+ - name: Python Packaging tests
+ run: pytest tests/extra_python_package/
+
+ - name: Build SDist and wheels
+ run: |
+ python -m build
+ PYBIND11_GLOBAL_SDIST=1 python -m build
+
+ - name: Check metadata
+ run: twine check dist/*
+
+ - name: Save standard package
+ uses: actions/upload-artifact@v2
+ with:
+ name: standard
+ path: dist/pybind11-*
+
+ - name: Save global package
+ uses: actions/upload-artifact@v2
+ with:
+ name: global
+ path: dist/pybind11_global-*
+
+
+
+ # When a GitHub release is made, upload the artifacts to PyPI
+ upload:
+ name: Upload to PyPI
+ runs-on: ubuntu-latest
+ if: github.event_name == 'release' && github.event.action == 'published'
+ needs: [packaging]
+
+ steps:
+ - uses: actions/setup-python@v2
+
+ # Downloads all to directories matching the artifact names
+ - uses: actions/download-artifact@v2
+
+ - name: Publish standard package
+ uses: pypa/gh-action-pypi-publish@v1.4.1
+ with:
+ password: ${{ secrets.pypi_password }}
+ packages_dir: standard/
+
+ - name: Publish global package
+ uses: pypa/gh-action-pypi-publish@v1.4.1
+ with:
+ password: ${{ secrets.pypi_password_global }}
+ packages_dir: global/