Skip to content

Commit 476e896

Browse files
authored
fix bugs with pyexists and qt path (#34)
1 parent fe588f4 commit 476e896

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/init.jl

+1
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ function find_backend(matplotlib::Py)
124124
return (gui2matplotlib[gui], gui)
125125
end
126126
catch e
127+
@warn(e) # provide information for debugging why a gui was not found
127128
if !isjulia_display[]
128129
@warn("No working GUI backend found for matplotlib")
129130
isjulia_display[] = true

src/pygui.jl

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
# global variable to specify default GUI toolkit to use
1010
gui = :default # one of :default, :wx, :qt, :tk, or :gtk
1111

12-
pyexists(mod::AbstractString) = pyconvert(Bool, pyimport("importlib").util.find_spec(mod) != Py(nothing))
12+
# for some reason, `util` is not always imported as an attribute to `importlib`:
13+
#PythonCall.PyException(<py AttributeError("module 'importlib' has no attribute 'util'")>)
14+
pyexists(mod::AbstractString) = pyconvert(Bool, pyimport("importlib.util").find_spec(mod) != Py(nothing))
1315

1416
pygui_works(gui::Symbol) = gui == :default ||
1517
((gui == :wx && pyexists("wx")) ||
@@ -130,7 +132,9 @@ end
130132

131133
# Qt: (PyQt5, PyQt4, or PySide module)
132134
function qt_eventloop(QtCore::Py, sec::Real=50e-3)
133-
fixqtpath()
135+
# `fixqtpath()` seems to not be working,
136+
# https://github.com/JuliaPy/PythonPlot.jl/issues/17
137+
#fixqtpath()
134138
instance = QtCore.QCoreApplication.instance
135139
AllEvents = QtCore.QEventLoop.AllEvents
136140
processEvents = QtCore.QCoreApplication.processEvents

0 commit comments

Comments
 (0)