Skip to content

Commit 4343060

Browse files
committed
Convert the package version to a string before sending it
This is what Jupyter expects.
1 parent 0f0fa25 commit 4343060

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/handlers.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ function kernel_info_request(socket, kernel, msg)
170170
msg_reply(msg, "kernel_info_reply",
171171
Dict("protocol_version" => "5.4",
172172
"implementation" => "ijulia",
173-
"implementation_version" => pkgversion(@__MODULE__),
173+
"implementation_version" => string(pkgversion(@__MODULE__)),
174174
"language_info" =>
175175
Dict("name" => "julia",
176176
"version" =>

0 commit comments

Comments
 (0)