Skip to content

Commit

Permalink
remove excluded build configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Aug 14, 2023
1 parent 2ed108a commit 736a2bb
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,6 @@ jobs:
matrix:
os: ['ubuntu-latest', 'windows-2022', 'macos-latest']
python: ['3.8', '3.9', '3.10', '3.11', '3.12.0-rc.1', 'pypy3.9', 'pypy3.10']
exclude:
- os: 'macos-latest'
python: 'pypy3.9'
- os: 'macos-latest'
python: 'pypy3.10'
- os: 'windows-2022'
python: '3.12.0-rc.1'

name: "Python ${{ matrix.python }} / ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
Expand Down
1 change: 1 addition & 0 deletions cmake/darwin-ld-pypy.sym
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@
-U _PyPyFloat_AS_DOUBLE
-U _PyPyFloat_AsDouble
-U _PyPyFloat_Check
-U _PyPyFloat_CheckExact
-U _PyPyFloat_FromDouble
-U _PyPyFloat_FromString
-U _PyPyFloat_Type
Expand Down
1 change: 0 additions & 1 deletion src/nb_internals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,6 @@ NB_NOINLINE void init(const char *name) {

nb_internals *p = new nb_internals();


str nb_name("nanobind");
p->nb_module = PyModule_NewObject(nb_name.ptr());

Expand Down
4 changes: 2 additions & 2 deletions tests/test_stl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,8 @@ NB_MODULE(test_stl_ext, m) {
.def_rw("movable", &ClassWithMovableField::movable);

// test67 std::vector<bool>
m.def("flip_vector_bool", [](std::vector<bool> vec) {
vec.flip();
m.def("flip_vector_bool", [](std::vector<bool> vec) {
vec.flip();
return vec;
});
}

0 comments on commit 736a2bb

Please sign in to comment.