summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2021-12-28 20:49:00 +0100
committerRalf Gommers <ralf.gommers@gmail.com>2021-12-28 20:51:42 +0100
commitdfe824590b29ea4fcd0f29e7176f3bf2fcfef6a2 (patch)
treea458ba7d6389cfba86dea31221f9bc788657d8f2
parent48deea3f616c263e262d9147d62db5ae6c284683 (diff)
downloadnumpy-dfe824590b29ea4fcd0f29e7176f3bf2fcfef6a2.tar.gz
DOC: add hypothesis test depedency in README and PyPI long-description
[ci skip]
-rw-r--r--README.md6
-rwxr-xr-xsetup.py5
2 files changed, 8 insertions, 3 deletions
diff --git a/README.md b/README.md
index 04825dc5d..fd3d15272 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ It provides:
Testing:
-NumPy requires `pytest`. Tests can then be run after installation with:
+NumPy requires `pytest` and `hypothesis`. Tests can then be run after installation with:
python -c 'import numpy; numpy.test()'
@@ -57,7 +57,7 @@ may be a good starting point. If you are considering larger contributions
to the source code, please contact us through the [mailing
list](https://mail.python.org/mailman/listinfo/numpy-discussion) first.
-Writing code isn’t the only way to contribute to NumPy. You can also:
+Writing code isn’t the only way to contribute to NumPy. You can also:
- review pull requests
- triage issues
- develop tutorials, presentations, and other educational materials
@@ -77,7 +77,7 @@ numpy-team@googlegroups.com or on Slack (write numpy-team@googlegroups.com for
an invitation).
We also have a biweekly community call, details of which are announced on the
-mailing list. You are very welcome to join.
+mailing list. You are very welcome to join.
If you are new to contributing to open source, [this
guide](https://opensource.guide/how-to-contribute/) helps explain why, what,
diff --git a/setup.py b/setup.py
index 703fe79e1..6e62b0f65 100755
--- a/setup.py
+++ b/setup.py
@@ -16,6 +16,11 @@ variety of databases.
All NumPy wheels distributed on PyPI are BSD licensed.
+NumPy requires ``pytest`` and ``hypothesis``. Tests can then be run after
+installation with::
+
+ python -c 'import numpy; numpy.test()'
+
"""
DOCLINES = (__doc__ or '').split("\n")