Skip to content

Commit 947e87e

Browse files
Merge pull request #91 from wookayin:pybind-py311
PiperOrigin-RevId: 495906742
2 parents 5a89c91 + d6032ad commit 947e87e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
matrix:
3434
os: [windows-latest, ubuntu-latest, macos-latest]
35-
python_tag: [cp36, cp37, cp38, cp39, cp310]
35+
python_tag: [cp36, cp37, cp38, cp39, cp310, cp311]
3636
include:
3737
- os: windows-latest
3838
os_tag: win_amd64
@@ -82,7 +82,7 @@ jobs:
8282
wheel-apple_silicon:
8383
strategy:
8484
matrix:
85-
python_tag: [cp38, cp39, cp310]
85+
python_tag: [cp38, cp39, cp310, cp311]
8686
macos_arch: [arm64, universal2]
8787

8888
name: "wheel: ${{ matrix.python_tag }}-macosx_${{ matrix.macos_arch }}"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ def build_extension(self, ext):
148148
'Programming Language :: Python :: 3.8',
149149
'Programming Language :: Python :: 3.9',
150150
'Programming Language :: Python :: 3.10',
151+
'Programming Language :: Python :: 3.11',
151152
'Topic :: Scientific/Engineering :: Mathematics',
152153
'Topic :: Software Development :: Libraries',
153154
],

tree/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if(APPLE)
5151
endif()
5252

5353
# Fetch pybind to be able to use pybind11_add_module symbol.
54-
set(PYBIND_VER v2.6.2)
54+
set(PYBIND_VER v2.10.1)
5555
include(FetchContent)
5656
FetchContent_Declare(
5757
pybind11

0 commit comments

Comments
 (0)