Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. | ||||
* | Fixed typo. | Pearu Peterson | 2006-04-25 | 1 | -1/+1 |
| | |||||
* | Fix splitting a pattern on win32. | Pearu Peterson | 2006-04-24 | 1 | -1/+1 |
| | |||||
* | Fixed subpackage name when adding subpackage with setup.py script. | Pearu Peterson | 2006-04-20 | 1 | -3/+6 |
| | |||||
* | Fix bug in resolving target_dirs for data_dir patterns containing extra slashes. | Pearu Peterson | 2006-04-19 | 1 | -5/+13 |
| | |||||
* | Fix numpy ticket 53. | Pearu Peterson | 2006-04-18 | 1 | -2/+8 |
| | |||||
* | Fix version machinery and pkg information requests. | Pearu Peterson | 2006-04-04 | 1 | -18/+34 |
| | |||||
* | Fix typo. | Pearu Peterson | 2006-03-31 | 1 | -1/+1 |
| | |||||
* | Handle callable data file generators | Pearu Peterson | 2006-03-31 | 1 | -2/+4 |
| | |||||
* | Introduced configuration kw argument to setup. This fixes long lasted long ↵ | Pearu Peterson | 2006-03-31 | 1 | -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 Peterson | 2006-03-30 | 1 | -77/+180 |
| | |||||
* | Refactored Configuration._fix_paths method to gpaths, added tests and ↵ | Pearu Peterson | 2006-03-30 | 1 | -45/+65 |
| | | | | documentation. | ||||
* | Introduced standalone kw argument to add_subpackage and parent_name kw ↵ | Pearu Peterson | 2006-03-29 | 1 | -10/+31 |
| | | | | argument to get_subpackage. Fixed delegating options to subpackages when calling from Python prompt. | ||||
* | Fixed njoin for absolute paths. | Pearu Peterson | 2006-03-29 | 1 | -1/+1 |
| | |||||
* | Fixed minrelpath bug for processing '.././..', minrelpath resolves '.'s. ↵ | Pearu Peterson | 2006-03-29 | 1 | -21/+49 |
| | | | | Introduced internal caller_level kw argument to Configuration to resolve relative path problems. | ||||
* | Forcing unique names for subpackage setup.py modules. | Pearu Peterson | 2006-03-29 | 1 | -2/+2 |
| | |||||
* | Run reindent.py (script distributed with Python) over the source to remove ↵ | cookedm | 2006-03-10 | 1 | -3/+3 |
| | | | | extraneous whitespace | ||||
* | Merge trunk (r2142:2204) to power_optimization branch | cookedm | 2006-03-07 | 1 | -1/+1 |
| | |||||
* | Fixing mingw32 building: fixes undefined referece __EH_FRAME_BEGIN__ linker ↵ | Pearu Peterson | 2006-02-18 | 1 | -1/+11 |
| | | | | failure. | ||||
* | Fixed minrelpath tests for platforms where os.path.sep<>'/'. | Pearu Peterson | 2006-02-11 | 1 | -2/+0 |
| | |||||
* | Fixes to help compilation on Windows with MSVC | Travis Oliphant | 2006-02-09 | 1 | -1/+20 |
| | |||||
* | Fixed get_path bug fix. | Pearu Peterson | 2006-02-09 | 1 | -7/+10 |
| | |||||
* | Fix get_path to return correct path when module is __main__, but doesn't ↵ | cookedm | 2006-02-09 | 1 | -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 Peterson | 2006-02-08 | 1 | -12/+15 |
| | | | | extension libraries. | ||||
* | Fixed get_path to return correct path when module is __main__. Fixes calling ↵ | Pearu Peterson | 2006-02-07 | 1 | -4/+2 |
| | | | | path/to/setup.py bugs. | ||||
* | More refactoring in numpy.distutils.misc_util | cookedm | 2006-02-02 | 1 | -203/+209 |
| | |||||
* | Misc cleanups + replace `a` with %r or repr(a) | cookedm | 2006-01-31 | 1 | -17/+18 |
| | | | | | Also replace some type checks with misc_util.is_sequence or misc_util.is_string or appropiate isinstance(). | ||||
* | Improved warn messages. | Pearu Peterson | 2006-01-31 | 1 | -3/+4 |
| | |||||
* | Added options to Configuration. | Pearu Peterson | 2006-01-31 | 1 | -21/+65 |
| | |||||
* | Handle setup.py help and display requests without noise. | Pearu Peterson | 2006-01-30 | 1 | -3/+37 |
| | |||||
* | Fixed add_data_files for patterns. paths takes include_non_existing kw argument. | Pearu Peterson | 2006-01-28 | 1 | -15/+25 |
| | |||||
* | Introduced njoin and minrelpath to handle relative paths and containing ↵ | Pearu Peterson | 2006-01-28 | 1 | -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 ↵ | cookedm | 2006-01-27 | 1 | -15/+15 |
| | | | | Configuration instance (instead of recalculating each time) | ||||
* | Cleanups of numpy.distutils.misc_util | cookedm | 2006-01-27 | 1 | -29/+52 |
| | | | | Mostly covers replacing typechecks using type() with two routines: is_sequence and is_string. | ||||
* | Resolve paths in add_library include_dirs.. | Pearu Peterson | 2006-01-27 | 1 | -1/+2 |
| | |||||
* | Added data_files generator support - removed a piece of core.setup function. | Pearu Peterson | 2006-01-27 | 1 | -3/+1 |
| | |||||
* | Prefer xxx/setup.py file over xxx/setup_xxx.py when both exist. | Pearu Peterson | 2006-01-26 | 1 | -2/+3 |
| | |||||
* | Added simple pattern support for Configuration.add_subpackage method. | Pearu Peterson | 2006-01-26 | 1 | -11/+26 |
| | |||||
* | __config__.py files are generated through py_modules list. Added get_info ↵ | Pearu Peterson | 2006-01-24 | 1 | -10/+18 |
| | | | | method to Configuration. | ||||
* | Fixed dotblas for zero-size arrays. | Travis Oliphant | 2006-01-17 | 1 | -0/+10 |
| | |||||
* | Fixed name change. | Pearu Peterson | 2006-01-05 | 1 | -1/+1 |
| | |||||
* | Fixed import errors. | Pearu Peterson | 2006-01-04 | 1 | -5/+5 |
| | |||||
* | Changed all references to scipy to numpy | Travis Oliphant | 2006-01-04 | 1 | -14/+14 |
| | |||||
* | Moved scipy directory to numpy | Travis Oliphant | 2006-01-04 | 1 | -0/+988 |