mirror of https://github.com/google/benchmark.git
Add Python 3.12 support (#1676)
* Add Python 3.12 support tag * Bump nanobind to latest stable v1.6.2 tag * Add PyPI trusted publishing to GitHub workflow, add Python 3.12 wheel builds Trusted publishing has been available since v1.8.0 of the pypa-publish action. It enables password-less authentication and wheel uploads from the wheel upload job. `cibuildwheel` was bumped to v2.16.2 to allow Python 3.12 wheel builds. More info on trusted publishing: https://github.com/marketplace/actions/pypi-publish#trusted-publishing The Windows distribution was reverted to `latest` in the OS matrix, since the discovery problem of MSVC was fixed in a Bazel patch release. * Bump nanobind to stable v1.7.0 tag
This commit is contained in:
parent
6a16cee366
commit
5893034e46
|
@ -13,17 +13,18 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ ubuntu-latest, macos-latest, windows-2019 ]
|
os: [ ubuntu-latest, macos-latest, windows-latest ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: 3.11
|
python-version: 3.11
|
||||||
- name: Install GBM Python bindings on ${{ matrix.os}}
|
- name: Install GBM Python bindings on ${{ matrix.os }}
|
||||||
run:
|
run: |
|
||||||
python -m pip install wheel .
|
python -m pip install --upgrade pip setuptools wheel
|
||||||
|
python -m pip install .
|
||||||
- name: Run bindings example on ${{ matrix.os }}
|
- name: Run bindings example on ${{ matrix.os }}
|
||||||
run:
|
run:
|
||||||
python bindings/python/google_benchmark/example.py
|
python bindings/python/google_benchmark/example.py
|
||||||
|
|
|
@ -12,7 +12,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repo
|
- name: Check out repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install Python 3.11
|
- name: Install Python 3.11
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
|
@ -33,11 +33,11 @@ jobs:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-2019]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out Google Benchmark
|
- name: Check out Google Benchmark
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
|
@ -46,9 +46,9 @@ jobs:
|
||||||
platforms: all
|
platforms: all
|
||||||
|
|
||||||
- name: Build wheels on ${{ matrix.os }} using cibuildwheel
|
- name: Build wheels on ${{ matrix.os }} using cibuildwheel
|
||||||
uses: pypa/cibuildwheel@v2.14.1
|
uses: pypa/cibuildwheel@v2.16.2
|
||||||
env:
|
env:
|
||||||
CIBW_BUILD: 'cp38-* cp39-* cp310-* cp311-*'
|
CIBW_BUILD: 'cp38-* cp39-* cp310-* cp311-* cp312-*'
|
||||||
CIBW_SKIP: "*-musllinux_*"
|
CIBW_SKIP: "*-musllinux_*"
|
||||||
CIBW_TEST_SKIP: "*-macosx_arm64"
|
CIBW_TEST_SKIP: "*-macosx_arm64"
|
||||||
CIBW_ARCHS_LINUX: x86_64 aarch64
|
CIBW_ARCHS_LINUX: x86_64 aarch64
|
||||||
|
@ -67,13 +67,11 @@ jobs:
|
||||||
name: Publish google-benchmark wheels to PyPI
|
name: Publish google-benchmark wheels to PyPI
|
||||||
needs: [build_sdist, build_wheels]
|
needs: [build_sdist, build_wheels]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
id-token: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
path: dist
|
path: dist
|
||||||
|
- uses: pypa/gh-action-pypi-publish@v1.8.10
|
||||||
- uses: pypa/gh-action-pypi-publish@v1.6.4
|
|
||||||
with:
|
|
||||||
user: __token__
|
|
||||||
password: ${{ secrets.PYPI_PASSWORD }}
|
|
||||||
|
|
|
@ -48,7 +48,7 @@ def benchmark_deps():
|
||||||
new_git_repository(
|
new_git_repository(
|
||||||
name = "nanobind",
|
name = "nanobind",
|
||||||
remote = "https://github.com/wjakob/nanobind.git",
|
remote = "https://github.com/wjakob/nanobind.git",
|
||||||
tag = "v1.4.0",
|
tag = "v1.7.0",
|
||||||
build_file = "@//bindings/python:nanobind.BUILD",
|
build_file = "@//bindings/python:nanobind.BUILD",
|
||||||
recursive_init_submodules = True,
|
recursive_init_submodules = True,
|
||||||
)
|
)
|
||||||
|
|
|
@ -22,6 +22,7 @@ classifiers = [
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
"Programming Language :: Python :: 3.11",
|
"Programming Language :: Python :: 3.11",
|
||||||
|
"Programming Language :: Python :: 3.12",
|
||||||
"Topic :: Software Development :: Testing",
|
"Topic :: Software Development :: Testing",
|
||||||
"Topic :: System :: Benchmark",
|
"Topic :: System :: Benchmark",
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue