Bugs item #523660, was opened at 2002-02-27 18:04
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=105988&aid=523660&group_id=5988
Category: None
Group: None
>Status: Closed
>Resolution: Out of Date
Priority: 5
Submitted By: Daniel Holth (joeforker)
Assigned to: Nobody/Anonymous (nobody)
Summary: BUG in setup/dist.py
Initial Comment:
try:
import Numeric
include_dirs =
find_file(get_python_inc(), 'arrayobject.h')
if not len(include_dirs):
self.announce("Successfully imported Numeric, but can't
find the Numeric headers!")
### LINE 99:
self.NUMERIC = 0
else:
self.include_dirs =
self.include_dirs + include_dirs
self.HAS_NUMERIC = 1
except ImportError:
self.HAS_NUMERIC = 0
### Change line 99 to: self.HAS_NUMERIC = 1
----------------------------------------------------------------------
>Comment By: Tarn Weisner Burton (twburton)
Date: 2002-02-27 20:02
Message:
Logged In: YES
user_id=21784
Was already fixed in CVS
----------------------------------------------------------------------
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=105988&aid=523660&group_id=5988
|