forked from opencor/libopencor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pybind11: upgraded to version 2.13.6.
- Loading branch information
Showing
180 changed files
with
3,661 additions
and
1,032 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
`libOpenCOR <https://opencor.ws/libopencor/index.html>`__ relies on the following external projects: | ||
|
||
- `GoogleTest <https://github.com/google/googletest>`__ `1.15.2 <https://github.com/google/googletest/releases/tag/v1.15.2>`__; and | ||
- `pybind11 <https://github.com/pybind/pybind11>`__ `2.12.0 <https://github.com/pybind/pybind11/releases/tag/v2.12.0>`__. | ||
- `pybind11 <https://github.com/pybind/pybind11>`__ `2.13.6 <https://github.com/pybind/pybind11/releases/tag/v2.13.6>`__. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ platform: | |
- x86 | ||
environment: | ||
matrix: | ||
- PYTHON: 36 | ||
- PYTHON: 38 | ||
CONFIG: Debug | ||
install: | ||
- ps: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
docs: | ||
- any: | ||
- 'docs/**/*.rst' | ||
- '!docs/changelog.rst' | ||
- '!docs/upgrade.rst' | ||
all: | ||
- changed-files: | ||
- all-globs-to-all-files: | ||
- '!docs/changelog.rst' | ||
- '!docs/upgrade.rst' | ||
- base-branch: "^(?!dependabot).*" | ||
- base-branch: "^(?!pre-commit-ci).*" | ||
|
||
ci: | ||
- '.github/workflows/*.yml' | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- '.github/workflows/*.yml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# Add 'needs changelog` label to any change to code files as long as the `CHANGELOG` hasn't changed | ||
# Skip dependabot and pre-commit-ci PRs | ||
needs changelog: | ||
- all: | ||
- '!docs/changelog.rst' | ||
- all: | ||
- changed-files: | ||
- all-globs-to-all-files: "!docs/changelog.rst" | ||
- base-branch: "^(?!dependabot).*" | ||
- base-branch: "^(?!pre-commit-ci).*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: WASM | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- master | ||
- stable | ||
- v* | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build-wasm-emscripten: | ||
name: Pyodide wheel | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
fetch-depth: 0 | ||
|
||
- uses: pypa/cibuildwheel@v2.20 | ||
env: | ||
PYODIDE_BUILD_EXPORTS: whole_archive | ||
with: | ||
package-dir: tests | ||
only: cp312-pyodide_wasm32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.