NumPy 1.19.0 release
  1. 0e58c3c MNT: support python 3.10 by Thomas A Caswell · 5 years ago
  2. a51ac26 Mark tests as a subpackage rather than data. by Hameer Abbasi · 5 years ago
  3. 1c58504 MAINT: simplify code that assumes str/unicode and int/long are different types (#15816) by Eric Wieser · 5 years ago
  4. 5ff70eb Merge pull request #15781 from dcaliste/public by Matti Picus · 5 years ago
  5. 0198fcf BUG: don't add 'public' or 'private' if the other one exists by Damien Caliste · 5 years ago
  6. b6e5569 md5 module is deprecated since python 2.5 by Roman Yurchak · 5 years ago
  7. 965b41d BUG, TST: fix f2py for PyPy, skip one test for PyPy (#15750) by Matti Picus · 5 years ago
  8. 6846925 MAINT: remove useless `global` statements by Eric Wieser · 5 years ago
  9. 105e175 Merge pull request #15706 from melissawm/f2py-typos-fix by Charles Harris · 5 years ago
  10. 738d985 Fixing typos in f2py comments and code. by Melissa Weber Mendonca · 5 years ago
  11. 583901a convert shebang from python to python3 (#15687) by Changqing Li · 5 years ago
  12. 07bf33f MAINT: cleanup unused imports; avoid redefinition of imports by Mike Taves · 6 years ago
  13. 6dbfbc5 MAINT: Use `.identifier = val` to fill type structs by Sebastian Berg · 6 years ago
  14. 96727cf MAINT: Remove sys.version checks (gh-#15373) by Seth Troisi · 6 years ago
  15. 31e53bf MAINT: Revert f2py Python 2.6 workaround (gh-15415) by Seth Troisi · 6 years ago
  16. b4e3a42 MAINT: Replace basestring with str. by Charles Harris · 6 years ago
  17. b541082 STY: use `with open` when possible by Seth Troisi · 6 years ago
  18. 1427484 MAINT: Remove sys.version checks in tests by Seth Troisi · 6 years ago
  19. e292143 BUG: Use PyDict_GetItemWithError() instead of PyDict_GetItem() by Eric Wieser · 6 years ago
  20. 9748fd8 Update numpy/f2py/crackfortran.py by Eric Wieser · 6 years ago
  21. c8bdb9c MAINT: Eliminate some calls to `eval` by Eric Wieser · 6 years ago
  22. 9de7170 MAINT: C code simplification by Seth Troisi · 6 years ago
  23. 5668a79 MAINT: Cleaning up more PY_VERSION_HEX by Seth Troisi · 6 years ago
  24. c2501e4 MAINT: Improve const-correctness of shapes and strides by Eric Wieser · 6 years ago
  25. c31cc36 MAINT: Remove implicit inheritance from object class (#15236) by Jon Dufresne · 6 years ago
  26. c1f1bc9 Merge pull request #15232 from sethtroisi/remove_python3_part3 by Matti Picus · 6 years ago
  27. b7c27bd Merge pull request #14376 from jdufresne/future by Sebastian Berg · 6 years ago
  28. 24189be Cleaning up PY_MAJOR_VERSION/PY_VERSION_HEX by Seth Troisi · 6 years ago
  29. e1aecb0 MAINT: Remove Python2 specific C module setup (gh-15231) by Seth Troisi · 6 years ago
  30. ed1e965 MAINT: Remove unnecessary 'from __future__ import ...' statements by Jon Dufresne · 6 years ago
  31. 0c2a5eb Fix typos, via a Levenshtein-style corrector by Brian Wignall · 6 years ago
  32. 66b17db TST: f2py: fix race condition in f2py test _get_compiler_status by Pauli Virtanen · 6 years ago
  33. 5a4f62b ENH: f2py: add --f2cmap option for specifying the name of .f2py_f2cmap by Pauli Virtanen · 6 years ago
  34. c010145 Merge pull request #15035 from mattip/issue-14625 by Sebastian Berg · 6 years ago
  35. f6ab00e MAINT: fixes from review by mattip · 6 years ago
  36. 6060857 DOC: fix outstanding typo in NumPy version by mattip · 6 years ago
  37. 522e624 BUG: add endfunction, endsubroutine to valid fortran end words by mattip · 6 years ago
  38. 3c6bbd7 ENH: Chain exceptions when converting python objects to fortran by Eric Wieser · 6 years ago
  39. 6fa0ff8 ENH: Show the incorrect type in the fortran error message by Eric Wieser · 6 years ago
  40. 908b601 Merge pull request #12633 from seberg/f2py-refcnt by Matti Picus · 6 years ago
  41. 7f1293f MAINT: Avoid all BytesWarning by Jon Dufresne · 6 years ago
  42. 7960ede MAINT: remove unused numpy/f2py/info.py file by Ralf Gommers · 6 years ago
  43. c091779 BUG: Further, followup f2py reference count fixes by Sebastian Berg · 6 years ago
  44. 684bee2 BUG: General fixes to f2py reference counts (dereferencing) by Sebastian Berg · 6 years ago
  45. 4ada064 BUG: Fix leak in the f2py-generated module init and `PyMem_Del` usage by Sergei Lebedev · 6 years ago
  46. 3bfdd31 DOC: update or remove outdated sourceforge links by mattip · 6 years ago
  47. 2bffd40 Doc: Use `pip install .` where possible instead of calling setup.py by Matthias Bussonnier · 6 years ago
  48. 798dce7 Merge pull request #13499 from Bharat123rox/file-closing by Eric Wieser · 6 years ago
  49. 802d8e5 Add code review suggestions from @eric-wieser by Bharat123rox · 6 years ago
  50. dcb2ecf Fixed possible regressions by Bharat123rox · 6 years ago
  51. 3802569 Use with statement to open/close files to fix LGTM alerts by Bharat123rox · 6 years ago
  52. 76b83a7 BUG: blindly add TypeError to accepted exceptions by mattip · 6 years ago
  53. e67f8c7 TEST: update for PyPy by mattip · 6 years ago
  54. 1f3a43d MAINT: Use textwrap.dedent in f2py tests by Eric Wieser · 6 years ago
  55. 8fdacfc MAINT: f2py: Add a cast to avoid a compiler warning. by Warren Weckesser · 6 years ago
  56. 8b7f717 BUG: ppc and riscv don't use REAL(10) by Andreas Schwab · 6 years ago
  57. c9c154f BUG: Fix testing of f2py.compile from strings. by Charles Harris · 7 years ago
  58. 568d0f7 Merge pull request #12807 from mattip/f2py-source-bytes by Charles Harris · 7 years ago
  59. d26842f BUG, DOC: test, fix that f2py.compile accepts str and bytes, rework docs by mattip · 7 years ago
  60. 4ff8fd5 BUG: Add 'sparc' to platforms implementing 16 byte reals. by Charles Harris · 7 years ago
  61. 1e29643 BUG: fix f2py pep338 execution method by Julian Taylor · 7 years ago
  62. 45cef38 MAINT: Review F401,F841,F842 flake8 errors (unused variables and imports) (#12448) by Roman Yurchak · 7 years ago
  63. 0ee245b MAINT: Use list and dict comprehension when possible (#12445) by Roman Yurchak · 7 years ago
  64. 1e1b45c MAINT, TST: check for unreachable code paths by Tyler Reddy · 7 years ago
  65. 4e98265 MAINT: removed unused vars in f2py test code by Tyler Reddy · 7 years ago
  66. 7c98513 TST, MAINT: Skip some f2py tests on Mac. by Charles Harris · 7 years ago
  67. e07b0fc MAINT: remove unused stdlib imports by Emil Hessman · 7 years ago
  68. 9da665c MAINT: don't call function with too many arguments by Emil Hessman · 7 years ago
  69. fd053f6 TST: add macos azure testing to CI. by Tyler Reddy · 7 years ago
  70. 46083ff MAINT: remove duplicate imports by mattip · 7 years ago
  71. ed9fa73 Merge pull request #11894 from QuLogic/f2py-test-parametrize by Charles Harris · 7 years ago
  72. 25f06a6 Merge pull request #12014 from tylerjereddy/issue_12013_pytest_skip by Charles Harris · 7 years ago
  73. 1b14317 BUG: Fix missing pytest import. by Charles Harris · 7 years ago
  74. d549a15 BUG: Fix f2py test_compile_function.py tests. by Charles Harris · 7 years ago
  75. f531cfd TST: prefer pytest.skip() over SkipTest by Tyler Reddy · 7 years ago
  76. 81a9135 TST, MAINT: Separate f2py compile function testing into own file by Charles Harris · 7 years ago
  77. 0a61f7f MAINT: remove exec_command() from f2py init by Tyler Reddy · 7 years ago
  78. cb7dca7 TST: Use fixture around f2py shared memory tests. by Elliott Sales de Andrade · 7 years ago
  79. 9c585ad TST: Parametrize f2py tests. by Elliott Sales de Andrade · 7 years ago
  80. f22a33b ENH: Use entry_points to install the f2py scripts. by Charles Harris · 7 years ago
  81. e0c126d Fix Fortran kind detection for aarch64 & s390x. by Elliott Sales de Andrade · 7 years ago
  82. 11302b6 MAINT: Move pytesttester outside of np.testing, to avoid creating unnecessary import dependencies by Eric Wieser · 7 years ago
  83. 83828f5 HTTP -> HTTPS, and other linkrot fixes by Mike Toews · 7 years ago
  84. 820765d MAINT: Misc. typos (#11005) by luzpaz · 7 years ago
  85. 7bf0564 MAINT: Remove all uses of run_module_suite. by Charles Harris · 7 years ago
  86. cf46d8c TST: Update modules `test` to PytestTester. by Charles Harris · 7 years ago
  87. 7e5a41d TST: Switch to using pytest markers by Charles Harris · 7 years ago
  88. 6126789 MAINT: Remove "bench" from testing modules `__init__`s. by Charles Harris · 7 years ago
  89. 108d01a DOC: Fix minor typos by luz.paz · 7 years ago
  90. b746139 MAINT: Fixed C++ guard in f2py test. by siavashserver · 7 years ago
  91. 27b8e54 MAINT: Hard tab and whitespace cleanup. by Charles Harris · 7 years ago
  92. ac147e6 TST: test handling ';' in multiline and enhancement lines, numpy.f2py by Bob Eldering · 7 years ago
  93. a9cdd90 BUG: fix for splitting a multiline or enhancement by ';' in numpy.f2py. by Bob Eldering · 7 years ago
  94. a016167 BUG: F2py mishandles quoted control characters (#10676) by bobeldering · 7 years ago
  95. 3957976 BUG: f2py: fix f2py generated code to work on Pypy by Pauli Virtanen · 8 years ago
  96. 6512040 Misc. typos by luz.paz · 8 years ago
  97. 10ccfe7 Merge pull request #10154 from eric-wieser/fixup-numerictypes by Charles Harris · 8 years ago
  98. de100be DOC: fix minor typos by Unknown · 8 years ago
  99. 4b613a2 MAINT: Look up typeinfo properties by name, not by index by Eric Wieser · 8 years ago
  100. d4d9e95 MAINT: Use a StructSequence in place of the typeinfo tuples by Eric Wieser · 8 years ago