Skip to content

Releases: ml31415/numpy-groupies

v0.11.1

20 Apr 07:53
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.11.0...v0.11.1

v0.11.0

19 Apr 19:20
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.10.2...v0.11.0

v0.10.2

03 Oct 20:30
Compare
Choose a tag to compare
  • Bugfix for numpy implementations nancumsum

v0.10.1

22 Sep 15:34
Compare
Choose a tag to compare
  • Moved project config into pyproject.toml
  • weave implementation removed
  • python2 legacy removed

v0.9.22

09 May 14:51
Compare
Choose a tag to compare
  • Automatic pypi deployment fixed

v0.9.21

05 May 19:37
5e265ef
Compare
Choose a tag to compare

Performance improvements

What's Changed

New Contributors

Full Changelog: v0.9.20...v0.9.21

Bugfix release

07 Aug 09:07
Compare
Choose a tag to compare

Fixes some issues for argmin and argmax

v0.9.16

10 May 01:53
c119870
Compare
Choose a tag to compare
Fix custom callable reductions. (#59)

v0.9.10

23 Dec 08:38
Compare
Choose a tag to compare
  • Fixes an issue for non-default fill_values for mean/std/var.

v0.9.8.4

24 Apr 06:59
Compare
Choose a tag to compare

This version comes with a couple of new functions for the numba implementation of aggregate:

  • argmin
  • argmax
  • cumsum
  • cumprod
  • cummin
  • cummax

The numba implementation now also handles jitting of arbitrary reduce functions, though the speed is not that impressive as it might sound.

sort was modified and sped up, so that it produces a groupwise sorted array in the same size of the input, and not an array of arrays anymore. This should be the more useful mode of operation.