summaryrefslogtreecommitdiff
path: root/numpy/distutils/system_info.py
Commit message (Collapse)AuthorAgeFilesLines
...
* 2to3: Apply `filter` fixes. Closes #3053.Charles Harris2013-02-281-3/+3
| | | | | Generally, this involves using list comprehension, or explicit list construction as `filter` is an iterator in Python 3.
* 2to3: Use modern exception syntax.Charles Harris2013-02-261-1/+1
| | | | Example: except ValueError,msg: -> except ValueError as msg:
* FIX: Add multiarch paths to the distutils' onesOndřej Čertík2012-12-131-0/+13
| | | | | | | | | | Thanks to Julian Taylor and Sandro Tosi from Debian for the original patch. Ralf has posted a link to the patch here: http://article.gmane.org/gmane.comp.python.numeric.general/51454 I have modified the patch to remove the bare except command only catch the OSError. Also I suppress the stderr.
* add platform specific python include directories to search pathsJulian Taylor2012-12-051-2/+8
| | | | the generic and platform specific path diverge in python3.3 in ubuntu 13.04
* Fix numpy.distutils to find atlas BLAS on UbuntuNathaniel J. Smith2012-05-201-3/+10
| | | | | | | | | | | | | As per discussion here: http://mail.scipy.org/pipermail/numpy-discussion/2012-May/062363.html numpy.distutils was failing to find BLAS on my Ubuntu 11.04 system. The problem is that _check_libs looks for libraries in several directories, and it turns out that the "atlas" library was found in both /usr/lib64/atlas-base *and* in /usr/lib64, which confused _check_libs into thinking that it couldn't be found at all. With this fix, scipy now builds against numpy master for me.
* BUG: BLD: fix OS X build issue introduced in the PEP8 cleanup in 72c6fbd.Ralf Gommers2012-03-181-4/+4
|
* BUG: BLD: add missing line in distutils/system_info.pyRalf Gommers2012-03-161-0/+1
| | | | | This was incorrectly refactored in commit 1e8e5154, causing the build to break on some systems.
* MISC: cosmetic changes to distutils/system_info, PEP8 safe.Nicolas Pinto2012-03-141-346/+446
|
* ENH: support for detecting libraries in several directories simultaneously, ↵Nicolas Pinto2012-03-141-78/+60
| | | | see http://projects.scipy.org/numpy/ticket/993
* BLD: add support for the new X11 directory structure on Ubuntu & co.Raymond Roberts2011-10-291-1/+8
|
* BLD: fix up detection of Intel CPU on OS X in system_info.py.Ralf Gommers2011-10-171-3/+5
|
* FIX: add ufsparse to the libraries search path.Fabian Pedregosa2011-08-291-0/+2
| | | | | | Fixes a build failure on macports when it detected umfpack but was unable to build the extension module. Equivalent to the '/usr/include/suitesparse' path under Debian.
* BUG: deal with shared lib extension in a single place. Fix ctypes.load_library.rgommers2011-06-231-6/+3
| | | | | This is related to PEP 3149, tags in shared library extensions. Only applies to Linux (for now). See also #1749.
* DEP: fix deprecation warning from using SafeConfigParser with Python 3.2.rgommers2011-03-021-2/+2
|
* BUG: fix up shared library extension, which changed in Python 3.2. Closes #1749.rgommers2011-03-021-1/+5
|
* Implemented detection of gfortran usage for ATLAS linkage. get_atlas_version ↵Pearu Peterson2010-08-301-25/+39
| | | | 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.
* BUG: Use correct include path when multiple copies of NumPy is installed.Stefan van der Walt2010-05-251-0/+7
|
* 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.
* fixed a whole bunch of doctestsPaul Ivanov2009-12-281-2/+2
|
* BUG: fix system_info broken by py3k changes.David Cournapeau2009-12-031-4/+4
|
* Py3k: make system_info importable from py3k.David Cournapeau2009-12-031-4/+11
|
* Fix print/repr/raise python3 incompatibilities in system_info and build_ext ↵David Cournapeau2009-12-031-1/+1
| | | | command.
* Update system_info.py for new files in Lapack 3.2.1.Pearu Peterson2009-09-301-0/+4
|
* Warn if site.cfg specifies invalid directories.Stefan van der Walt2009-05-011-1/+6
|
* Fix another bug, see last commit.Pearu Peterson2009-02-061-1/+2
|
* Fix a bug: python system_info.py failed because _pkg_config_info defined ↵Pearu Peterson2009-02-061-2/+3
| | | | section to be None.
* can't use append an int to a stringJarrod Millman2009-01-091-1/+1
|
* removed unneeded importJarrod Millman2009-01-091-2/+0
|
* switch the order [lib,lib64] --> [lib64,lib] Jarrod Millman2009-01-091-4/+4
|
* simplification suggested by stefanJarrod Millman2009-01-091-3/+4
|
* better default library paths for 64bit archJarrod Millman2009-01-091-7/+44
|
* should be more reliable way to determine what bit platformJarrod Millman2009-01-091-7/+6
|
* add default include dir for Fedora/Red Hat (see SciPy ticket 817)Jarrod Millman2009-01-011-1/+2
|
* Disable looking for 3gf libraries; it causes more problem than it solves.David Cournapeau2008-11-071-2/+3
|
* Fix typo (g3f->3gf).David Cournapeau2008-11-071-1/+1
|
* Deal with g3f extension used by Debian/Ubuntu for gfortrab ABI transition.David Cournapeau2008-11-071-0/+4
|
* In site.cfg, change DEFAULT section to ALL to accommodate building on Python ↵Stefan van der Walt2008-03-191-5/+5
| | | | 2.6.
* use 'in' keyword to test dictionary membershipJarrod Millman2007-11-281-8/+8
|
* ran reindent.py to clean up whitespaceJarrod Millman2007-10-291-2/+2
|
* Fix vectorize to work with strings. Fix where 64-bit looks for X11 ↵Travis Oliphant2007-10-181-1/+12
| | | | libraries. Fix comment.
* More fixes for building scipy with Mingw32 compilers.Pearu Peterson2007-07-251-1/+4
|
* Fixed LAPACK_SRC build for lapack-3.1.1.Pearu Peterson2007-07-201-2/+16
|
* merge from distutils-revamp branch (step 1)cookedm2007-05-251-1/+1
|\ | | | | | | | | | | - minor cleanups - find_executable returns None when no file found (instead of having to check with os.path.isfile)
| * Branch numpy.distutils to distutils-revampcookedm2006-07-061-1864/+0
| |
* | Fix atlas version detection when using MSVC compilerPearu Peterson2007-05-191-1/+1
| |
* | Using meaningful NotFoundError exception for blas_opt and lapack_opt resources.Pearu Peterson2007-05-111-0/+4
| |
* | Fix typo.Robert Kern2007-04-301-1/+1
| |
* | Add patch to system_info for building with MKL on Win32 #504Travis Oliphant2007-04-241-2/+9
| |
* | Add another place to check for configuration, namely ~/.numpy-site.cfg, to ↵Robert Kern2007-04-151-2/+4
| | | | | | | | help automatic installation where one can't edit the source checkout. I've added the alternate name to make it hidden because that's just considerate.
* | remove some remaining references to scipy. fixes #428Tim Leslie2007-01-261-1/+1
| |