[yt-svn] commit/yt: 2 new changesets

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Wed Jul 19 07:21:38 PDT 2017


2 new commits in yt:

https://bitbucket.org/yt_analysis/yt/commits/2d431a5fda58/
Changeset:   2d431a5fda58
User:        ngoldbaum
Date:        2017-07-18 20:13:29+00:00
Summary:     fix cython warning
Affected #:  1 file

diff -r 292512de33aa61e0c24350fce522ab4c1649cd41 -r 2d431a5fda58eb3f630b2456e21d4869c798825c yt/geometry/selection_routines.pyx
--- a/yt/geometry/selection_routines.pyx
+++ b/yt/geometry/selection_routines.pyx
@@ -1573,7 +1573,8 @@
         cdef VolumeContainer vc
         cdef IntegrationAccumulator *ia
         ia = <IntegrationAccumulator *> malloc(sizeof(IntegrationAccumulator))
-        cdef np.float64_t dt[1], t[1]
+        cdef np.float64_t dt[1]
+        cdef np.float64_t t[1]
         cdef np.uint8_t cm[1]
         for i in range(3):
             vc.left_edge[i] = left_edge[i]


https://bitbucket.org/yt_analysis/yt/commits/b53beffbe343/
Changeset:   b53beffbe343
User:        ngoldbaum
Date:        2017-07-19 14:18:56+00:00
Summary:     Merge pull request #1496 from ngoldbaum/cython-warn-fix

fix cython warning
Affected #:  1 file

diff -r 292512de33aa61e0c24350fce522ab4c1649cd41 -r b53beffbe343ee873600edd5e5f7e7877d547d04 yt/geometry/selection_routines.pyx
--- a/yt/geometry/selection_routines.pyx
+++ b/yt/geometry/selection_routines.pyx
@@ -1573,7 +1573,8 @@
         cdef VolumeContainer vc
         cdef IntegrationAccumulator *ia
         ia = <IntegrationAccumulator *> malloc(sizeof(IntegrationAccumulator))
-        cdef np.float64_t dt[1], t[1]
+        cdef np.float64_t dt[1]
+        cdef np.float64_t t[1]
         cdef np.uint8_t cm[1]
         for i in range(3):
             vc.left_edge[i] = left_edge[i]

Repository URL: https://bitbucket.org/yt_analysis/yt/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.



More information about the yt-svn mailing list