Skip to content

Commit 97daaeb

Browse files
authored
Bump cppinterop to 1.7.0 (#306)
* Bump cppinterop to 1.7.0
1 parent 8ab4242 commit 97daaeb

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ endif()
9191

9292
set(xeus_REQUIRED_VERSION 5.0.0)
9393
set(xeus_zmq_REQUIRED_VERSION 3.0.0)
94-
set(CppInterOp_REQUIRED_VERSION 1.5.0)
94+
set(CppInterOp_REQUIRED_VERSION 1.7.0)
9595

9696
if (NOT TARGET xeus AND NOT TARGET xeus-static)
9797
find_package(xeus ${xeus_REQUIRED_VERSION} REQUIRED)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ http://xeus-cpp.readthedocs.io
138138

139139
| `xeus-cpp` | `xeus-zmq` | `CppInterOp` | `pugixml` | `cpp-argparse`| `nlohmann_json` |
140140
|------------|-----------------|--------------|-----------|---------------|-----------------|
141-
| main | >=3.0.0,<4.0.0 | >=1.5.0 | ~1.8.1 | >=3.0,<4.0 | >=3.11.3,<4.0 |
141+
| main | >=3.0.0,<4.0.0 | >=1.7.0 | ~1.8.1 | >=3.0,<4.0 | >=3.12.0,<4.0 |
142142
| 0.6.0 | >=3.0.0,<4.0.0 | >=1.5.0 | ~1.8.1 | <3.1 | >=3.11.3,<4.0 |
143143
| 0.5.0 | >=3.0.0,<4.0.0 | >=1.3.0 | ~1.8.1 | <3.1 | >=3.11.3,<4.0 |
144144

test/test_xcpp_kernel.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ def test_codecomplete(self) -> None:
3535
reply = self.get_non_kernel_info_reply(timeout=1)
3636
assert reply is not None
3737
self.assertEqual(reply["msg_type"], "complete_reply")
38-
if platform.system() == 'Windows':
39-
self.assertEqual(str(reply["content"]["matches"]), "['fabs', 'fabsf', 'fabsl', 'float', 'foo']")
40-
else:
41-
self.assertEqual(str(reply["content"]["matches"]), "['float', 'foo']")
38+
self.assertEqual(reply["content"]["matches"], ['float', 'foo'])
4239
self.assertEqual(reply["content"]["status"], "ok")
4340

4441
# Continuation

0 commit comments

Comments
 (0)