Skip to content

Commit 736a2bb

Browse files
committed
remove excluded build configurations
1 parent 2ed108a commit 736a2bb

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

.github/workflows/ci.yml

-7
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,6 @@ jobs:
2222
matrix:
2323
os: ['ubuntu-latest', 'windows-2022', 'macos-latest']
2424
python: ['3.8', '3.9', '3.10', '3.11', '3.12.0-rc.1', 'pypy3.9', 'pypy3.10']
25-
exclude:
26-
- os: 'macos-latest'
27-
python: 'pypy3.9'
28-
- os: 'macos-latest'
29-
python: 'pypy3.10'
30-
- os: 'windows-2022'
31-
python: '3.12.0-rc.1'
3225

3326
name: "Python ${{ matrix.python }} / ${{ matrix.os }}"
3427
runs-on: ${{ matrix.os }}

cmake/darwin-ld-pypy.sym

+1
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@
268268
-U _PyPyFloat_AS_DOUBLE
269269
-U _PyPyFloat_AsDouble
270270
-U _PyPyFloat_Check
271+
-U _PyPyFloat_CheckExact
271272
-U _PyPyFloat_FromDouble
272273
-U _PyPyFloat_FromString
273274
-U _PyPyFloat_Type

src/nb_internals.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,6 @@ NB_NOINLINE void init(const char *name) {
319319

320320
nb_internals *p = new nb_internals();
321321

322-
323322
str nb_name("nanobind");
324323
p->nb_module = PyModule_NewObject(nb_name.ptr());
325324

tests/test_stl.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -418,8 +418,8 @@ NB_MODULE(test_stl_ext, m) {
418418
.def_rw("movable", &ClassWithMovableField::movable);
419419

420420
// test67 std::vector<bool>
421-
m.def("flip_vector_bool", [](std::vector<bool> vec) {
422-
vec.flip();
421+
m.def("flip_vector_bool", [](std::vector<bool> vec) {
422+
vec.flip();
423423
return vec;
424424
});
425425
}

0 commit comments

Comments
 (0)