Skip to content

Commit

Permalink
Merge pull request #582 from brichet/feature/copy_to_globals
Browse files Browse the repository at this point in the history
Add the copy-to-globals flag in debug_info response
  • Loading branch information
JohanMabille authored Jan 9, 2024
2 parents 935ce52 + e68f987 commit 18e04f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ endif()
# ============

set(xtl_REQUIRED_VERSION 0.7.0)
set(xeus-zmq_REQUIRED_VERSION 1.0.1)
set(xeus-zmq_REQUIRED_VERSION 1.2.0)
set(xeus-lite_REQUIRED_VERSION 1.0.1)
set(pybind11_REQUIRED_VERSION 2.6.1)
set(pybind11_json_REQUIRED_VERSION 0.2.8)
Expand Down Expand Up @@ -511,7 +511,7 @@ if (XPYT_BUILD_SHARED)
endif ()

if (EMSCRIPTEN)

install(FILES
"$<TARGET_FILE_DIR:xpython>/xpython.js"
"$<TARGET_FILE_DIR:xpython>/xpython.wasm"
Expand Down
3 changes: 2 additions & 1 deletion src/xdebugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,8 @@ namespace xpyt
get_tmp_prefix(),
get_tmp_suffix(),
true,
{"Python Exceptions"});
{"Python Exceptions"},
true);
}

std::string debugger::get_cell_temporary_file(const std::string& code) const
Expand Down

0 comments on commit 18e04f9

Please sign in to comment.