<html><body>
<p>2 new commits in yt:</p>
<p><a href="https://bitbucket.org/yt_analysis/yt/commits/a1c151222bf8/">https://bitbucket.org/yt_analysis/yt/commits/a1c151222bf8/</a> Changeset:   a1c151222bf8 Branch:      yt User:        ngoldbaum Date:        2016-04-04 15:05:57+00:00 Summary:     Be more defensive about guessing that we're installing from a repository. Affected #:  1 file</p>
<p>diff -r 395a07dcd3a54e1840f9ddab9a4b3ed49f780c28 -r a1c151222bf825f4dd88c187119934393a4512ee setupext.py --- a/setupext.py +++ b/setupext.py @@ -138,6 +138,10 @@</p>
<pre>    import hglib
except ImportError:
    return None</pre>
<ul><li><p>with hglib.open(target_dir) as repo:</p></li>
<li><p>changeset = repo.identify(id=True, branch=True).strip().decode('utf8')</p></li></ul>
<p>+    try: +        with hglib.open(target_dir) as repo: +            changeset = repo.identify( +                id=True, branch=True).strip().decode('utf8') +    except hglib.error.ServerError: +        return None</p>
<pre>return changeset</pre>
<p><a href="https://bitbucket.org/yt_analysis/yt/commits/9488a6181a06/">https://bitbucket.org/yt_analysis/yt/commits/9488a6181a06/</a> Changeset:   9488a6181a06 Branch:      yt User:        ngoldbaum Date:        2016-04-06 18:13:36+00:00 Summary:     Merged in ngoldbaum/yt (pull request #2108)</p>
<p>Be more defensive about guessing that we're installing from a repository. Affected #:  1 file</p>
<p>diff -r b446990d1ee3cf51fe5860b07ee5fea3e27b70da -r 9488a6181a069af1fbc2339b144039342ea1a437 setupext.py --- a/setupext.py +++ b/setupext.py @@ -138,6 +138,10 @@</p>
<pre>    import hglib
except ImportError:
    return None</pre>
<ul><li><p>with hglib.open(target_dir) as repo:</p></li>
<li><p>changeset = repo.identify(id=True, branch=True).strip().decode('utf8')</p></li></ul>
<p>+    try: +        with hglib.open(target_dir) as repo: +            changeset = repo.identify( +                id=True, branch=True).strip().decode('utf8') +    except hglib.error.ServerError: +        return None</p>
<pre>return changeset</pre>
<p>Repository URL: <a href="https://bitbucket.org/yt_analysis/yt/">https://bitbucket.org/yt_analysis/yt/</a></p>
<p>—</p>
<p>This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.</p>

<img src="http://link.bitbucket.org/wf/open?upn=ll4ctv0L-2ByeRZFC1LslHcg6aJmnQ70VruLbmeLQr27DyBNp3HyZe1pO6Qn2eo4tZFxKVxa11hJQxdzDaeqUsyvR6OVGPzdx3lUq63SxVd788vsC85rmQ7rAPAoEaSuvp81o-2Fpg08-2BRpMZdI1KrPC-2FUEAliGKOdnMKUoScMOBaxGcibgKy8aYddvtXXdwB2CxvYn8WdOENOM1XZC-2BzW76j47M76jG8jk5DPV5HYoGCuc-3D" alt="" width="1" height="1" border="0" style="height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;"/>
</body></html>