summaryrefslogtreecommitdiff
path: root/numpy/distutils/misc_util.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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.
* Fixed typo.Pearu Peterson2006-04-251-1/+1
|
* Fix splitting a pattern on win32.Pearu Peterson2006-04-241-1/+1
|
* Fixed subpackage name when adding subpackage with setup.py script.Pearu Peterson2006-04-201-3/+6
|
* Fix bug in resolving target_dirs for data_dir patterns containing extra slashes.Pearu Peterson2006-04-191-5/+13
|
* Fix numpy ticket 53.Pearu Peterson2006-04-181-2/+8
|
* Fix version machinery and pkg information requests.Pearu Peterson2006-04-041-18/+34
|
* Fix typo.Pearu Peterson2006-03-311-1/+1
|
* Handle callable data file generatorsPearu Peterson2006-03-311-2/+4
|
* Introduced configuration kw argument to setup. This fixes long lasted long ↵Pearu Peterson2006-03-311-44/+0
| | | | configuration messages when setup command line has only help request or errors.
* Reimplemented add_data_dir and add_data_files methods to fix ambiguities.Pearu Peterson2006-03-301-77/+180
|
* Refactored Configuration._fix_paths method to gpaths, added tests and ↵Pearu Peterson2006-03-301-45/+65
| | | | documentation.
* Introduced standalone kw argument to add_subpackage and parent_name kw ↵Pearu Peterson2006-03-291-10/+31
| | | | argument to get_subpackage. Fixed delegating options to subpackages when calling from Python prompt.
* Fixed njoin for absolute paths.Pearu Peterson2006-03-291-1/+1
|
* Fixed minrelpath bug for processing '.././..', minrelpath resolves '.'s. ↵Pearu Peterson2006-03-291-21/+49
| | | | Introduced internal caller_level kw argument to Configuration to resolve relative path problems.
* Forcing unique names for subpackage setup.py modules.Pearu Peterson2006-03-291-2/+2
|
* Run reindent.py (script distributed with Python) over the source to remove ↵cookedm2006-03-101-3/+3
| | | | extraneous whitespace
* Merge trunk (r2142:2204) to power_optimization branchcookedm2006-03-071-1/+1
|
* Fixing mingw32 building: fixes undefined referece __EH_FRAME_BEGIN__ linker ↵Pearu Peterson2006-02-181-1/+11
| | | | failure.
* Fixed minrelpath tests for platforms where os.path.sep<>'/'.Pearu Peterson2006-02-111-2/+0
|
* Fixes to help compilation on Windows with MSVCTravis Oliphant2006-02-091-1/+20
|
* Fixed get_path bug fix.Pearu Peterson2006-02-091-7/+10
|
* Fix get_path to return correct path when module is __main__, but doesn't ↵cookedm2006-02-091-1/+5
| | | | | | have a __file__ attribute. This could happen if called as execfile("setup.py") when building eggs.
* Refactored path fixing code to _fix_paths_dict. Apply path fixing to ↵Pearu Peterson2006-02-081-12/+15
| | | | extension libraries.
* Fixed get_path to return correct path when module is __main__. Fixes calling ↵Pearu Peterson2006-02-071-4/+2
| | | | path/to/setup.py bugs.
* More refactoring in numpy.distutils.misc_utilcookedm2006-02-021-203/+209
|
* Misc cleanups + replace `a` with %r or repr(a)cookedm2006-01-311-17/+18
| | | | | Also replace some type checks with misc_util.is_sequence or misc_util.is_string or appropiate isinstance().
* Improved warn messages.Pearu Peterson2006-01-311-3/+4
|
* Added options to Configuration.Pearu Peterson2006-01-311-21/+65
|
* Handle setup.py help and display requests without noise.Pearu Peterson2006-01-301-3/+37
|
* Fixed add_data_files for patterns. paths takes include_non_existing kw argument.Pearu Peterson2006-01-281-15/+25
|
* Introduced njoin and minrelpath to handle relative paths and containing ↵Pearu Peterson2006-01-281-25/+83
| | | | slashes in an OS independent way. Fixed a __svn_version__ installation bug.
* Store the relative path inside the installed package as part of the ↵cookedm2006-01-271-15/+15
| | | | Configuration instance (instead of recalculating each time)