summaryrefslogtreecommitdiff
path: root/numpy/distutils/misc_util.py
Commit message (Collapse)AuthorAgeFilesLines
* 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)
* Cleanups of numpy.distutils.misc_utilcookedm2006-01-271-29/+52
| | | | Mostly covers replacing typechecks using type() with two routines: is_sequence and is_string.
* Resolve paths in add_library include_dirs..Pearu Peterson2006-01-271-1/+2
|
* Added data_files generator support - removed a piece of core.setup function.Pearu Peterson2006-01-271-3/+1
|
* Prefer xxx/setup.py file over xxx/setup_xxx.py when both exist.Pearu Peterson2006-01-261-2/+3
|
* Added simple pattern support for Configuration.add_subpackage method.Pearu Peterson2006-01-261-11/+26
|
* __config__.py files are generated through py_modules list. Added get_info ↵Pearu Peterson2006-01-241-10/+18
| | | | method to Configuration.
* Fixed dotblas for zero-size arrays.Travis Oliphant2006-01-171-0/+10
|
* Fixed name change.Pearu Peterson2006-01-051-1/+1
|
* Fixed import errors.Pearu Peterson2006-01-041-5/+5
|
* Changed all references to scipy to numpyTravis Oliphant2006-01-041-14/+14
|
* Moved scipy directory to numpyTravis Oliphant2006-01-041-0/+988