summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/build_src.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix swig target extension when swig target is not defined by the .i file but ↵Pearu Peterson2010-08-251-3/+11
| | | | should be c++.
* Make extension swig_opts effective to build_src command.Pearu Peterson2010-08-251-2/+6
|
* Fix callable in build_src command.David Cournapeau2009-12-031-3/+3
|
* Make build_src and build_clib python3 importable.David Cournapeau2009-12-031-2/+2
|
* BUG: fix #1194.David Cournapeau2009-09-161-4/+4
|
* Do not import pyrex in distutils unless there are some pyrex source files.David Cournapeau2009-09-141-7/+9
|
* Do not finalize install_cmd if already finalized.David Cournapeau2009-08-041-1/+2
|
* BUG: fix building of npy-pkg-config file so that one can reliably get the ↵David Cournapeau2009-08-041-3/+12
| | | | install prefix from the install command,
* Add add_installed_pkg_config function, for automatic pkg-config-like ↵David Cournapeau2009-07-261-1/+68
| | | | generation/handling.
* Back out VS 2003 hack - it is too fragile.David Cournapeau2009-03-121-7/+0
|
* Ugly hack to workaround some bug in mingw to make VS 2003 work with gfortran.David Cournapeau2009-03-111-0/+7
|
* Python 3000 fixes for 2to3 [patch by James Watson].Stefan van der Walt2009-03-021-2/+5
|
* Replace numpy.distutils.exec_command.splitcmdline with shlex.split instead.cookedm2007-12-261-3/+3
| | | | | | | | It has the same problems as our old numpy.distutils.ccompiler.split_quoted. splitcmdline still exists, but uses shlex.split, and issues a DeprecationWarning This has the positive side effect of not having numpy.distutils pulled in when numpy is imported -- there was a use of splitcmdline in numpy.testing.
* use 'in' keyword to test dictionary membershipJarrod Millman2007-11-281-3/+3
|
* Refactor Pyrex source building into a separate method in build_src.pycookedm2007-11-031-25/+33
|
* ran reindent.py to clean up whitespaceJarrod Millman2007-10-291-1/+1
|
* Import Pyrex.Compiler.Main explicitly since in 0.9.5.1, it does not appear ↵Robert Kern2007-07-021-1/+1
| | | | to be imported with a plain 'import Pyrex.Compiler'
* Use log.info instead of print in setup.py'scookedm2007-05-281-2/+4
|
* distutils: clean up imports (found by running pyflakes)cookedm2007-05-251-5/+5
|
* merge from distutils-revamp branch (step 3)cookedm2007-05-251-25/+19
| | | | - minor command/build_src cleanup
* build_src: introduced --swig and other related options (as in std distutils ↵Pearu Peterson2007-05-181-51/+97
| | | | build_ext command), use --f2py-opts instead of --f2pyflags, improved error messages.
* Raise exception when pyrex is required.Pearu Peterson2007-05-111-1/+5
|
* Try harder to get swig module name when in package.Pearu Peterson2006-04-261-1/+2
|
* Adding plat_specifier to build/src directory so that multiple platforms ↵Pearu Peterson2006-04-241-1/+4
| | | | could share build directory (fixes numpy/core config.h conflict).
* Fix build_src inplace build for library sources.Pearu Peterson2006-04-191-1/+1
|
* Fix inplace building of data sources.Pearu Peterson2006-03-311-7/+7
|
* Run reindent.py (script distributed with Python) over the source to remove ↵cookedm2006-03-101-1/+1
| | | | extraneous whitespace
* Changed -M to -J for gfortran.Pearu Peterson2006-02-061-1/+1
|
* Added pyrex support to numpy.distutils.Pearu Peterson2006-02-061-0/+41
|
* Remove unused importscookedm2006-02-021-7/+2
|
* Partial fix to build failurecookedm2006-02-021-3/+3
|
* Replace type(a) is (something) with appropiate is_string/is_sequence testscookedm2006-02-011-14/+15
|
* Misc cleanups + replace `a` with %r or repr(a)cookedm2006-01-311-17/+25
| | | | | Also replace some type checks with misc_util.is_sequence or misc_util.is_string or appropiate isinstance().
* Fixing inplace support for data_files and py_modules.Pearu Peterson2006-01-311-5/+13
|
* Added data_files generator support - removed a piece of core.setup function.Pearu Peterson2006-01-271-0/+38
|
* __config__.py files are generated through py_modules list. Added get_info ↵Pearu Peterson2006-01-241-6/+31
| | | | method to Configuration.
* Changed all references to scipy to numpyTravis Oliphant2006-01-041-9/+9
|
* Moved scipy directory to numpyTravis Oliphant2006-01-041-0/+542