1. Oct 15, 2019
  2. Oct 09, 2019
    • Sergei Izmailov's avatar
      Adapt to python3.8 C API change (#1950) · 6cb584e9
      Sergei Izmailov authored
      * Adapt to python3.8 C API change
      
      Do `Py_DECREF(type)` on all python objects on deallocation
      
      fix #1946
      
      * Add bare python3.8 build to CI matrix
      
      While numpy/scipy wheels are available, run python3.8 test without them
      6cb584e9
  3. Oct 07, 2019
  4. Sep 22, 2019
  5. Sep 20, 2019
  6. Sep 05, 2019
  7. Aug 27, 2019
  8. Aug 23, 2019
  9. Aug 20, 2019
  10. Aug 19, 2019
  11. Aug 17, 2019
  12. Aug 16, 2019
    • Vladimír Vondruš's avatar
      Fix -Wmissing-prototypes warning on Clang. (#1863) · 5b0ea77c
      Vladimír Vondruš authored
      The -Wmissing-prototypes Clang warning (or -Wmissing-declarations on
      GCC) is very useful to avoid accidents where a function definition in a
      source file doesn't match the corresponding declaration in a header
      file, as it would warn already during compilation and not much later
      during link time.
      
      Unfortunately this means that exported functions defined only in the
      source file (usually the ones annotated with `extern "C"`) will cause
      this warning to be emitted too (on Clang, GCC has a slightly different
      behavior with -Wmissing-declarations and doesn't warn here). This fixes
      the warning by providing a declaration right before the definition.
      5b0ea77c
    • ali-beep's avatar
      5ef13eb6
  13. Aug 15, 2019
  14. Aug 14, 2019
  15. Jul 27, 2019
  16. Jul 23, 2019
  17. Jul 19, 2019
  18. Jul 18, 2019
  19. Jul 15, 2019