Hi Riaan,
The start of the current PyPlot.plug-in.py file is:
···
-----------------------------------------------------
from wxPython.wx import *
import Preferences, Utils
from Companions import BaseCompanions
from PropEdit import PropertyEditors
import PaletteStore
try:
from wxPyPlot.wxPyPlot import PlotCanvas #gw mod
except ImportError:
raise Utils.SkipPlugin, 'wxPyPlot is not installed'
------------------------------------------------------------
later there is:
def writeImports(self):
return 'from wxPyPlot.wxPyPlot import PlotCanvas' #gw mod
----------------------------------------------------------------
This used to work fine for me. Although I just tried Boa without the
wxPyPlot package available and got the error that 'module' object has no
attribute SkipPlugin.
For organizational reasons I like to use subdirectories in the site-packages
rather than having a bunch of loose modules scattered there.
I agree this should be part of the wxPython package. This is on my to-do
list.
Gordon