Re: [Distutils] ImportError running 'test' on namespace package - other package in namespace not found

2008-06-30 Thread Jason R. Coombs
ggestions are always appreciated. Regards, Jason -Original Message- From: Phillip J. Eby [mailto:[EMAIL PROTECTED] Sent: Sunday, 29 June, 2008 21:21 To: Jason R. Coombs; distutils-sig@python.org Subject: Re: [Distutils] ImportError running 'test' on namespace package - other pac

Re: [Distutils] ImportError running 'test' on namespace package - other package in namespace not found

2008-06-29 Thread Phillip J. Eby
At 06:06 PM 6/29/2008 -0600, Jason R. Coombs wrote: Note, I could add a dependency from myns.projB on myns.projA, but it's not necessary for this demonstration. Then, I either setup myns.projA with either "install" or "develop" so that it's visible to the Python installation. Thereafter, if I t

Re: [Distutils] ImportError running 'test' on namespace package - other package in namespace not found

2008-06-29 Thread Jason R. Coombs
It seems that error messages are stripped... so I've uploaded the test case to here: http://www.filedropper.com/myns and below is the error message I mentioned was attached previously. Jason PS C:\Users\jaraco\projects\distutils_namespace\myns.projB> ./setup test running test running egg_info c

Re: [Distutils] ImportError running 'test' on namespace package - other package in namespace not found

2008-06-20 Thread Phillip J. Eby
At 08:07 PM 6/18/2008 -0600, Jason R. Coombs wrote: If there's not something obvious I should be doing differently, I'm happy to put together a minimal test case that reproduces the problem. Please do. Thanks! ___ Distutils-SIG maillist - Distutil

[Distutils] ImportError running 'test' on namespace package - other package in namespace not found

2008-06-18 Thread Jason R. Coombs
I've got two projects: mynamespace.myprojectA and mynamespace.myprojectB myprojectB depends on myprojectA. I'm using setuptools 0.6c8 to manage both projects. Both projects are registered using 'setup develop'. Both projects are accessible from an interactive interpreter: PS C:\Users\me\project