~ubuntu-branches/ubuntu/raring/python-scipy/raring-proposed

« back to all changes in this revision

Viewing changes to Lib/weave/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-01-07 14:12:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070107141212-mm0ebkh5b37hcpzn
* Remove build dependency on python-numpy-dev.
* python-scipy: Depend on python-numpy instead of python-numpy-dev.
* Package builds on other archs than i386. Closes: #402783.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# weave - C/C++ integration
 
3
#
 
4
 
 
5
from info import __doc__
 
6
from weave_version import weave_version as __version__
 
7
 
 
8
try:
 
9
    from blitz_tools import blitz
 
10
except ImportError:
 
11
    pass # scipy (core) wasn't available
 
12
 
 
13
from inline_tools import inline
 
14
import ext_tools
 
15
from ext_tools import ext_module, ext_function
 
16
try:
 
17
    from accelerate_tools import accelerate
 
18
except:
 
19
    pass
 
20
 
 
21
from numpy.testing import ScipyTest
 
22
test = ScipyTest().test