Skip to content

Commit 8129beb

Browse files
committed
remove excluded build configurations
1 parent 2ed108a commit 8129beb

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 7 deletions
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

Lines changed: 2 additions & 0 deletions
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
@@ -557,6 +558,7 @@
557558
-U _PyPySet_Pop
558559
-U _PyPySet_Size
559560
-U _PyPySet_Type
561+
-U _PyPySlice_AdjustIndices
560562
-U _PyPySlice_GetIndices
561563
-U _PyPySlice_GetIndicesEx
562564
-U _PyPySlice_New

src/nb_internals.cpp

Lines changed: 0 additions & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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)