diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6076be1..bd15a39 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,6 +21,9 @@ jobs: matrix: os: [ubuntu-latest, macos-latest] luajit: [ON, OFF] + exclude: + - os: macos-latest + luajit: ON steps: - uses: actions/checkout@v4 diff --git a/environment-dev.yml b/environment-dev.yml index 7d3d893..75022bd 100644 --- a/environment-dev.yml +++ b/environment-dev.yml @@ -7,7 +7,7 @@ dependencies: - cxx-compiler # Host dependencies - xeus-zmq>=1.3.0, <2.0 - - nlohmann_json + - nlohmann_json=3.11.2 - cppzmq - xtl>=0.7 - lua>=5.2.0 diff --git a/environment-wasm-host.yml b/environment-wasm-host.yml index 6574860..b7d014f 100644 --- a/environment-wasm-host.yml +++ b/environment-wasm-host.yml @@ -5,7 +5,7 @@ channels: dependencies: - lua - nlohmann_json - - xeus-lite + - xeus-lite <2.0 - xeus >=3.2.0,<4.0 - xtl >=0.7,<0.8 - xcanvas >=0.4,<5.0 diff --git a/include/xeus-lua/xeus_lua_config.hpp b/include/xeus-lua/xeus_lua_config.hpp index 5163093..287336b 100644 --- a/include/xeus-lua/xeus_lua_config.hpp +++ b/include/xeus-lua/xeus_lua_config.hpp @@ -13,7 +13,7 @@ // Project version #define XEUS_LUA_VERSION_MAJOR 0 #define XEUS_LUA_VERSION_MINOR 7 -#define XEUS_LUA_VERSION_PATCH 5 +#define XEUS_LUA_VERSION_PATCH 4 // Composing the version string from major, minor and patch #define XEUS_LUA_CONCATENATE(A, B) XEUS_LUA_CONCATENATE_IMPL(A, B)