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

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Wed Apr 13 09:39:07 PDT 2016


4 new commits in yt:

https://bitbucket.org/yt_analysis/yt/commits/9e8fb4dd8c3b/
Changeset:   9e8fb4dd8c3b
Branch:      yt
User:        Yurlungur
Date:        2016-04-08 20:56:51+00:00
Summary:     added documentation about setuptools problem
Affected #:  1 file

diff -r c7470f10bdc0a7851036a0baa30d88f1d65e4c9c -r 9e8fb4dd8c3bc82d03878e0977e958be57088d94 doc/source/installing.rst
--- a/doc/source/installing.rst
+++ b/doc/source/installing.rst
@@ -367,6 +367,23 @@
   <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.
 
+.. 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.
+   
+
 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


https://bitbucket.org/yt_analysis/yt/commits/8ad49b86d39f/
Changeset:   8ad49b86d39f
Branch:      yt
User:        Yurlungur
Date:        2016-04-08 21:17:20+00:00
Summary:     included ngoldbaum's suggestions
Affected #:  1 file

diff -r 9e8fb4dd8c3bc82d03878e0977e958be57088d94 -r 8ad49b86d39f7f9aa52724467a299f8195290e76 doc/source/installing.rst
--- a/doc/source/installing.rst
+++ b/doc/source/installing.rst
@@ -369,7 +369,8 @@
 
 .. note::
 
-   yt requires version 18.0 or higher of ``setuptools``. If you get an error of the form
+   yt requires version 18.0 or higher of ``setuptools`` and version
+   0.7.3 of ``distribtute``. If you get an error of the form
    
    .. code-block:: bash
 
@@ -381,7 +382,19 @@
 
       pip install --upgrade setuptools
 
-   or your preferred method.
+   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.
    
 
 This will install yt into a folder in your home directory


https://bitbucket.org/yt_analysis/yt/commits/a3651ccae2fc/
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

diff -r 8ad49b86d39f7f9aa52724467a299f8195290e76 -r a3651ccae2fceb4e4d4fd9e4f79208625b223859 doc/source/installing.rst
--- a/doc/source/installing.rst
+++ b/doc/source/installing.rst
@@ -369,26 +369,17 @@
 
 .. note::
 
-   yt requires version 18.0 or higher of ``setuptools`` and version
-   0.7.3 of ``distribtute``. 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
+   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 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
+   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
 


https://bitbucket.org/yt_analysis/yt/commits/346c6d008512/
Changeset:   346c6d008512
Branch:      yt
User:        chummels
Date:        2016-04-13 16:38:59+00:00
Summary:     Merged in Yurlungur/yt (pull request #2124)

[Closes #1169] Added documentation about setuptools problem
Affected #:  1 file

diff -r 74a90987f18bddc2d00a080aaed6aab7036d77ed -r 346c6d008512f10b1a9243d27238bdc5ed96ded5 doc/source/installing.rst
--- a/doc/source/installing.rst
+++ b/doc/source/installing.rst
@@ -367,6 +367,27 @@
   <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.
 
+.. 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.
+   
+
 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

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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.spacepope.org/pipermail/yt-svn-spacepope.org/attachments/20160413/c642770d/attachment.html>


More information about the yt-svn mailing list