Skip to content

Commit

Permalink
Fixed print syntax for Python3.
Browse files Browse the repository at this point in the history
  • Loading branch information
skleinbo committed Sep 28, 2016
1 parent a1d2f97 commit b28628c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using Compat
if isa(Pkg.installed("IJulia"), VersionNumber)
using IJulia
python = strip(readline(IJulia.jupyter), ['\n',' ', '#','!'])
ipywver = readstring(`$python -c 'import ipywidgets; print ipywidgets.__version__'`) |> strip |> VersionNumber
ipywver = readstring(`$python -c 'import ipywidgets; print(ipywidgets.__version__')`) |> strip |> VersionNumber
info("ipywidgets version found: $ipywver")
if ipywver < v"5.0.0"
warn("""This version of Interact requires ipywidgets > 5.0 to work correctly.
Expand Down

0 comments on commit b28628c

Please sign in to comment.