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

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Wed Apr 26 15:26:33 PDT 2017


6 new commits in yt:

https://bitbucket.org/yt_analysis/yt/commits/ec0c4c9a9b72/
Changeset:   ec0c4c9a9b72
Branch:      yt
User:        xarthisius
Date:        2017-04-26 20:05:12+00:00
Summary:     Enable parallel read for yt_showfields
Affected #:  1 file

diff -r 00f28d0dd2a446c30cf8ed7cd91fa699bb0cb135 -r ec0c4c9a9b72ffe0f5f5f7deb7cb96e41448e601 doc/extensions/yt_showfields.py
--- a/doc/extensions/yt_showfields.py
+++ b/doc/extensions/yt_showfields.py
@@ -7,6 +7,14 @@
     setup.app = app
     setup.config = app.config
     setup.confdir = app.confdir
+    
+    retdict = dict(
+        version='1.0',
+        parallel_read_safe=True,
+        parallel_write_safe=True
+    )
+
+    return retdict
 
 class ShowFields(Directive):
     required_arguments = 0


https://bitbucket.org/yt_analysis/yt/commits/bfbf68cedb17/
Changeset:   bfbf68cedb17
Branch:      yt
User:        xarthisius
Date:        2017-04-26 20:06:21+00:00
Summary:     Fix title underline
Affected #:  1 file

diff -r ec0c4c9a9b72ffe0f5f5f7deb7cb96e41448e601 -r bfbf68cedb17fb0b457cddb2b550a6b6873a308d doc/source/installing.rst
--- a/doc/source/installing.rst
+++ b/doc/source/installing.rst
@@ -550,7 +550,7 @@
 .. _switching-between-yt-versions:
 
 Switching versions of yt: ``yt-2.x``, ``stable``, and ``master`` branches
----------------------------------------------------------------------
+-------------------------------------------------------------------------
 
 Here we explain how to switch between different development branches of yt. 
 


https://bitbucket.org/yt_analysis/yt/commits/91f8bc1c6f6c/
Changeset:   91f8bc1c6f6c
Branch:      yt
User:        xarthisius
Date:        2017-04-26 20:18:00+00:00
Summary:     Reintroduce AssertWrapper for enzo/answer_testing_support.py (removed in PR 2566)
Affected #:  1 file

diff -r bfbf68cedb17fb0b457cddb2b550a6b6873a308d -r 91f8bc1c6f6c7cb61d0defc9cce54150925f665a yt/frontends/enzo/answer_testing_support.py
--- a/yt/frontends/enzo/answer_testing_support.py
+++ b/yt/frontends/enzo/answer_testing_support.py
@@ -27,8 +27,23 @@
     FieldValuesTest, \
     GridValuesTest, \
     ProjectionValuesTest, \
-    temp_cwd, \
-    AssertWrapper
+    temp_cwd
+
+
+class AssertWrapper(object):
+    """
+    Used to wrap a numpy testing assertion, in order to provide a useful name
+    for a given assertion test.
+    """
+    def __init__(self, description, *args):
+        # The key here is to add a description attribute, which nose will pick
+        # up.
+        self.args = args
+        self.description = description
+
+    def __call__(self):
+        self.args[0](*self.args[1:])
+
 
 def requires_outputlog(path = ".", prefix = ""):
     def ffalse(func):


https://bitbucket.org/yt_analysis/yt/commits/147c68f84c9b/
Changeset:   147c68f84c9b
Branch:      yt
User:        xarthisius
Date:        2017-04-26 20:22:01+00:00
Summary:     Bump pydot to 1.2.4 (current version doesn't work with py3)
Affected #:  1 file

This diff is so big that we needed to truncate the remainder.

https://bitbucket.org/yt_analysis/yt/commits/f62f4f4de880/
Changeset:   f62f4f4de880
Branch:      yt
User:        xarthisius
Date:        2017-04-26 20:24:35+00:00
Summary:     Remove duplicate label
Affected #:  1 file

diff -r 147c68f84c9bad9dc76f33698e5328f13f506296 -r f62f4f4de88052fb124a11cd6e5608c0e7cc699d doc/source/reference/api/api.rst
--- a/doc/source/reference/api/api.rst
+++ b/doc/source/reference/api/api.rst
@@ -439,7 +439,7 @@
    ~yt.data_objects.profiles.ParticleProfile
    ~yt.data_objects.profiles.create_profile
 
-.. _clump_finding:
+.. _clump_finding_ref:
 
 Clump Finding
 ^^^^^^^^^^^^^


https://bitbucket.org/yt_analysis/yt/commits/27fd24ed75b8/
Changeset:   27fd24ed75b8
Branch:      yt
User:        xarthisius
Date:        2017-04-26 20:44:00+00:00
Summary:     Drop reference to non-existing section of CONTRIBUTING
Affected #:  1 file

diff -r f62f4f4de88052fb124a11cd6e5608c0e7cc699d -r 27fd24ed75b89e653ddf3b1c9c76c742b51130dc doc/source/installing.rst
--- a/doc/source/installing.rst
+++ b/doc/source/installing.rst
@@ -396,8 +396,7 @@
 ^^^^^^^^^^^^^^^^^^^^^^^^
 
 Installation on 64-bit Microsoft Windows platforms is supported using Anaconda
-(see :ref:`anaconda-installation`) and via ``pip``. Also see
-:ref:`windows-developing` for details on how to build yt from source in Windows.
+(see :ref:`anaconda-installation`) and via ``pip``.
 
 .. _source-installation:

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