<html><body>
<p>4 new commits in yt:</p>
<p><a href="https://bitbucket.org/yt_analysis/yt/commits/9e8fb4dd8c3b/">https://bitbucket.org/yt_analysis/yt/commits/9e8fb4dd8c3b/</a> Changeset:   9e8fb4dd8c3b Branch:      yt User:        Yurlungur Date:        2016-04-08 20:56:51+00:00 Summary:     added documentation about setuptools problem Affected #:  1 file</p>
<p>diff -r c7470f10bdc0a7851036a0baa30d88f1d65e4c9c -r 9e8fb4dd8c3bc82d03878e0977e958be57088d94 doc/source/installing.rst --- a/doc/source/installing.rst +++ b/doc/source/installing.rst @@ -367,6 +367,23 @@</p>
<pre>  <http://stackoverflow.com/questions/4495120/combine-user-with-prefix-error-with-setup-py-install>`_
  if you are curious why ``--prefix=`` is neccessary on some systems.
</pre>
<p>+.. note:: + +   yt requires version 18.0 or higher of ``setuptools``. If you get an error of the form + +   .. code-block:: bash + +      error: unknown file type ‘.pyx’ (from ‘yt/analysis_modules/photon_simulator/utils.pyx’) + +   then that means ``setuptools`` is out of date. You can update it, e.g., with pip via + +   .. code-block:: bash + +      pip install --upgrade setuptools + +   or your preferred method. + +</p>
<pre>This will install yt into a folder in your home directory
(``$HOME/.local/lib64/python2.7/site-packages`` on Linux,
``$HOME/Library/Python/2.7/lib/python/site-packages/`` on OSX) Please refer to</pre>
<p><a href="https://bitbucket.org/yt_analysis/yt/commits/8ad49b86d39f/">https://bitbucket.org/yt_analysis/yt/commits/8ad49b86d39f/</a> Changeset:   8ad49b86d39f Branch:      yt User:        Yurlungur Date:        2016-04-08 21:17:20+00:00 Summary:     included ngoldbaum's suggestions Affected #:  1 file</p>
<p>diff -r 9e8fb4dd8c3bc82d03878e0977e958be57088d94 -r 8ad49b86d39f7f9aa52724467a299f8195290e76 doc/source/installing.rst --- a/doc/source/installing.rst +++ b/doc/source/installing.rst @@ -369,7 +369,8 @@</p>
<pre>.. note::
</pre>
<ul><li><p>yt requires version 18.0 or higher of ``setuptools``. If you get an error of the form</p></li></ul>
<p>+   yt requires version 18.0 or higher of ``setuptools`` and version +   0.7.3 of ``distribtute``. If you get an error of the form</p>
<pre>   .. code-block:: bash
</pre>
<p>@@ -381,7 +382,19 @@</p>
<pre>      pip install --upgrade setuptools
</pre>
<ul><li><p>or your preferred method.</p></li></ul>
<p>+   or your preferred method. If you get an error of the form + +   .. code-block:: bash + +      NameError: name ‘sys_platform’ is not defined + +   then ``distribute`` is out of date. You can update with pip via + +   .. code-block:: bash + +      pip install --upgrade distribute + +   or via your preferred method.</p>
<pre>This will install yt into a folder in your home directory</pre>
<p><a href="https://bitbucket.org/yt_analysis/yt/commits/a3651ccae2fc/">https://bitbucket.org/yt_analysis/yt/commits/a3651ccae2fc/</a> Changeset:   a3651ccae2fc Branch:      yt User:        Yurlungur Date:        2016-04-08 21:32:13+00:00 Summary:     removed explicit error messages because move verbose and helpful messages will appear soon. Affected #:  1 file</p>
<p>diff -r 8ad49b86d39f7f9aa52724467a299f8195290e76 -r a3651ccae2fceb4e4d4fd9e4f79208625b223859 doc/source/installing.rst --- a/doc/source/installing.rst +++ b/doc/source/installing.rst @@ -369,26 +369,17 @@</p>
<pre>.. note::
</pre>
<ul><li><p>yt requires version 18.0 or higher of ``setuptools`` and version</p></li>
<li><p>0.7.3 of ``distribtute``. If you get an error of the form</p></li></ul>
<p>–</p>
<ul><li><p>.. code-block:: bash</p></li></ul>
<p>–</p>
<ul><li><p>error: unknown file type ‘.pyx’ (from ‘yt/analysis_modules/photon_simulator/utils.pyx’)</p></li></ul>
<p>–</p>
<ul><li><p>then that means ``setuptools`` is out of date. You can update it, e.g., with pip via</p></li></ul>
<p>+   yt requires version 18.0 or higher of ``setuptools``. If you see +   error messages about this package, you may need to update it. For +   example, with pip via</p>
<pre>   .. code-block:: bash

      pip install --upgrade setuptools
</pre>
<ul><li><p>or your preferred method. If you get an error of the form</p></li></ul>
<p>–</p>
<ul><li><p>.. code-block:: bash</p></li></ul>
<p>–</p>
<ul><li><p>NameError: name ‘sys_platform’ is not defined</p></li></ul>
<p>–</p>
<ul><li><p>then ``distribute`` is out of date. You can update with pip via</p></li></ul>
<p>+   or your preferred method. If you have ``distribute`` installed, you +   may also see error messages for it if it's out of date. You can +   update with pip via</p>
<pre>   .. code-block:: bash
</pre>
<p><a href="https://bitbucket.org/yt_analysis/yt/commits/346c6d008512/">https://bitbucket.org/yt_analysis/yt/commits/346c6d008512/</a> Changeset:   346c6d008512 Branch:      yt User:        chummels Date:        2016-04-13 16:38:59+00:00 Summary:     Merged in Yurlungur/yt (pull request #2124)</p>
<p>[Closes #1169] Added documentation about setuptools problem Affected #:  1 file</p>
<p>diff -r 74a90987f18bddc2d00a080aaed6aab7036d77ed -r 346c6d008512f10b1a9243d27238bdc5ed96ded5 doc/source/installing.rst --- a/doc/source/installing.rst +++ b/doc/source/installing.rst @@ -367,6 +367,27 @@</p>
<pre>  <http://stackoverflow.com/questions/4495120/combine-user-with-prefix-error-with-setup-py-install>`_
  if you are curious why ``--prefix=`` is neccessary on some systems.
</pre>
<p>+.. note:: + +   yt requires version 18.0 or higher of ``setuptools``. If you see +   error messages about this package, you may need to update it. For +   example, with pip via + +   .. code-block:: bash + +      pip install --upgrade setuptools + +   or your preferred method. If you have ``distribute`` installed, you +   may also see error messages for it if it's out of date. You can +   update with pip via + +   .. code-block:: bash + +      pip install --upgrade distribute + +   or via your preferred method. + +</p>
<pre>This will install yt into a folder in your home directory
(``$HOME/.local/lib64/python2.7/site-packages`` on Linux,
``$HOME/Library/Python/2.7/lib/python/site-packages/`` on OSX) Please refer to</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-2ByeRZFC1LslHcg6aJmnQ70VruLbmeLQr27C-2BQIY-2FXbh3W9VUWYSYAfsbPMTntG8epBoys6ELNmMh542qYWWK2KaESNjWFXgdxgLKTUXHpKt6baNUU6poSWZTaswf4avTFgpuJgXh-2FBsbCrD5roFH2uEu-2BW0-2BWgD6R7wrlzQqhZ6B1EuqUowBe4meLoAaSCIWNfJWJtJrK8Rwkvytx8bgzawkBPn8P4uaZVw-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>