diff options
| author | Ralf Gommers <ralf.gommers@gmail.com> | 2021-12-28 20:49:00 +0100 |
|---|---|---|
| committer | Ralf Gommers <ralf.gommers@gmail.com> | 2021-12-28 20:51:42 +0100 |
| commit | dfe824590b29ea4fcd0f29e7176f3bf2fcfef6a2 (patch) | |
| tree | a458ba7d6389cfba86dea31221f9bc788657d8f2 | |
| parent | 48deea3f616c263e262d9147d62db5ae6c284683 (diff) | |
| download | numpy-dfe824590b29ea4fcd0f29e7176f3bf2fcfef6a2.tar.gz | |
DOC: add hypothesis test depedency in README and PyPI long-description
[ci skip]
| -rw-r--r-- | README.md | 6 | ||||
| -rwxr-xr-x | setup.py | 5 |
2 files changed, 8 insertions, 3 deletions
@@ -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, @@ -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") |
