Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 2to3: Apply `filter` fixes. Closes #3053. | Charles Harris | 2013-02-28 | 1 | -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 Harris | 2013-02-26 | 1 | -1/+1 | |
| | | | | Example: except ValueError,msg: -> except ValueError as msg: | |||||
* | FIX: Add multiarch paths to the distutils' ones | Ondřej Čertík | 2012-12-13 | 1 | -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 paths | Julian Taylor | 2012-12-05 | 1 | -2/+8 | |
| | | | | the generic and platform specific path diverge in python3.3 in ubuntu 13.04 | |||||
* | Fix numpy.distutils to find atlas BLAS on Ubuntu | Nathaniel J. Smith | 2012-05-20 | 1 | -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 Gommers | 2012-03-18 | 1 | -4/+4 | |
| | ||||||
* | BUG: BLD: add missing line in distutils/system_info.py | Ralf Gommers | 2012-03-16 | 1 | -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 Pinto | 2012-03-14 | 1 | -346/+446 | |
| | ||||||
* | ENH: support for detecting libraries in several directories simultaneously, ↵ | Nicolas Pinto | 2012-03-14 | 1 | -78/+60 | |
| | | | | see http://projects.scipy.org/numpy/ticket/993 | |||||
* | BLD: add support for the new X11 directory structure on Ubuntu & co. | Raymond Roberts | 2011-10-29 | 1 | -1/+8 | |
| | ||||||
* | BLD: fix up detection of Intel CPU on OS X in system_info.py. | Ralf Gommers | 2011-10-17 | 1 | -3/+5 | |
| | ||||||
* | FIX: add ufsparse to the libraries search path. | Fabian Pedregosa | 2011-08-29 | 1 | -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. | rgommers | 2011-06-23 | 1 | -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. | rgommers | 2011-03-02 | 1 | -2/+2 | |
| | ||||||
* | BUG: fix up shared library extension, which changed in Python 3.2. Closes #1749. | rgommers | 2011-03-02 | 1 | -1/+5 | |
| | ||||||
* | Implemented detection of gfortran usage for ATLAS linkage. get_atlas_version ↵ | Pearu Peterson | 2010-08-30 | 1 | -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 Walt | 2010-05-25 | 1 | -0/+7 | |
| | ||||||
* | 3K: BUG: work around bugs in Python 3.1.1 2to3 by not using fixes_reduce | Pauli Virtanen | 2010-02-20 | 1 | -0/+3 | |
| | | | | Instead, manually import reduce where necessary. | |||||
* | fixed a whole bunch of doctests | Paul Ivanov | 2009-12-28 | 1 | -2/+2 | |
| | ||||||
* | BUG: fix system_info broken by py3k changes. | David Cournapeau | 2009-12-03 | 1 | -4/+4 | |
| | ||||||
* | Py3k: make system_info importable from py3k. | David Cournapeau | 2009-12-03 | 1 | -4/+11 | |
| | ||||||
* | Fix print/repr/raise python3 incompatibilities in system_info and build_ext ↵ | David Cournapeau | 2009-12-03 | 1 | -1/+1 | |
| | | | | command. | |||||
* | Update system_info.py for new files in Lapack 3.2.1. | Pearu Peterson | 2009-09-30 | 1 | -0/+4 | |
| | ||||||
* | Warn if site.cfg specifies invalid directories. | Stefan van der Walt | 2009-05-01 | 1 | -1/+6 | |
| | ||||||
* | Fix another bug, see last commit. | Pearu Peterson | 2009-02-06 | 1 | -1/+2 | |
| | ||||||
* | Fix a bug: python system_info.py failed because _pkg_config_info defined ↵ | Pearu Peterson | 2009-02-06 | 1 | -2/+3 | |
| | | | | section to be None. | |||||
* | can't use append an int to a string | Jarrod Millman | 2009-01-09 | 1 | -1/+1 | |
| | ||||||
* | removed unneeded import | Jarrod Millman | 2009-01-09 | 1 | -2/+0 | |
| | ||||||
* | switch the order [lib,lib64] --> [lib64,lib] | Jarrod Millman | 2009-01-09 | 1 | -4/+4 | |
| | ||||||
* | simplification suggested by stefan | Jarrod Millman | 2009-01-09 | 1 | -3/+4 | |
| | ||||||
* | better default library paths for 64bit arch | Jarrod Millman | 2009-01-09 | 1 | -7/+44 | |
| | ||||||
* | should be more reliable way to determine what bit platform | Jarrod Millman | 2009-01-09 | 1 | -7/+6 | |
| | ||||||
* | add default include dir for Fedora/Red Hat (see SciPy ticket 817) | Jarrod Millman | 2009-01-01 | 1 | -1/+2 | |
| | ||||||
* | Disable looking for 3gf libraries; it causes more problem than it solves. | David Cournapeau | 2008-11-07 | 1 | -2/+3 | |
| | ||||||
* | Fix typo (g3f->3gf). | David Cournapeau | 2008-11-07 | 1 | -1/+1 | |
| | ||||||
* | Deal with g3f extension used by Debian/Ubuntu for gfortrab ABI transition. | David Cournapeau | 2008-11-07 | 1 | -0/+4 | |
| | ||||||
* | In site.cfg, change DEFAULT section to ALL to accommodate building on Python ↵ | Stefan van der Walt | 2008-03-19 | 1 | -5/+5 | |
| | | | | 2.6. | |||||
* | use 'in' keyword to test dictionary membership | Jarrod Millman | 2007-11-28 | 1 | -8/+8 | |
| | ||||||
* | ran reindent.py to clean up whitespace | Jarrod Millman | 2007-10-29 | 1 | -2/+2 | |
| | ||||||
* | Fix vectorize to work with strings. Fix where 64-bit looks for X11 ↵ | Travis Oliphant | 2007-10-18 | 1 | -1/+12 | |
| | | | | libraries. Fix comment. | |||||
* | More fixes for building scipy with Mingw32 compilers. | Pearu Peterson | 2007-07-25 | 1 | -1/+4 | |
| | ||||||
* | Fixed LAPACK_SRC build for lapack-3.1.1. | Pearu Peterson | 2007-07-20 | 1 | -2/+16 | |
| | ||||||
* | merge from distutils-revamp branch (step 1) | cookedm | 2007-05-25 | 1 | -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-revamp | cookedm | 2006-07-06 | 1 | -1864/+0 | |
| | | ||||||
* | | Fix atlas version detection when using MSVC compiler | Pearu Peterson | 2007-05-19 | 1 | -1/+1 | |
| | | ||||||
* | | Using meaningful NotFoundError exception for blas_opt and lapack_opt resources. | Pearu Peterson | 2007-05-11 | 1 | -0/+4 | |
| | | ||||||
* | | Fix typo. | Robert Kern | 2007-04-30 | 1 | -1/+1 | |
| | | ||||||
* | | Add patch to system_info for building with MKL on Win32 #504 | Travis Oliphant | 2007-04-24 | 1 | -2/+9 | |
| | | ||||||
* | | Add another place to check for configuration, namely ~/.numpy-site.cfg, to ↵ | Robert Kern | 2007-04-15 | 1 | -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 #428 | Tim Leslie | 2007-01-26 | 1 | -1/+1 | |
| | |