summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre de Buyl <pdebuyl@pdebuyl.be>2016-09-06 14:54:08 +0200
committerPierre de Buyl <pdebuyl@pdebuyl.be>2016-09-06 14:54:08 +0200
commit3f6672a30cd06d273e0b2160084a9abadcf9c315 (patch)
treee5f283690c21b36dcb5d9d5a4e750dfa8d11efba
parent2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681 (diff)
downloadnumpy-3f6672a30cd06d273e0b2160084a9abadcf9c315.tar.gz
DOC: change Numpy to NumPy in remaining files
the files in doc/ and numpy/ were covered in previous commits
-rw-r--r--INSTALL.rst.txt22
-rw-r--r--benchmarks/README.rst12
-rwxr-xr-xruntests.py2
-rwxr-xr-xsetup.py8
-rw-r--r--site.cfg.example8
-rw-r--r--tools/c_coverage/HOWTO_C_COVERAGE.txt8
-rw-r--r--tools/numpy-macosx-installer/art/dmgbackground.svg4
-rwxr-xr-xtools/travis-test.sh2
-rw-r--r--tools/win32build/nsis_scripts/numpy-superinstaller.nsi.in2
9 files changed, 34 insertions, 34 deletions
diff --git a/INSTALL.rst.txt b/INSTALL.rst.txt
index f4e96fc1f..426105929 100644
--- a/INSTALL.rst.txt
+++ b/INSTALL.rst.txt
@@ -1,8 +1,8 @@
Building and installing NumPy
+++++++++++++++++++++++++++++
-**IMPORTANT**: the below notes are about building Numpy, which for most users
-is *not* the recommended way to install Numpy. Instead, use either a complete
+**IMPORTANT**: the below notes are about building NumPy, which for most users
+is *not* the recommended way to install NumPy. Instead, use either a complete
scientific Python distribution (recommended) or a binary installer - see
http://scipy.org/install.html.
@@ -39,13 +39,13 @@ nose__ http://somethingaboutorange.com/mrl/projects/nose/
.. note::
- If you want to build Numpy in order to work on Numpy itself, use
+ If you want to build NumPy in order to work on NumPy itself, use
``runtests.py``. For more details, see
http://docs.scipy.org/doc/numpy-dev/dev/development_environment.html
.. note::
- More extensive information on building Numpy (and Scipy) is maintained at
+ More extensive information on building NumPy (and Scipy) is maintained at
http://scipy.org/scipylib/building/index.html
@@ -68,8 +68,8 @@ NPY_NUM_BUILD_JOBS.
Choosing compilers
==================
-Numpy needs a C compiler, and for development versions also Cython. A Fortran
-compiler isn't needed to build Numpy itself; the ``numpy.f2py`` tests will be
+NumPy needs a C compiler, and for development versions also Cython. A Fortran
+compiler isn't needed to build NumPy itself; the ``numpy.f2py`` tests will be
skipped when running the test suite if no Fortran compiler is available. For
building Scipy a Fortran compiler is needed though, so we include some details
on Fortran compilers in the rest of this section.
@@ -91,7 +91,7 @@ good `application note <https://software.intel.com/en-us/articles/numpyscipy-wit
on this.
If you want to use a free compiler toolchain, the recommended compiler is MingwPy__.
-The older MinGW32 compiler set used to produce older .exe installers for Numpy
+The older MinGW32 compiler set used to produce older .exe installers for NumPy
itself is still available at https://github.com/numpy/numpy-vendor, but not
recommended for use anymore.
@@ -103,7 +103,7 @@ Building with optimized BLAS support
Configuring which BLAS/LAPACK is used if you have multiple libraries installed,
or you have only one installed but in a non-standard location, is done via a
-``site.cfg`` file. See the ``site.cfg.example`` shipped with Numpy for more
+``site.cfg`` file. See the ``site.cfg.example`` shipped with NumPy for more
details.
Windows
@@ -117,7 +117,7 @@ For an overview of the state of BLAS/LAPACK libraries on Windows, see
OS X
----
-OS X ships the Accelerate framework, which Numpy can build against without any
+OS X ships the Accelerate framework, which NumPy can build against without any
manual configuration. Other BLAS/LAPACK implementations (OpenBLAS, Intel MKL,
ATLAS) will also work.
@@ -149,7 +149,7 @@ Or by preloading a specific BLAS library with::
Build issues
============
-If you run into build issues and need help, the Numpy
+If you run into build issues and need help, the NumPy
`mailing list <http://scipy.org/scipylib/mailing-lists.html>`_ is the best
-place to ask. If the issue is clearly a bug in Numpy, please file an issue (or
+place to ask. If the issue is clearly a bug in NumPy, please file an issue (or
even better, a pull request) at https://github.com/numpy/numpy.
diff --git a/benchmarks/README.rst b/benchmarks/README.rst
index c03d42ece..2ed5d150f 100644
--- a/benchmarks/README.rst
+++ b/benchmarks/README.rst
@@ -4,7 +4,7 @@
NumPy benchmarks
================
-Benchmarking Numpy with Airspeed Velocity.
+Benchmarking NumPy with Airspeed Velocity.
Usage
@@ -12,11 +12,11 @@ Usage
Airspeed Velocity manages building and Python virtualenvs by itself,
unless told otherwise. Some of the benchmarking features in
-``runtests.py`` also tell ASV to use the Numpy compiled by
+``runtests.py`` also tell ASV to use the NumPy compiled by
``runtests.py``. To run the benchmarks, you do not need to install a
-development version of Numpy to your current Python environment.
+development version of NumPy to your current Python environment.
-Run a benchmark against currently checked out Numpy version (don't
+Run a benchmark against currently checked out NumPy version (don't
record the result)::
python runtests.py --bench bench_core
@@ -46,9 +46,9 @@ See `ASV documentation`_ for basics on how to write benchmarks.
Some things to consider:
-- The benchmark suite should be importable with any Numpy version.
+- The benchmark suite should be importable with any NumPy version.
-- The benchmark parameters etc. should not depend on which Numpy version
+- The benchmark parameters etc. should not depend on which NumPy version
is installed.
- Try to keep the runtime of the benchmark reasonable.
diff --git a/runtests.py b/runtests.py
index 7be76e46d..0fc441293 100755
--- a/runtests.py
+++ b/runtests.py
@@ -28,7 +28,7 @@ Generate C code coverage listing under build/lcov/:
from __future__ import division, print_function
#
-# This is a generic test runner script for projects using Numpy's test
+# This is a generic test runner script for projects using NumPy's test
# framework. Change the following values to adapt to your project:
#
diff --git a/setup.py b/setup.py
index 664992451..7f2b24572 100755
--- a/setup.py
+++ b/setup.py
@@ -255,18 +255,18 @@ def parse_setuppy_commands():
- `pip install .` (from a git repo or downloaded source
release)
- - `pip install numpy` (last Numpy release on PyPi)
+ - `pip install numpy` (last NumPy release on PyPi)
"""))
return True
if '--help' in sys.argv[1:] or '-h' in sys.argv[1]:
print(textwrap.dedent("""
- Numpy-specific help
+ NumPy-specific help
-------------------
- To install Numpy from here with reliable uninstall, we recommend
- that you use `pip install .`. To install the latest Numpy release
+ To install NumPy from here with reliable uninstall, we recommend
+ that you use `pip install .`. To install the latest NumPy release
from PyPi, use `pip install numpy`.
For help with build/installation issues, please ask on the
diff --git a/site.cfg.example b/site.cfg.example
index 05b49e507..8e043cfb3 100644
--- a/site.cfg.example
+++ b/site.cfg.example
@@ -90,7 +90,7 @@
# Atlas
# -----
# Atlas is an open source optimized implementation of the BLAS and Lapack
-# routines. Numpy will try to build against Atlas by default when available in
+# routines. NumPy will try to build against Atlas by default when available in
# the system library dirs. To build numpy against a custom installation of
# Atlas you can add an explicit section such as the following. Here we assume
# that Atlas was configured with ``prefix=/opt/atlas``.
@@ -135,14 +135,14 @@
# ----
# BLIS (https://github.com/flame/blis) also provides a BLAS interface. It's a
# relatively new library, its performance in some cases seems to match that of
-# MKL and OpenBLAS, but it hasn't been benchmarked with Numpy or Scipy yet.
+# MKL and OpenBLAS, but it hasn't been benchmarked with NumPy or Scipy yet.
#
# Notes on compiling BLIS itself:
-# - the CBLAS interface (needed by Numpy) isn't built by default; define
+# - the CBLAS interface (needed by NumPy) isn't built by default; define
# BLIS_ENABLE_CBLAS to build it.
# - ``./configure auto`` doesn't support 32-bit builds, see gh-7294 for
# details.
-# Notes on compiling Numpy against BLIS:
+# Notes on compiling NumPy against BLIS:
# - ``include_dirs`` below should be the directory where the BLIS cblas.h
# header is installed.
#
diff --git a/tools/c_coverage/HOWTO_C_COVERAGE.txt b/tools/c_coverage/HOWTO_C_COVERAGE.txt
index 320d9b0de..8822dd715 100644
--- a/tools/c_coverage/HOWTO_C_COVERAGE.txt
+++ b/tools/c_coverage/HOWTO_C_COVERAGE.txt
@@ -27,7 +27,7 @@ For most cases, it is good enough to do::
> c_coverage_collect.sh python -c "import numpy; numpy.test()"
> c_coverage_report.py callgrind.out.pid
-which will run all of the Numpy unit tests, create a directory called
+which will run all of the NumPy unit tests, create a directory called
`coverage` and place the coverage results there.
In a more advanced scenario, you may wish to run individual unit tests
@@ -41,7 +41,7 @@ To collect coverage results, you merely run the python interpreter
under valgrind's callgrind tool. The `c_coverage_collect.sh` helper
script will pass all of the required arguments to valgrind.
-For example, in typical usage, you may want to run all of the Numpy
+For example, in typical usage, you may want to run all of the NumPy
unit tests::
> c_coverage_collect.sh python -c "import numpy; numpy.test()"
@@ -99,7 +99,7 @@ HTML reports
The HTML report highlights the code that was run in green.
The HTML report has special support for the "generated" functions in
-Numpy. Each run line of code also contains a number in square
+NumPy. Each run line of code also contains a number in square
brackets indicating the number of different generated functions the
line was run in. Hovering the mouse over the line will display a list
of the versions of the function in which the line was run. These
@@ -112,6 +112,6 @@ Caveats
The coverage results occasionally misses lines that clearly must have
been run. This usually can be traced back to the compiler optimizer
removing lines because they are tautologically impossible or to
-combine lines together. Compiling Numpy without optimizations helps,
+combine lines together. Compiling NumPy without optimizations helps,
but not completely. Even despite this flaw, this tool is still
helpful in identifying large missed blocks or functions.
diff --git a/tools/numpy-macosx-installer/art/dmgbackground.svg b/tools/numpy-macosx-installer/art/dmgbackground.svg
index 308de1150..ea092d78b 100644
--- a/tools/numpy-macosx-installer/art/dmgbackground.svg
+++ b/tools/numpy-macosx-installer/art/dmgbackground.svg
@@ -11649,7 +11649,7 @@ vU/54W6oo0GROeM/veMNBRRE7rWB9Q4H8mdDTv+nwe+evyS3TH57xxtzjOZOx9uueWP+5o735/+U
id="tspan7191"
x="223.51202"
y="46.072498"
- style="font-size:28.66733551px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;font-family:Utopia;-inkscape-font-specification:Utopia">Numpy</tspan></text>
+ style="font-size:28.66733551px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;font-family:Utopia;-inkscape-font-specification:Utopia">NumPy</tspan></text>
@@ -11737,4 +11737,4 @@ vU/54W6oo0GROeM/veMNBRRE7rWB9Q4H8mdDTv+nwe+evyS3TH57xxtzjOZOx9uueWP+5o735/+U
id="tspan2431" /></text>
-</svg> \ No newline at end of file
+</svg>
diff --git a/tools/travis-test.sh b/tools/travis-test.sh
index be9830e6e..be841c8fa 100755
--- a/tools/travis-test.sh
+++ b/tools/travis-test.sh
@@ -71,7 +71,7 @@ setup_chroot()
# linux32 python setup.py build
# when travis updates to ubuntu 14.04
#
- # Numpy may not distinguish between 64 and 32 bit ATLAS in the
+ # NumPy may not distinguish between 64 and 32 bit ATLAS in the
# configuration stage.
DIR=$1
set -u
diff --git a/tools/win32build/nsis_scripts/numpy-superinstaller.nsi.in b/tools/win32build/nsis_scripts/numpy-superinstaller.nsi.in
index add0ec698..4086df735 100644
--- a/tools/win32build/nsis_scripts/numpy-superinstaller.nsi.in
+++ b/tools/win32build/nsis_scripts/numpy-superinstaller.nsi.in
@@ -15,7 +15,7 @@ SetCompressor /Solid LZMA ; Useful to disable compression under development
;General
;Name and file
-Name "Numpy super installer"
+Name "NumPy super installer"
OutFile "@NUMPY_INSTALLER_NAME@"
;Default installation folder