summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix 64-bit zgeqrfv1.0.3Travis Oliphant2007-05-311-1/+1
|
* Fix-up problem with data-files in top-level package directory.Travis Oliphant2007-05-312-5/+7
|
* Add parenthesis around GETPTR macros.Travis Oliphant2007-05-271-8/+8
|
* Make 1.0.3 tag a version release.Travis Oliphant2007-05-231-1/+1
|
* Fix tab/space.Travis Oliphant2007-05-231-1/+1
|
* Fix up getlimits to work with Python2.3Travis Oliphant2007-05-231-5/+19
|
* Fix some compiler warnings.Travis Oliphant2007-05-231-2/+2
|
* Properly decrement references for _internal.py importsTravis Oliphant2007-05-234-9/+21
|
* Expose numpy.iinfo and re-implement so it supports big-endian as well.Travis Oliphant2007-05-231-25/+15
|
* Fix so that _internal.py gets imported when it is needed. Perhaps this will ↵Travis Oliphant2007-05-235-12/+37
| | | | fix the problem with multiple-interpreters not working correctly.
* Add an dummy import statement so that freeze programs pick up _internal.pTravis Oliphant2007-05-231-0/+1
|
* Remove import multiarray from top of _internal.pyTravis Oliphant2007-05-232-5/+6
|
* Add regression test for ticket #501 [patch by Andrew Straw].Stefan van der Walt2007-05-231-0/+9
|
* Re-think the byte-swapping unicode tests. They were correct to begin with. ↵Travis Oliphant2007-05-232-7/+10
| | | | Try to fix the new bug on narrow builds.
* Remove tests for inequality on unicode scalars --- not sure why they were ↵Travis Oliphant2007-05-223-15/+19
| | | | there in the first place. Fix bug in masked_array.
* Fix ticket #501 which caused some array printing problemsTravis Oliphant2007-05-221-0/+2
|
* Added most of patch from #422.Travis Oliphant2007-05-221-36/+5
|
* Add a few more checks to make sure that numpy unicode scalars report ↵Travis Oliphant2007-05-222-12/+29
| | | | correctly on narrow builds. Fix a long-standing seg-fault that arose when calling u.imag on an object with numpy.unicode_ type.
* Fix scalar inf comparison in allclose.Travis Oliphant2007-05-221-7/+8
|
* Fix array interface url.Stefan van der Walt2007-05-221-1/+1
|
* Be robust when the shared distribution object exists does not have ↵Robert Kern2007-05-221-2/+2
| | | | data_files set. This can happen when easy_install automatically builds dependencies.
* Use a more robust method for finding the directory of the setup.py file ↵Robert Kern2007-05-211-13/+18
| | | | calling Configuration(). easy_install spoofs __name__, thus confusing the old method.
* minor cleanups in numpy.distutils (style mostly)cookedm2007-05-215-71/+60
|
* Clean up and completed (hopefully) MSVC support.Pearu Peterson2007-05-193-9/+42
|
* win32: fix install when build has been carried out earlier.Pearu Peterson2007-05-191-4/+4
|
* More typo fixes.Pearu Peterson2007-05-191-3/+1
|
* Fix typo.Pearu Peterson2007-05-191-1/+1
|
* Fix atlas version detection when using MSVC compilerPearu Peterson2007-05-192-1/+39
|
* Fix fcompiler/compiler unification warning.Pearu Peterson2007-05-191-2/+6
|
* Fix for win32 platform.Pearu Peterson2007-05-191-0/+1
|
* Add descriptions to config_fc and config_cc commands.Pearu Peterson2007-05-181-1/+4
|
* Added --fcompiler,--help-fcompiler options to build command parallel to ↵Pearu Peterson2007-05-183-6/+24
| | | | --compiler,--help-compiler options.
* show less messages in --help-fcompilerPearu Peterson2007-05-181-1/+1
|
* Added --help-fcompiler option to build_ext command.Pearu Peterson2007-05-181-1/+6
|
* added config to --fcompiler option unification method. introduced config_cc ↵Pearu Peterson2007-05-184-13/+47
| | | | for unifying --compiler options.
* unify config_fc, build_clib, build_ext commands --fcompiler options so that ↵Pearu Peterson2007-05-184-11/+23
| | | | --fcompiler can be specified only once in a command line
* Fixed warnings on language changes.Pearu Peterson2007-05-182-11/+4
|
* Minor for Python 2.3 support.Pearu Peterson2007-05-181-4/+3
|
* g3 f2py: impl. compiling Fortran codes online (function ↵Pearu Peterson2007-05-189-265/+264
| | | | numpy.f2py.lib.compile), clean up testing.
* Extension modules and libraries are built with suitable compilers/linkers. ↵Pearu Peterson2007-05-182-177/+295
| | | | Improved failure handling.
* 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.
* fix typo: iteratable -> iteratorcookedm2007-05-181-1/+1
|
* Fix ticekt #511 and start to handle allclose problems.Travis Oliphant2007-05-172-9/+21
|
* Fix some bugs with isposinf and isneginf as well as with how allclose dealt ↵Travis Oliphant2007-05-172-2/+11
| | | | with infinities. See ticket #519
* Propagate changes made to umathmodule.c to fix the problem with division and ↵Travis Oliphant2007-05-171-0/+7
| | | | remainder not being consistent for negative numbers.
* Perhaps fix the problem with multiarray_module_loaded.Travis Oliphant2007-05-171-3/+4
|
* Fixed a place where unicode itemsize was being counted twice. This led to ↵Travis Oliphant2007-05-161-4/+1
| | | | array([u'abc'],'U') returning the wrong itemsize.
* Fix problem with records with object elements and add pretty-printing to ↵Travis Oliphant2007-05-152-8/+18
| | | | record objects. Remove the global _multiarray_module_loaded.
* Add stacklevel=2 to DeprecationWarning for ScipyTestCasecookedm2007-05-151-1/+1
|
* #513: fix up include of fenv.c in numarray for cygwincookedm2007-05-154-15/+11
|