* Generate repo. 1
* Provide stub for setup requirements. 2
* Make Cython stub. 4
* Use setup requires in more cases. 5
* Drop `python-coveralls` from CI requirements. 6
* Print version on Travis CI. 7
* Start testing on AppVeyor. 8
* Drop pip install on CIs. 10
* Require coverage 4.4.2. 11
* Install library on Read the Docs. 12
* Add build_ext derived command class to aid building with NumPy. 14
* Implement minmax. 15
* Use ravel. 16
* Use NumPy's type enum in `if` statements. 17
* Use `cimport cython` to get directives to work. 18
* Simplify the bool array case. 19
* Drop Python 3.5 on AppVeyor. 20
* Use C pointers in `cminmax`. 21
* Test an odd length array. 23
* Revert "Use C pointers in `cminmax`". 24
* Optimize comparisons in `cminmax`. 25
* Drop `binding` directive from `cminmax`. 26
* Stop using `memoryview`s in `cminmax`'s `for`-loop. 27
* Use `arr_ptr` for initial min and max. 28
* Drop `source` from `.coveragerc`'s `run` section. 29
* Add AppVeyor badge to the README. 30
* Match NumPy's `min`/`max` signature. 33
* Wrap `ValueError` message. 34
* Test some smaller arrays. 35