diff options
author | Nick Papior Andersen <nickpapior@gmail.com> | 2015-02-25 09:10:59 +0000 |
---|---|---|
committer | Nick Papior Andersen <nickpapior@gmail.com> | 2015-02-25 09:10:59 +0000 |
commit | f91796046592ff876b74db14544adaab21e31f93 (patch) | |
tree | e1655725a31dccd680f0b159b73ea5c2894611d3 /doc | |
parent | 43fb77f85726a380aefa8cf8e82625384b928d5a (diff) | |
download | numpy-f91796046592ff876b74db14544adaab21e31f93.tar.gz |
BUG: PEP corrections and streamlined with numpy dev line
Changed self.assert* to assert_ instances through numpys
own testing utilities.
Fixes for the rst document.
Removed unnecessary import statements in the test.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.10.0-notes.rst | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst index c0645cfe2..d8bdf22ef 100644 --- a/doc/release/1.10.0-notes.rst +++ b/doc/release/1.10.0-notes.rst @@ -82,11 +82,13 @@ Reading extra flags from site.cfg Previously customization of compilation of dependency libraries and numpy itself was only accomblishable via code changes in the distutils package. Now numpy.distutils reads in the following extra flags from each group of the -site.cfg: - runtime_library_dirs (sets the runtime library directories to override - LD_LIBRARY_PATH) - extra_compile_args (add extra flags to the compilation of sources) - extra_link_args (add extra flags when linking libraries) +*site.cfg*: + +* ``runtime_library_dirs``, sets runtime library directories to override + ``LD_LIBRARY_PATH`` +* ``extra_compile_args``, add extra flags to the compilation of sources +* ``extra_link_args``, add extra flags when linking libraries + This should, at least partially, complete user customization. *np.cbrt* to compute cube root for real floats |