| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | | Merge pull request #14376 from jdufresne/future | Sebastian Berg | 2020-01-03 | 38 | -77/+0 |
|\ \
| |/
|/| |
|
| * | MAINT: Remove unnecessary 'from __future__ import ...' statements | Jon Dufresne | 2020-01-03 | 38 | -77/+0 |
* | | MAINT: Remove Python2 specific C module setup (gh-15231) | Seth Troisi | 2020-01-03 | 2 | -19/+3 |
|/ |
|
* | Fix typos, via a Levenshtein-style corrector | Brian Wignall | 2019-12-19 | 1 | -1/+1 |
* | TST: f2py: fix race condition in f2py test _get_compiler_status | Pauli Virtanen | 2019-12-14 | 1 | -3/+9 |
* | ENH: f2py: add --f2cmap option for specifying the name of .f2py_f2cmap | Pauli Virtanen | 2019-12-14 | 4 | -16/+60 |
* | Merge pull request #15035 from mattip/issue-14625 | Sebastian Berg | 2019-12-09 | 3 | -2/+43 |
|\ |
|
| * | MAINT: fixes from review | mattip | 2019-12-03 | 1 | -3/+4 |
| * | DOC: fix outstanding typo in NumPy version | mattip | 2019-12-03 | 1 | -1/+1 |
| * | BUG: add endfunction, endsubroutine to valid fortran end words | mattip | 2019-12-03 | 2 | -1/+41 |
* | | ENH: Chain exceptions when converting python objects to fortran | Eric Wieser | 2019-12-02 | 2 | -28/+9 |
* | | ENH: Show the incorrect type in the fortran error message | Eric Wieser | 2019-12-01 | 1 | -3/+4 |
|/ |
|
* | Merge pull request #12633 from seberg/f2py-refcnt | Matti Picus | 2019-10-15 | 8 | -98/+179 |
|\ |
|
| * | BUG: Further, followup f2py reference count fixes | Sebastian Berg | 2019-08-19 | 5 | -16/+53 |
| * | BUG: General fixes to f2py reference counts (dereferencing) | Sebastian Berg | 2019-08-19 | 5 | -82/+126 |
* | | MAINT: Avoid all BytesWarning | Jon Dufresne | 2019-09-25 | 1 | -0/+1 |
* | | MAINT: remove unused numpy/f2py/info.py file | Ralf Gommers | 2019-09-22 | 1 | -6/+0 |
|/ |
|
* | BUG: Fix leak in the f2py-generated module init and `PyMem_Del` usage | Sergei Lebedev | 2019-08-19 | 2 | -5/+11 |
* | DOC: update or remove outdated sourceforge links | mattip | 2019-08-08 | 1 | -1/+1 |
* | Doc: Use `pip install .` where possible instead of calling setup.py | Matthias Bussonnier | 2019-07-23 | 1 | -1/+1 |
* | Merge pull request #13499 from Bharat123rox/file-closing | Eric Wieser | 2019-05-12 | 2 | -58/+53 |
|\ |
|
| * | Add code review suggestions from @eric-wieser | Bharat123rox | 2019-05-08 | 1 | -2/+3 |
| * | Fixed possible regressions | Bharat123rox | 2019-05-08 | 1 | -2/+2 |
| * | Use with statement to open/close files to fix LGTM alerts | Bharat123rox | 2019-05-07 | 2 | -60/+54 |
* | | BUG: blindly add TypeError to accepted exceptions | mattip | 2019-04-30 | 1 | -1/+1 |
|/ |
|
* | TEST: update for PyPy | mattip | 2019-04-17 | 1 | -1/+2 |
* | MAINT: Use textwrap.dedent in f2py tests | Eric Wieser | 2019-04-10 | 3 | -43/+42 |
* | MAINT: f2py: Add a cast to avoid a compiler warning. | Warren Weckesser | 2019-04-05 | 1 | -1/+1 |
* | BUG: ppc and riscv don't use REAL(10) | Andreas Schwab | 2019-03-05 | 1 | -1/+1 |
* | BUG: Fix testing of f2py.compile from strings. | Charles Harris | 2019-01-20 | 2 | -14/+17 |
* | Merge pull request #12807 from mattip/f2py-source-bytes | Charles Harris | 2019-01-20 | 3 | -5/+52 |
|\ |
|
| * | BUG, DOC: test, fix that f2py.compile accepts str and bytes, rework docs | mattip | 2019-01-20 | 3 | -5/+52 |
* | | BUG: Add 'sparc' to platforms implementing 16 byte reals. | Charles Harris | 2019-01-05 | 1 | -1/+1 |
* | | BUG: fix f2py pep338 execution method | Julian Taylor | 2018-12-17 | 1 | -1/+1 |
|/ |
|
* | MAINT: Review F401,F841,F842 flake8 errors (unused variables and imports) (#1... | Roman Yurchak | 2018-12-06 | 5 | -10/+1 |
* | MAINT: Use list and dict comprehension when possible (#12445) | Roman Yurchak | 2018-12-01 | 2 | -17/+9 |
* | MAINT, TST: check for unreachable code paths | Tyler Reddy | 2018-11-02 | 1 | -4/+1 |
* | MAINT: removed unused vars in f2py test code | Tyler Reddy | 2018-10-29 | 1 | -2/+0 |
* | TST, MAINT: Skip some f2py tests on Mac. | Charles Harris | 2018-10-07 | 2 | -4/+15 |
* | MAINT: remove unused stdlib imports | Emil Hessman | 2018-09-30 | 1 | -4/+0 |
* | MAINT: don't call function with too many arguments | Emil Hessman | 2018-09-30 | 1 | -2/+2 |
* | TST: add macos azure testing to CI. | Tyler Reddy | 2018-09-28 | 1 | -0/+7 |
* | MAINT: remove duplicate imports | mattip | 2018-09-26 | 1 | -2/+0 |
* | Merge pull request #11894 from QuLogic/f2py-test-parametrize | Charles Harris | 2018-09-22 | 7 | -47/+48 |
|\ |
|
| * | TST: Use fixture around f2py shared memory tests. | Elliott Sales de Andrade | 2018-09-06 | 1 | -11/+9 |
| * | TST: Parametrize f2py tests. | Elliott Sales de Andrade | 2018-09-06 | 6 | -36/+39 |
* | | Merge pull request #12014 from tylerjereddy/issue_12013_pytest_skip | Charles Harris | 2018-09-21 | 2 | -7/+8 |
|\ \ |
|
| * | | BUG: Fix missing pytest import. | Charles Harris | 2018-09-21 | 1 | -0/+1 |
| * | | TST: prefer pytest.skip() over SkipTest | Tyler Reddy | 2018-09-21 | 2 | -7/+7 |
* | | | BUG: Fix f2py test_compile_function.py tests. | Charles Harris | 2018-09-21 | 1 | -74/+61 |