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

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Wed Jul 5 12:36:30 PDT 2017


3 new commits in yt:

https://bitbucket.org/yt_analysis/yt/commits/9482bdbbb8a4/
Changeset:   9482bdbbb8a4
User:        atmyers
Date:        2017-06-29 19:58:35+00:00
Summary:     Fix clamping bug in _prepare_grid
Affected #:  1 file

diff -r 0c844416fb68c75ea74aa75bcc321e06982748d7 -r 9482bdbbb8a4eba66b2d0d257588e2ee43d96526 yt/data_objects/grid_patch.py
--- a/yt/data_objects/grid_patch.py
+++ b/yt/data_objects/grid_patch.py
@@ -194,7 +194,7 @@
                 # clamp grid edges to an integer multiple of the parent cell
                 # width
                 clamp_edges(self.LeftEdge, p.LeftEdge, p.dds)
-                clamp_edges(self.RightEdge, p.LeftEdge, p.dds)
+                clamp_edges(self.RightEdge, p.RightEdge, p.dds)
         h.grid_levels[my_ind, 0] = self.Level
         # This might be needed for streaming formats
         #self.Time = h.gridTimes[my_ind,0]


https://bitbucket.org/yt_analysis/yt/commits/95dc684cf4f5/
Changeset:   95dc684cf4f5
User:        atmyers
Date:        2017-07-01 00:16:17+00:00
Summary:     bump answer test numbers.
Affected #:  1 file

diff -r 9482bdbbb8a4eba66b2d0d257588e2ee43d96526 -r 95dc684cf4f52e10ebb6aa8735f1a2b4ccdee402 tests/tests.yaml
--- a/tests/tests.yaml
+++ b/tests/tests.yaml
@@ -17,7 +17,7 @@
   local_fits_001:
     - yt/frontends/fits/tests/test_outputs.py
 
-  local_flash_006:
+  local_flash_007:
     - yt/frontends/flash/tests/test_outputs.py
 
   local_gadget_001:
@@ -104,7 +104,7 @@
     - yt/analysis_modules/absorption_spectrum/tests/test_absorption_spectrum.py:test_absorption_spectrum_cosmo_sph
     - yt/analysis_modules/absorption_spectrum/tests/test_absorption_spectrum.py:test_absorption_spectrum_with_continuum
 
-  local_axialpix_002:
+  local_axialpix_003:
     - yt/geometry/coordinates/tests/test_axial_pixelization.py:test_axial_pixelization
 
   local_particle_trajectory_000:


https://bitbucket.org/yt_analysis/yt/commits/62b7d0b5dfd1/
Changeset:   62b7d0b5dfd1
User:        ngoldbaum
Date:        2017-07-05 19:35:47+00:00
Summary:     Merge pull request #1473 from atmyers/clamping_bugfix

[BUGFIX] Fix clamping bug in _prepare_grid
Affected #:  2 files

diff -r ac06c5d6adcf34d370202204df9a255427428514 -r 62b7d0b5dfd121aa80589cf574b499d3ddca4782 tests/tests.yaml
--- a/tests/tests.yaml
+++ b/tests/tests.yaml
@@ -20,7 +20,7 @@
   local_fits_001:
     - yt/frontends/fits/tests/test_outputs.py
 
-  local_flash_006:
+  local_flash_007:
     - yt/frontends/flash/tests/test_outputs.py
 
   local_gadget_001:
@@ -107,7 +107,7 @@
     - yt/analysis_modules/absorption_spectrum/tests/test_absorption_spectrum.py:test_absorption_spectrum_cosmo_sph
     - yt/analysis_modules/absorption_spectrum/tests/test_absorption_spectrum.py:test_absorption_spectrum_with_continuum
 
-  local_axialpix_002:
+  local_axialpix_003:
     - yt/geometry/coordinates/tests/test_axial_pixelization.py:test_axial_pixelization
 
   local_particle_trajectory_000:

diff -r ac06c5d6adcf34d370202204df9a255427428514 -r 62b7d0b5dfd121aa80589cf574b499d3ddca4782 yt/data_objects/grid_patch.py
--- a/yt/data_objects/grid_patch.py
+++ b/yt/data_objects/grid_patch.py
@@ -194,7 +194,7 @@
                 # clamp grid edges to an integer multiple of the parent cell
                 # width
                 clamp_edges(self.LeftEdge, p.LeftEdge, p.dds)
-                clamp_edges(self.RightEdge, p.LeftEdge, p.dds)
+                clamp_edges(self.RightEdge, p.RightEdge, p.dds)
         h.grid_levels[my_ind, 0] = self.Level
         # This might be needed for streaming formats
         #self.Time = h.gridTimes[my_ind,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