Skip to content

Commit 85721f2

Browse files
authored
Update minimum CppInterOp due to code completion (#105)
1 parent f2d118d commit 85721f2

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ if (NOT TARGET xeus AND NOT TARGET xeus-static)
8888
find_package(xeus ${xeus_REQUIRED_VERSION} REQUIRED)
8989
endif ()
9090

91+
set(CppInterOp_REQUIRED_VERSION 1.3.0)
92+
9193
# Flags
9294
# =====
9395
include(CheckCXXCompilerFlag)
@@ -111,7 +113,7 @@ if(EMSCRIPTEN)
111113
set(EMSCRIPTEN_FEATURES "${EMSCRIPTEN_FEATURES} -s \"EXTRA_EXPORTED_RUNTIME_METHODS=[ENV']\"")
112114
endif()
113115

114-
find_package(CppInterOp REQUIRED)
116+
find_package(CppInterOp ${CppInterOp_REQUIRED_VERSION} REQUIRED)
115117
if(CppInterOp_FOUND)
116118
message(STATUS "Found CppInterOp: config=${CPPINTEROP_CONFIG} dir=${CPPINTEROP_DIR} (found version=${CPPINTEROP_VERSION} compatible with Clang ${CPPINTEROP_LLVM_VERSION_MAJOR}.x)")
117119
endif()

README.md

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

135135
| `xeus-cpp` | `xeus-zmq` | `xtl` | `CppInterOp` | `clang` | `pugixml` | `cppzmq` | `cpp-argparse`| `nlohmann_json` | `dirent` (windows only) |
136136
|------------|-----------------|-----------------|--------------|-----------|-----------|----------|---------------|-----------------|-------------------------|
137-
| main | >=1.0.0,<2.0.0 | >=0.7.7,<0.8.0 | >=1.2.0 | | ~1.8.1 | ~4.3.0 | <3.1 | >=3.11.2,<4.0 | >=2.3.2,<3 |
137+
| main | >=1.0.0,<2.0.0 | >=0.7.7,<0.8.0 | >=1.3.0 | | ~1.8.1 | ~4.3.0 | <3.1 | >=3.11.2,<4.0 | >=2.3.2,<3 |
138138
| 0.4.0 | >=1.0.0,<2.0.0 | >=0.7.7,<0.8.0 | | >=16,<17 | ~1.8.1 | ~4.3.0 | ~2.9 | >=3.6.1,<4.0 | >=2.3.2,<3 |
139139
| 0.3.0 | >=1.0.0,<2.0.0 | >=0.7.7,<0.8.0 | | >=16,<17 | ~1.8.1 | ~4.3.0 | ~2.9 | >=3.6.1,<4.0 | >=2.3.2,<3 |
140140
| 0.2.0 | >=1.0.0,<2.0.0 | >=0.7.7,<0.8.0 | | >=16,<17 | ~1.8.1 | ~4.3.0 | ~2.9 | >=3.6.1,<4.0 | >=2.3.2,<3 |

environment-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- nlohmann_json=3.11.2
1212
- cppzmq
1313
- xtl
14-
- CppInterOp
14+
- CppInterOp>=1.3.0
1515
- pugixml
1616
- cpp-argparse <3.1
1717
- zlib

environment-wasm-host.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ dependencies:
77
- xeus-lite <2.0
88
- xeus >=3.0.5,<4.0
99
- xtl >=0.7,<0.8
10-
- CppInterOp
10+
- CppInterOp>=1.3.0
1111
- cpp-argparse
1212
- pugixml

0 commit comments

Comments
 (0)