Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use the default terminal colour to print out INFO messages in distutils. | Stefan van der Walt | 2008-04-16 | 1 | -1/+3 |
| | | | | This prevents visibility problems on backgrounds other than black. | ||||
* | ran reindent | Jarrod Millman | 2008-02-08 | 1 | -5/+5 |
| | |||||
* | Use eval instead of dynamic import in scons_generate_config_py, so that we do | David Cournapeau | 2008-01-23 | 1 | -4/+2 |
| | | | | | not generate spurious *.pyc files. | ||||
* | Fix missing import from numscons | David Cournapeau | 2008-01-07 | 1 | -0/+1 |
| | |||||
* | Import get_configres* functions from numscons | David Cournapeau | 2008-01-06 | 1 | -0/+1 |
| | |||||
* | Add function add_configres for numpy.distutils.Configuration | David Cournapeau | 2008-01-06 | 1 | -0/+4 |
| | |||||
* | Add scons_make_config function to numpy distutils Configuration. | David Cournapeau | 2008-01-06 | 1 | -0/+6 |
| | |||||
* | Add facilities to generate config file for future sconsified modules. | David Cournapeau | 2008-01-06 | 1 | -0/+45 |
| | |||||
* | add an option to change setup filenames to numpy.distutils.Configuration | David Cournapeau | 2008-01-06 | 1 | -1/+4 |
| | |||||
* | Add the infrastructure to add SConstruct files in | David Cournapeau | 2008-01-06 | 1 | -1/+45 |
| | | | | | numpy.distutils.Configuration. | ||||
* | Get MATHLIB from numpyconfig.h, not from config.h anymore | David Cournapeau | 2007-12-22 | 1 | -2/+2 |
| | |||||
* | use 'in' keyword to test dictionary membership | Jarrod Millman | 2007-11-28 | 1 | -7/+7 |
| | |||||
* | Fix get_mathlib when path argument is None | David Cournapeau | 2007-11-13 | 1 | -1/+1 |
| | |||||
* | ran reindent.py to clean up whitespace | Jarrod Millman | 2007-10-29 | 1 | -1/+1 |
| | |||||
* | using faster string methods rather than deprecated string module | Jarrod Millman | 2007-10-29 | 1 | -3/+2 |
| | |||||
* | fixing link error: wrong gen_lib_options is being used, may be it is a ↵ | Pearu Peterson | 2007-09-23 | 1 | -1/+3 |
| | | | | import problem. | ||||
* | fix missing string import | Pearu Peterson | 2007-09-23 | 1 | -1/+1 |
| | |||||
* | backport the usage of get_build_architecture to pyhton <=2.4 | Pearu Peterson | 2007-09-22 | 1 | -5/+18 |
| | |||||
* | Fix problem with msvc_on_amd64 not working prior to Python 2.5 | Travis Oliphant | 2007-09-20 | 1 | -1/+4 |
| | |||||
* | remove debug messages. | Pearu Peterson | 2007-07-28 | 1 | -4/+2 |
| | |||||
* | msvc_on_amd64 must be applied *after* importing ccompiler module, apply ↵ | Pearu Peterson | 2007-07-27 | 1 | -2/+0 |
| | | | | quote_args also to include_dirs. | ||||
* | Added debug messages to see if quote_args are applied properly. | Pearu Peterson | 2007-07-27 | 1 | -1/+4 |
| | |||||
* | Fix type error on setting os.environ item. | Pearu Peterson | 2007-07-27 | 1 | -1/+1 |
| | |||||
* | Try to fix build on AMD64 with MSVC compiler. | Pearu Peterson | 2007-07-27 | 1 | -0/+14 |
| | |||||
* | Using own quote_args, trying to fix build failures with MSVC compiler. | Pearu Peterson | 2007-07-27 | 1 | -1/+12 |
| | |||||
* | Resolved issues in changeset 3846. | Pearu Peterson | 2007-05-31 | 1 | -1/+2 |
| | |||||
* | Undo change in 3845. | Pearu Peterson | 2007-05-31 | 1 | -1/+1 |
| | |||||
* | Fix some problems with data-files not being added in top-level and extra ↵ | Travis Oliphant | 2007-05-31 | 1 | -1/+1 |
| | | | | version information added to the name of development distributions. | ||||
* | Better temporary file handling by using one temporary directory for | cookedm | 2007-05-28 | 1 | -61/+79 |
| | | | | numpy.distutils, and removing that at exit. Replaces using tempfile.mktemp. | ||||
* | Add a numpy.distutils.log.good function, which when WARN messages would be | cookedm | 2007-05-25 | 1 | -11/+30 |
| | | | | | logged, logs a "nice" anti-warn version. Use this for finding executables to report when we do actually find one. | ||||
* | merge from distutils-revamp branch (step 1) | cookedm | 2007-05-25 | 1 | -12/+4 |
|\ | | | | | | | | | | | - minor cleanups - find_executable returns None when no file found (instead of having to check with os.path.isfile) | ||||
| * | Branch numpy.distutils to distutils-revamp | cookedm | 2006-07-06 | 1 | -1409/+0 |
| | | |||||
* | | Be robust when the shared distribution object exists does not have ↵ | Robert Kern | 2007-05-22 | 1 | -2/+2 |
| | | | | | | | | data_files set. This can happen when easy_install automatically builds dependencies. | ||||
* | | Use a more robust method for finding the directory of the setup.py file ↵ | Robert Kern | 2007-05-21 | 1 | -13/+18 |
| | | | | | | | | calling Configuration(). easy_install spoofs __name__, thus confusing the old method. | ||||
* | | Fixed warnings on language changes. | Pearu Peterson | 2007-05-18 | 1 | -10/+3 |
| | | |||||
* | | Clean up setup() calls. | Pearu Peterson | 2007-05-11 | 1 | -1/+2 |
| | | |||||
* | | Fix #491 | Robert Kern | 2007-04-04 | 1 | -24/+24 |
| | | |||||
* | | Make numpy.get_include() and numpy.get_numarray_include() not pull in ↵ | cookedm | 2007-04-01 | 1 | -8/+1 |
| | | | | | | | | numpy.distutils. | ||||
* | | add a delete flag to make_svn_version_py to allow the __svn_version.py to ↵ | Tim Leslie | 2007-03-04 | 1 | -5/+7 |
| | | | | | | | | not be deleted | ||||
* | | Whitespace cleanup. | Stefan van der Walt | 2007-01-08 | 1 | -3/+3 |
| | | |||||
* | | numpy.distutils: use language flag or source file extension to select ↵ | Pearu Peterson | 2006-10-08 | 1 | -2/+27 |
| | | | | | | | | default f77 or f90 compiler. | ||||
* | | Small code re-org in _get_svn_revision | Travis Oliphant | 2006-09-15 | 1 | -3/+4 |
| | | |||||
* | | Fix when svnversion is not present. | Travis Oliphant | 2006-09-15 | 1 | -1/+1 |
| | | |||||
* | | Fix subversion number getting for 1.4 clients. Also works for pre 1.4 clients. | Travis Oliphant | 2006-09-15 | 1 | -4/+21 |
| | | |||||
* | | Fix #114: Problems with building with MSVC and GCC under Cygwin | cookedm | 2006-07-28 | 1 | -0/+13 |
|/ | |||||
* | Add numarray configuration command. | Travis Oliphant | 2006-06-20 | 1 | -0/+4 |
| | |||||
* | Fix bad syntax in generated __config__.py files. | Robert Kern | 2006-06-19 | 1 | -1/+1 |
| | |||||
* | Use a hack to get numpy to install with easy_install (#81) | cookedm | 2006-05-16 | 1 | -0/+9 |
| | | | | | I couldn't find any other way; see the comments in the code or my discussion at #81 for why this is necessary. | ||||
* | Warning messages from numpy.distutils.misc_util.Configuration are printed in ↵ | cookedm | 2006-05-15 | 1 | -3/+3 |
| | | | | blue | ||||
* | Fixed prune file pattern - subdirectories were exluded by this bug for ↵ | Pearu Peterson | 2006-05-02 | 1 | -2/+2 |
| | | | | add_data_dir. |