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

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Mon Sep 14 20:13:05 PDT 2015


3 new commits in yt:

https://bitbucket.org/yt_analysis/yt/commits/b26071798605/
Changeset:   b26071798605
Branch:      yt
User:        qobilidop
Date:        2015-08-03 18:50:21+00:00
Summary:     fix a bug in the artio frontend
Affected #:  1 file

diff -r fceb5ab0e3c639902f1d00e9ad6413367fd8fe27 -r b26071798605d10d72064ba8db456212b639d89c yt/frontends/artio/setup.py
--- a/yt/frontends/artio/setup.py
+++ b/yt/frontends/artio/setup.py
@@ -19,7 +19,8 @@
                          depends=artio_sources + 
                                  ["yt/utilities/lib/fp_utils.pxd",
                                   "yt/geometry/oct_container.pxd",
-                                  "yt/geometry/selection_routines.pxd"])
+                                  "yt/geometry/selection_routines.pxd",
+                                  "yt/geometry/particle_deposit.pxd"])
     config.make_config_py()  # installs __config__.py
     #config.make_svn_version_py()
     return config


https://bitbucket.org/yt_analysis/yt/commits/2ab74ceca299/
Changeset:   2ab74ceca299
Branch:      yt
User:        xarthisius
Date:        2015-08-19 18:22:44+00:00
Summary:     [py3] Use OrderedDict for tests as it is included in answer's name
Affected #:  1 file

diff -r b26071798605d10d72064ba8db456212b639d89c -r 2ab74ceca29964f03197b3afc074ecca90ec5e1c yt/visualization/tests/test_plotwindow.py
--- a/yt/visualization/tests/test_plotwindow.py
+++ b/yt/visualization/tests/test_plotwindow.py
@@ -27,6 +27,7 @@
 from yt.visualization.api import \
     SlicePlot, ProjectionPlot, OffAxisSlicePlot, OffAxisProjectionPlot
 from yt.units.yt_array import YTArray, YTQuantity
+from collections import OrderedDict
 
 def setup():
     """Test specific setup."""
@@ -77,8 +78,10 @@
              "set_center": [(((0.4, 0.3), ), {})],
              "set_cmap": [(('density', 'RdBu'), {}),
                           (('density', 'kamae'), {})],
-             "set_font": [(({'family': 'sans-serif', 'style': 'italic',
-                             'weight': 'bold', 'size': 24}, ), {})],
+             "set_font": [((OrderedDict({'family': 'sans-serif',
+                                         'style': 'italic',
+                                         'weight': 'bold', 'size': 24}), ),
+                           {})],
              "set_log": [(('density', False), {})],
              "set_window_size": [((7.0, ), {})],
              "set_zlim": [(('density', 1e-25, 1e-23), {}),


https://bitbucket.org/yt_analysis/yt/commits/08729e09892c/
Changeset:   08729e09892c
Branch:      yt
User:        xarthisius
Date:        2015-08-26 21:00:13+00:00
Summary:     [tests] sort dictionary to ensure that test name is reproducible with py3
Affected #:  1 file

diff -r 2ab74ceca29964f03197b3afc074ecca90ec5e1c -r 08729e09892c5ead10240cc2f0ba1d064cffd127 yt/visualization/tests/test_plotwindow.py
--- a/yt/visualization/tests/test_plotwindow.py
+++ b/yt/visualization/tests/test_plotwindow.py
@@ -67,6 +67,9 @@
 M7 = "DD0010/moving7_0010"
 WT = "WindTunnel/windtunnel_4lev_hdf5_plt_cnt_0030"
 
+FPROPS = {'family': 'sans-serif', 'style': 'italic',
+          'weight': 'bold', 'size': 24}
+
 ATTR_ARGS = {"pan": [(((0.1, 0.1), ), {})],
              "pan_rel": [(((0.1, 0.1), ), {})],
              "set_axes_unit": [(("kpc", ), {}),
@@ -78,9 +81,7 @@
              "set_center": [(((0.4, 0.3), ), {})],
              "set_cmap": [(('density', 'RdBu'), {}),
                           (('density', 'kamae'), {})],
-             "set_font": [((OrderedDict({'family': 'sans-serif',
-                                         'style': 'italic',
-                                         'weight': 'bold', 'size': 24}), ),
+             "set_font": [((OrderedDict(sorted(FPROPS.items(), key=lambda t: t[0])), ),
                            {})],
              "set_log": [(('density', False), {})],
              "set_window_size": [((7.0, ), {})],

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