Werner was saying his wx.select worked, but when I tried his method (passing True to the select call after the string) it bugged out giving me this:
I went through the code and found this line (line 273 for me) wasn't passing the True variable:
score = pkg.Score(_wxPackageInfo(ver), optionsRequired)
when changed to:
score = pkg.Score(_wxPackageInfo(ver, optionsRequired), optionsRequired)
my wxversion.select('wx-3.0.1-msw-classic', True) code started to work!
*Note my directory structure was
myProj\ThirdParty\lib\wx-3.0.1-msw-classic\wx
myProj\ThirdParty\lib\wx-3.0.1-msw-classic\doc
and myProj\ThirdParty\lib\ was already present in sys.path on calling wxversion.select.