Bug in ppackage? Can't import both numpy and wx

I’m on windows 8.1, Panda3d-1.8.1.

I had this problem ([url][SOLVED] ppackage: cant import numpy]) in which I couldn’t get a p3d file with numpy to build

I also had this problem ([url][SOLVED]Can't get simple demo program to build with ppackage]) in which I couldn’t get a p3d file with wx to build.

Now I’ve solved each, but I can’t get a program with both wx and numpy to build. I cannot imagine that this is not a bug…

EDIT: Here are my files:

main.py:

import sys
import numpy
import wx

x = numpy.arange(5, 1000)
y = numpy.log10(x)

print y

sys.exit()

pdef file:

r=['panda3d']
r.append('numpy')
r.append('wx')
r.append('morepy')

class base(p3d):
    require(*r)
        
    config( 
        version='0.0.1', 
        display_name = 'base',
        platform_specific = True,
        ) 
    
    
    mainModule('main')

Could you please file this in the bug tracker?

I think its already filed: bugs.launchpad.net/panda3d/+bug/1148559

I tried it also, using 1.8.1, and the issue is either just morepy or both morepy and wx