blob: 00600f19065e727923a6c516aa7f16ee7d882b35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
==================================
Building an OSX binary for numpy
==================================
This directory contains the scripts to build a universal binary for
OSX. The binaries work on OSX 10.4 and 10.5.
The docstring in build.py may contain more current details.
Requirements
============
* bdist_mpkg v0.4.3
Build
=====
The build script will build a numpy distribution using bdist_mpkg and
create the mac package (mpkg) bundled in a disk image (dmg). To run
the build script::
python build.py
Install and test
----------------
The *install_and_test.py* script will find the numpy*.mpkg, install it
using the Mac installer and then run the numpy test suite. To run the
install and test::
python install_and_test.py
|