| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge pull request #15876 from panpiort8/multinomial_pvals_1d | Matti Picus | 2020-04-11 | 4 | -4/+16 |
|\ |
|
| * | Add minor tests enhancement | Pan Jan | 2020-04-06 | 2 | -2/+2 |
| * | Replace checks with direct function call | Pan Jan | 2020-04-01 | 2 | -8/+4 |
| * | Add testing and replace check | Pan Jan | 2020-04-01 | 4 | -4/+16 |
| * | BUG: add check if pvals is 1d array in numpy.random.*.multinomial | Pan Jan | 2020-03-31 | 2 | -0/+4 |
* | | Typo in the `mtrand.pyx` was fixed | Andrei Shirobokov | 2020-04-08 | 1 | -1/+1 |
* | | BUG: random: Disallow p=0 in negative_binomial | Warren Weckesser | 2020-04-05 | 2 | -3/+8 |
* | | Bug: Fix eigh mnd cholesky methods of numpy.random.multivariate_normal | Max Balandat | 2020-04-04 | 2 | -3/+26 |
|/ |
|
* | MAINT: simplify code that assumes str/unicode and int/long are different type... | Eric Wieser | 2020-03-26 | 3 | -24/+0 |
* | BUG: add missing c_distributions.pxd, enables cython use of random C-API (gh-... | Matti Picus | 2020-03-16 | 11 | -149/+244 |
* | convert shebang from python to python3 (#15687) | Changqing Li | 2020-03-04 | 2 | -2/+2 |
* | BUG: fix doctest exception messages | mattip | 2020-02-28 | 1 | -1/+1 |
* | DOC: Document caveat in random.uniform | mattip | 2020-02-15 | 1 | -2/+9 |
* | Merge pull request #15465 from mwtoews/imports | Sebastian Berg | 2020-02-07 | 1 | -2/+2 |
|\ |
|
| * | MAINT: cleanup unused imports; avoid redefinition of imports | Mike Taves | 2020-02-06 | 1 | -2/+2 |
* | | Documentation updated. | przemb | 2020-02-06 | 2 | -31/+22 |
* | | Changes suggested in review | przemb | 2020-02-05 | 3 | -16/+11 |
* | | MAINT: Large overhead in some random functions #15460 | przemb | 2020-02-05 | 3 | -59/+53 |
|/ |
|
* | DOC: Correct get_state doc | Kevin Sheppard | 2020-01-31 | 1 | -5/+7 |
* | STY,MAINT: avoid 'multiple imports on one line' (flake8 E401) | Mike Taves | 2020-01-28 | 1 | -2/+3 |
* | NEP: issue deprecation warning when creating ragged array (NEP 34) | Matti Picus | 2020-01-21 | 3 | -7/+10 |
* | MAINT: Remove unnecessary calls to PyArray_DATA from binomial functions | Alex Henrie | 2020-01-19 | 2 | -2/+0 |
* | BLD: use 0.3.7 release version, add dependency on libgfortran5 | mattip | 2020-01-17 | 2 | -2/+2 |
* | DOC: fix typos | Brian Wignall | 2020-01-14 | 1 | -1/+1 |
* | MAINT: Remove implicit inheritance from object class (#15236) | Jon Dufresne | 2020-01-05 | 8 | -37/+37 |
* | MAINT: Remove unnecessary 'from __future__ import ...' statements | Jon Dufresne | 2020-01-03 | 4 | -7/+0 |
* | MAINT: remove dead code from review | mattip | 2019-12-27 | 1 | -1/+0 |
* | MAINT: unskip test on win32 | mattip | 2019-12-27 | 2 | -3/+2 |
* | BUG: use tmp dir and check version for cython test (#15170) | Matti Picus | 2019-12-26 | 2 | -17/+28 |
* | DOC: Remove extraneous quote | Kevin Sheppard | 2019-12-23 | 1 | -1/+1 |
* | DOC: Correct documentation in choice | Kevin Sheppard | 2019-12-23 | 1 | -13/+16 |
* | DOC: Correct choice signature | Kevin Sheppard | 2019-12-20 | 1 | -1/+1 |
* | Fix typos, via a Levenshtein-style corrector | Brian Wignall | 2019-12-19 | 1 | -1/+1 |
* | MAINT: Fix randint 0d limits and other 0d cleanups (#15126) | Nico Schlömer | 2019-12-18 | 1 | -2/+1 |
* | MAINT: random: Remove a few unused imports from test files. | Warren Weckesser | 2019-12-15 | 3 | -3/+0 |
* | Revert "DEP: issue deprecation warning when creating ragged array (NEP 34)"revert-14794-nep-0034-impl | Ralf Gommers | 2019-12-06 | 3 | -10/+7 |
* | API, DOC: change names to multivariate_hypergeometric, improve docs | mattip | 2019-12-04 | 3 | -12/+12 |
* | Merge pull request #15007 from mattip/random-c-api2 | Ralf Gommers | 2019-12-03 | 4 | -89/+94 |
|\ |
|
| * | API: revert changes to standard_t, cauchy | mattip | 2019-11-30 | 2 | -6/+6 |
| * | API: rename functions in distributions.c,h | mattip | 2019-11-29 | 2 | -60/+51 |
| * | DOC, TST: refactor CFFI test, add file names to documentation | mattip | 2019-11-29 | 2 | -35/+49 |
* | | Merge pull request #14794 from mattip/nep-0034-impl | Ralf Gommers | 2019-12-02 | 3 | -7/+10 |
|\ \
| |/
|/| |
|
| * | MAINT: revert change to assert_array_equal, adjust tests | mattip | 2019-10-31 | 3 | -3/+6 |
| * | DEP: issue deprecation warning when creating ragged array (NEP 34) | mattip | 2019-10-31 | 3 | -4/+4 |
* | | Merge pull request #14954 from mattip/test-extending-cffi | Charles Harris | 2019-11-27 | 4 | -5/+97 |
|\ \ |
|
| * | | TST: skip cffi tests when PYTHONOPTIMIZE>1, pycparser fails | mattip | 2019-11-21 | 2 | -0/+12 |
| * | | API, MAINT: export symbols on MSVC, fix typos | mattip | 2019-11-21 | 1 | -3/+3 |
| * | | TST. API: test using distributions.h via cffi | mattip | 2019-11-21 | 2 | -2/+82 |
* | | | Merge pull request #14948 from mattip/document-random | Charles Harris | 2019-11-27 | 12 | -25/+315 |
|\ \ \ |
|
| * | | | DOC: update note from review | mattip | 2019-11-21 | 1 | -84/+84 |