Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | numpy.distutils: Fixed bug in Configuration._get_svn_revision. Introduced ↵ | Pearu Peterson | 2010-07-27 | 1 | -3/+95 |
| | | | | make_hg_version_py method, get_version supports hg revision. | ||||
* | BUG: distutils: clean up temporary files more aggressively | Pauli Virtanen | 2010-03-06 | 1 | -1/+2 |
| | |||||
* | updated docstrings from pydoc website (thanks to everyone who contributed!) | Jarrod Millman | 2010-02-17 | 1 | -5/+7 |
| | |||||
* | BUG: Add more protection against uninitialized lists on the Distribution object. | Robert Kern | 2010-01-29 | 1 | -0/+6 |
| | |||||
* | BUG: guard against having an uninitialized list of scripts. | Robert Kern | 2010-01-29 | 1 | -0/+2 |
| | |||||
* | fixed a whole bunch of doctests | Paul Ivanov | 2009-12-28 | 1 | -8/+8 |
| | |||||
* | 3K: distutils: produce a 3K-compatible __config__.py | Pauli Virtanen | 2009-12-06 | 1 | -7/+6 |
| | |||||
* | Do no use has_key in misc_utils. | David Cournapeau | 2009-12-03 | 1 | -2/+2 |
| | |||||
* | Fix callable in misc_utils. | David Cournapeau | 2009-12-03 | 1 | -2/+2 |
| | |||||
* | python3 changes function object attributes names. | David Cournapeau | 2009-12-03 | 1 | -2/+12 |
| | |||||
* | Py3k fix for misc_util. | David Cournapeau | 2009-12-03 | 1 | -24/+27 |
| | |||||
* | BUG: (#1221) special case mac os x in numpyconfig.h | David Cournapeau | 2009-11-27 | 1 | -3/+3 |
| | | | | | | | | | | Universal builds break the configure stage: we have to harcode the arch-specific values in the case of mac os x, as we have only one configuration stage per compile, but several arch per compile with the braindead -arch machinery. We rename the old numpyconfig.h to a private header, and numpyconfig.h itself post-fix the values in the case of mac os x. | ||||
* | BUG: import DistutilsError. | David Cournapeau | 2009-11-27 | 1 | -0/+2 |
| | |||||
* | DOC: fix wrong Example section. | David Cournapeau | 2009-11-20 | 1 | -2/+2 |
| | |||||
* | first set of checkins from the doc editor | Jarrod Millman | 2009-11-13 | 1 | -71/+172 |
| | |||||
* | Add a pkg_path option to add_sconcript. | David Cournapeau | 2009-10-01 | 1 | -3/+10 |
| | | | | | This is necessary to handle some cases where scons scripts and packages are not in the same directory. | ||||
* | Put scons data into its own class. | David Cournapeau | 2009-10-01 | 1 | -10/+14 |
| | |||||
* | Fix imports in get_pkg_info/get_info. | David Cournapeau | 2009-07-26 | 1 | -2/+2 |
| | |||||
* | Split up get_info so that we get a function which returns the LibraryInfo ↵ | David Cournapeau | 2009-07-26 | 1 | -10/+34 |
| | | | | directly - we can feed that to scons easily. | ||||
* | BUG: Fix missing return stmt in get_npy_pkg_dir. | David Cournapeau | 2009-07-26 | 1 | -0/+1 |
| | |||||
* | 'Merge' docstring and reference guide for Distribution methods documentation. | David Cournapeau | 2009-07-26 | 1 | -44/+297 |
| | |||||
* | Use automethod for the functions we added to numpy.distutils. | David Cournapeau | 2009-07-26 | 1 | -32/+50 |
| | |||||
* | Add a dirs argument to get_info to look for npy-pkg-config files in ↵ | David Cournapeau | 2009-07-26 | 1 | -6/+24 |
| | | | | additional directories. | ||||
* | Fix add_installed_library so that install_dir is actually relatively to the ↵ | David Cournapeau | 2009-07-26 | 1 | -0/+2 |
| | | | | current package. | ||||
* | Add doc for add_installed_library and add_npy_pkg_config. | David Cournapeau | 2009-07-26 | 1 | -6/+75 |
| | |||||
* | Fix returned dict by get_info so that it works with add_extension. | David Cournapeau | 2009-07-26 | 1 | -0/+6 |
| | |||||
* | Fix get_config. | David Cournapeau | 2009-07-26 | 1 | -4/+5 |
| | |||||
* | Add add_installed_pkg_config function, for automatic pkg-config-like ↵ | David Cournapeau | 2009-07-26 | 1 | -1/+12 |
| | | | | generation/handling. | ||||
* | Raise a PkgNotFound exception in get_info if the package is not found. | David Cournapeau | 2009-07-26 | 1 | -2/+9 |
| | |||||
* | Add a function get_info to replace get_npymath_info, in a more generic way. | David Cournapeau | 2009-07-26 | 1 | -10/+15 |
| | |||||
* | Fix typo in add_library. | David Cournapeau | 2009-07-26 | 1 | -1/+1 |
| | |||||
* | Support for installable libraries in numscons. | David Cournapeau | 2009-07-26 | 1 | -0/+4 |
| | | | | | | | | Numscons has been modified such as clib are now copied (using the Install builder) where numpy.distutils expect them, and a function has been added to numpy.distutils so that we can add installable libraries in setupscons.py scripts (which add the library to the NumpyDistribution instance). | ||||
* | Refactor common code between add_library and add_installed_library. | David Cournapeau | 2009-07-26 | 1 | -18/+12 |
| | |||||
* | Remove dead code. | David Cournapeau | 2009-07-26 | 1 | -4/+1 |
| | |||||
* | Add get_npymath_info function to reuse npymath outside numpy. | David Cournapeau | 2009-07-26 | 1 | -0/+16 |
| | |||||
* | Installing a clib now works. | David Cournapeau | 2009-07-26 | 1 | -5/+29 |
| | | | | | | | | Installable libraries are built exactly like conventional clib (they are added to the NumpyDistribution instance libraries member, and build_clib is not aware of the libraries/installable libraries distinction). Everything is done in the install_clib. The library cannot be used yet by external code, though. | ||||
* | Add a new function to add installed library - do nothing for now. | David Cournapeau | 2009-07-26 | 1 | -0/+8 |
| | |||||
* | BUG#1134: Fix handling of depends arg when not given in add_library. | David Cournapeau | 2009-06-09 | 1 | -0/+5 |
| | |||||
* | Move is_bootstrapping outside scons command, may be useful elsewhere. | David Cournapeau | 2009-04-21 | 1 | -0/+9 |
| | |||||
* | Remove tabs and unnecessary whitespace. | Stefan van der Walt | 2009-04-16 | 1 | -2/+2 |
| | |||||
* | Add a function to get MSVC version. | David Cournapeau | 2009-03-11 | 1 | -0/+8 |
| | |||||
* | Python 3000 fixes for 2to3 [patch by James Watson]. | Stefan van der Walt | 2009-03-02 | 1 | -3/+5 |
| | |||||
* | Do not use popen* but subprocess.Popen instead. | David Cournapeau | 2009-01-04 | 1 | -1/+5 |
| | |||||
* | ran reindent | Jarrod Millman | 2008-08-08 | 1 | -1/+1 |
| | |||||
* | Change API for pre/post hooks: they should be able to take arbitrary arguments. | David Cournapeau | 2008-07-31 | 1 | -1/+2 |
| | |||||
* | Remove add_configres function which did nothing... | David Cournapeau | 2008-07-31 | 1 | -5/+0 |
| | |||||
* | Make it possible to execute post/pre hooks in scons command even when no ↵ | David Cournapeau | 2008-07-31 | 1 | -1/+4 |
| | | | | scons script is used. | ||||
* | Handle VS 2008 in msvc_runtime_library. | David Cournapeau | 2008-07-29 | 1 | -0/+1 |
| | |||||
* | Generate headers in the right place for inplace builds. | Robert Kern | 2008-07-19 | 1 | -3/+14 |
| | |||||
* | 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. |