File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ Issues Fixed
32
32
* gh-6575 BUG: Split produces empty arrays with wrong number of dimensions
33
33
* gh-6590 Fortran Array problem in numpy 1.10.
34
34
* gh-6602 Random __all__ missing choice and dirichlet.
35
+ * gh-6618 NPY_FORTRANORDER in make_fortran() in numpy.i
35
36
36
37
Merged PRs
37
38
==========
@@ -67,6 +68,7 @@ The following PRs in master have been backported to 1.10.2
67
68
* gh-6596 BUG: Fix swig for relaxed stride checking.
68
69
* gh-6606 DOC: Update 1.10.2 release notes.
69
70
* gh-6614 BUG: Add choice and dirichlet to numpy.random.__all__.
71
+ * gh-6621 BUG: Fix swig make_fortran function.
70
72
71
73
Initial support for mingwpy was reverted as it was causing problems for
72
74
non-windows builds.
Original file line number Diff line number Diff line change 295
295
Py_INCREF (array_descr (ary ));
296
296
result = (PyArrayObject * ) PyArray_FromArray (ary ,
297
297
array_descr (ary ),
298
- NPY_FORTRANORDER );
298
+ NPY_ARRAY_F_CONTIGUOUS );
299
299
* is_new_object = 1 ;
300
300
}
301
301
return result ;
You can’t perform that action at this time.
0 commit comments