summaryrefslogtreecommitdiff
path: root/numpy/distutils
Commit message (Collapse)AuthorAgeFilesLines
* BUG: core: use #if check instead of #ifdef in checking HAVE_DECL_ISFINITE ↵Pauli Virtanen2010-10-061-0/+16
| | | | | | | (ticket #1625) Python #defines HAVE_DECL_ISFINITE 0 when the function is not available, so the proper check to do is #if.
* Added Portland Group compiler support for Darwin platform (thanks to Josef ↵Pearu Peterson2010-10-062-4/+23
| | | | Koller).
* ENH: Update absoft fortran flags for v11.0.Charles Harris2010-09-251-1/+3
|
* BUG: distutils: make is_free_format et al. not choke on non-ascii Fortran filesPauli Virtanen2010-09-111-3/+5
|
* BUG: do not add empty string when interpolating values in LibraryInfo.David Cournapeau2010-09-051-1/+2
| | | | | | This adds superflous space in strings, which cause issues when executing commands outside shell control (e.g. '-I/usr/include ' will not add '/usr/include' but '/usr/include ' into the search path of compilers)
* BUG: distutils: use // in a binary search (fixes #1604 on Python 3)Pauli Virtanen2010-09-041-1/+1
|
* Implemented detection of gfortran usage for ATLAS linkage. get_atlas_version ↵Pearu Peterson2010-08-302-28/+65
| | | | returns now a tuple (version_str, info_dict). Nice thing about the patch is that specifying gnu95 compiler is not needed anymore for numpy (neither for scipy) build when using ATLAS containing gfortran compiled blas/lapack.
* Fix bug to ensure that swig generated .py files are installed.Pearu Peterson2010-08-252-1/+9
|
* 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
|
* 3K: distutils: fix __code__ object access in mingw32ccompilerPauli Virtanen2010-08-031-1/+4
|
* DOC: wiki merge, add distutils.npy_pkg_config.read_config docstring.rgommers2010-07-311-2/+40
|
* numpy.distutils: Fixed bug in Configuration._get_svn_revision. Introduced ↵Pearu Peterson2010-07-271-3/+95
| | | | make_hg_version_py method, get_version supports hg revision.
* BUG: Enable compiling Fortran code on OS X for ppc64 arch.rgommers2010-06-021-8/+8
| | | | Thanks to David Warde-Farley. Fixes #1399.
* BUG: Use correct include path when multiple copies of NumPy is installed.Stefan van der Walt2010-05-251-0/+7
|
* BUG/3K: distutils: do not assume that files output e.g. by gcc can be read ↵Pauli Virtanen2010-05-111-6/+8
| | | | in ascii codec
* Fix version matcher for cases where version string appears in second line ↵Pearu Peterson2010-03-171-0/+3
| | | | (Intel Visual Compiler, IA-32, Version 11.1)
* BUG: distutils: clean up temporary files more aggressivelyPauli Virtanen2010-03-061-1/+2
|
* ENH: Support changed distutils API in Python 2.7.Stefan van der Walt2010-02-241-1/+5
|
* DEP: Fix more files for unittest deprecated functions. It isn't clear why theseCharles Harris2010-02-211-18/+18
| | | | tests didn't issue deprecation warnings. Are they being run?
* 3K: BUG: work around bugs in Python 3.1.1 2to3 by not using fixes_reducePauli Virtanen2010-02-201-0/+3
| | | | Instead, manually import reduce where necessary.
* updated docstrings from pydoc website (thanks to everyone who contributed!)Jarrod Millman2010-02-171-5/+7
|
* BUG: Fix #1376, indentation problem.Travis Oliphant2010-02-041-2/+2
|
* BUG: Add more protection against uninitialized lists on the Distribution object.Robert Kern2010-01-291-0/+6
|
* BUG: guard against having an uninitialized list of scripts.Robert Kern2010-01-291-0/+2
|
* Apply ifort.patch from ticket #1372 to allow Intel Fortran Compiler 11.1 to ↵Travis Oliphant2010-01-242-4/+17
| | | | be called by numpy.distutils.
* fixed a whole bunch of doctestsPaul Ivanov2009-12-282-10/+10
|
* BUG: fix escaping of pkgdir on windows.David Cournapeau2009-12-121-1/+1
|
* ENH: automatically translate pkgdir in .ini file.David Cournapeau2009-12-121-0/+12
|
* BUG: fix 1087, thanks to Leek for the fix.David Cournapeau2009-12-101-16/+17
|
* 3K: distutils: remove unnecessary non-ascii characters in intel.pyPauli Virtanen2009-12-061-8/+0
|
* 3K: distutils: produce a 3K-compatible __config__.pyPauli Virtanen2009-12-061-7/+6
|
* 3K: distutils: ordering between None and str is undefined in Py3K, so ↵Pauli Virtanen2009-12-061-1/+4
| | | | fcompiler should raise CompilerNotFound when version is undefined
* 3K: encode str to bytes before writing in distutils/testsPauli Virtanen2009-12-061-2/+2
|
* 3K: distutils: there is no types.InstanceType in Py3, so don't use itPauli Virtanen2009-12-061-1/+2
|
* Py3k: handle relative import in ccompiler.David Cournapeau2009-12-031-1/+5
|
* remove has_key from config.David Cournapeau2009-12-031-2/+2
|
* Py3k: Fix comparison when version is None.David Cournapeau2009-12-031-2/+5
|
* Fix version comparison when version is None.David Cournapeau2009-12-031-1/+1
|
* BUG: fix mixed tab/space indentation.David Cournapeau2009-12-031-10/+10
|
* Py3k: make fcompiler.compaq py3k-importable.David Cournapeau2009-12-031-5/+9
|
* Py3k: make cpuinfo py3k-importable.David Cournapeau2009-12-031-22/+29
|
* Fix some more issues for ccompiler: string module obsolete.David Cournapeau2009-12-031-2/+2
|
* Fix callable in build_src command.David Cournapeau2009-12-031-3/+3
|
* Do no use has_key in misc_utils.David Cournapeau2009-12-031-2/+2
|
* BUG: fix system_info broken by py3k changes.David Cournapeau2009-12-031-4/+4
|
* Fix callable in misc_utils.David Cournapeau2009-12-031-2/+2
|
* python3 changes function object attributes names.David Cournapeau2009-12-031-2/+12
|
* Fix print statements in numpy.distutils.environmentDavid Cournapeau2009-12-031-4/+4
|
* Py3k: make fcompiler module py3k-importable.David Cournapeau2009-12-031-12/+16
|