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

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Thu Apr 3 11:22:33 PDT 2014


2 new commits in yt:

https://bitbucket.org/yt_analysis/yt/commits/1a031e9f3b19/
Changeset:   1a031e9f3b19
Branch:      yt-3.0
User:        jzuhone
Date:        2014-04-03 20:07:02
Summary:     This should always be 3 dimensions regardless of the file dimensions
Affected #:  1 file

diff -r c77d7461149ca88a78f27b0f24067e4783c9d2c4 -r 1a031e9f3b192117bd6f09f93a7c5315816834d0 yt/frontends/athena/data_structures.py
--- a/yt/frontends/athena/data_structures.py
+++ b/yt/frontends/athena/data_structures.py
@@ -416,7 +416,7 @@
         if 'periodicity' in self.specified_parameters:
             self.periodicity = ensure_tuple(self.specified_parameters['periodicity'])
         else:
-            self.periodicity = (True,)*self.dimensionality
+            self.periodicity = (True,True,True,)
         if 'gamma' in self.specified_parameters:
             self.gamma = float(self.specified_parameters['gamma'])
         else:


https://bitbucket.org/yt_analysis/yt/commits/c92f93f47aa4/
Changeset:   c92f93f47aa4
Branch:      yt-3.0
User:        MatthewTurk
Date:        2014-04-03 20:22:27
Summary:     Merged in jzuhone/yt-3.x/yt-3.0 (pull request #788)

Fixing a bug that prevents Athena 1D/2D datasets from loading
Affected #:  1 file

diff -r 3312a9b740bc6af61c388f5eabbdd09890475bfb -r c92f93f47aa471ab909a57bcbf2003469e430062 yt/frontends/athena/data_structures.py
--- a/yt/frontends/athena/data_structures.py
+++ b/yt/frontends/athena/data_structures.py
@@ -416,7 +416,7 @@
         if 'periodicity' in self.specified_parameters:
             self.periodicity = ensure_tuple(self.specified_parameters['periodicity'])
         else:
-            self.periodicity = (True,)*self.dimensionality
+            self.periodicity = (True,True,True,)
         if 'gamma' in self.specified_parameters:
             self.gamma = float(self.specified_parameters['gamma'])
         else:

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