summaryrefslogtreecommitdiff
path: root/numpy/distutils/misc_util.py
Commit message (Collapse)AuthorAgeFilesLines
* Use the default terminal colour to print out INFO messages in distutils. Stefan van der Walt2008-04-161-1/+3
| | | | This prevents visibility problems on backgrounds other than black.
* ran reindentJarrod Millman2008-02-081-5/+5
|
* Use eval instead of dynamic import in scons_generate_config_py, so that we doDavid Cournapeau2008-01-231-4/+2
| | | | | not generate spurious *.pyc files.
* Fix missing import from numsconsDavid Cournapeau2008-01-071-0/+1
|
* Import get_configres* functions from numsconsDavid Cournapeau2008-01-061-0/+1
|
* Add function add_configres for numpy.distutils.ConfigurationDavid Cournapeau2008-01-061-0/+4
|
* Add scons_make_config function to numpy distutils Configuration.David Cournapeau2008-01-061-0/+6
|
* Add facilities to generate config file for future sconsified modules.David Cournapeau2008-01-061-0/+45
|
* add an option to change setup filenames to numpy.distutils.ConfigurationDavid Cournapeau2008-01-061-1/+4
|
* Add the infrastructure to add SConstruct files inDavid Cournapeau2008-01-061-1/+45
| | | | | numpy.distutils.Configuration.
* Get MATHLIB from numpyconfig.h, not from config.h anymoreDavid Cournapeau2007-12-221-2/+2
|
* use 'in' keyword to test dictionary membershipJarrod Millman2007-11-281-7/+7
|
* Fix get_mathlib when path argument is NoneDavid Cournapeau2007-11-131-1/+1
|
* ran reindent.py to clean up whitespaceJarrod Millman2007-10-291-1/+1
|
* using faster string methods rather than deprecated string moduleJarrod Millman2007-10-291-3/+2
|
* fixing link error: wrong gen_lib_options is being used, may be it is a ↵Pearu Peterson2007-09-231-1/+3
| | | | import problem.
* fix missing string importPearu Peterson2007-09-231-1/+1
|
* backport the usage of get_build_architecture to pyhton <=2.4Pearu Peterson2007-09-221-5/+18
|
* Fix problem with msvc_on_amd64 not working prior to Python 2.5Travis Oliphant2007-09-201-1/+4
|
* remove debug messages.Pearu Peterson2007-07-281-4/+2
|
* msvc_on_amd64 must be applied *after* importing ccompiler module, apply ↵Pearu Peterson2007-07-271-2/+0
| | | | quote_args also to include_dirs.
* Added debug messages to see if quote_args are applied properly.Pearu Peterson2007-07-271-1/+4
|
* Fix type error on setting os.environ item.Pearu Peterson2007-07-271-1/+1
|
* Try to fix build on AMD64 with MSVC compiler.Pearu Peterson2007-07-271-0/+14
|
* Using own quote_args, trying to fix build failures with MSVC compiler.Pearu Peterson2007-07-271-1/+12
|
* Resolved issues in changeset 3846.Pearu Peterson2007-05-311-1/+2
|
* Undo change in 3845.Pearu Peterson2007-05-311-1/+1
|
* Fix some problems with data-files not being added in top-level and extra ↵Travis Oliphant2007-05-311-1/+1
| | | | version information added to the name of development distributions.
* Better temporary file handling by using one temporary directory forcookedm2007-05-281-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 becookedm2007-05-251-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)cookedm2007-05-251-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-revampcookedm2006-07-061-1409/+0
| |
* | Be robust when the shared distribution object exists does not have ↵Robert Kern2007-05-221-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 Kern2007-05-211-13/+18
| | | | | | | | calling Configuration(). easy_install spoofs __name__, thus confusing the old method.
* | Fixed warnings on language changes.Pearu Peterson2007-05-181-10/+3
| |
* | Clean up setup() calls.Pearu Peterson2007-05-111-1/+2
| |
* | Fix #491Robert Kern2007-04-041-24/+24
| |
* | Make numpy.get_include() and numpy.get_numarray_include() not pull in ↵cookedm2007-04-011-8/+1
| | | | | | | | numpy.distutils.
* | add a delete flag to make_svn_version_py to allow the __svn_version.py to ↵Tim Leslie2007-03-041-5/+7
| | | | | | | | not be deleted
* | Whitespace cleanup.Stefan van der Walt2007-01-081-3/+3
| |
* | numpy.distutils: use language flag or source file extension to select ↵Pearu Peterson2006-10-081-2/+27
| | | | | | | | default f77 or f90 compiler.
* | Small code re-org in _get_svn_revisionTravis Oliphant2006-09-151-3/+4
| |
* | Fix when svnversion is not present.Travis Oliphant2006-09-151-1/+1
| |
* | Fix subversion number getting for 1.4 clients. Also works for pre 1.4 clients.Travis Oliphant2006-09-151-4/+21
| |
* | Fix #114: Problems with building with MSVC and GCC under Cygwincookedm2006-07-281-0/+13
|/
* Add numarray configuration command.Travis Oliphant2006-06-201-0/+4
|
* Fix bad syntax in generated __config__.py files.Robert Kern2006-06-191-1/+1
|
* Use a hack to get numpy to install with easy_install (#81)cookedm2006-05-161-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 ↵cookedm2006-05-151-3/+3
| | | | blue
* Fixed prune file pattern - subdirectories were exluded by this bug for ↵Pearu Peterson2006-05-021-2/+2
| | | | add_data_dir.