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

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Wed Aug 9 19:14:40 PDT 2017


3 new commits in yt:

https://bitbucket.org/yt_analysis/yt/commits/e848561f17a3/
Changeset:   e848561f17a3
User:        brittonsmith
Date:        2017-08-09 21:50:03+00:00
Summary:     Fix instructions for 'python setup.py install' to be 'pip install .' and not 'pip install -e .'.
Affected #:  1 file

diff -r 6f814a18e160e98a599b8aee8e9c780e41c7806e -r e848561f17a311c8e65bc61851d1bc87554ef83c doc/source/installing.rst
--- a/doc/source/installing.rst
+++ b/doc/source/installing.rst
@@ -407,7 +407,7 @@
   $ git clone https://github.com/yt-project/yt
   $ cd yt
   $ git checkout master
-  $ pip install -e . --user --prefix=
+  $ pip install . --user --prefix=
 
 .. note::
 
@@ -595,7 +595,7 @@
 
   $ cd yt
   $ git checkout <desired-version>
-  $ pip install -e . --user --prefix=
+  $ pip install . --user --prefix=
 
 Valid versions to jump to are described in :ref:`branches-of-yt`).
 


https://bitbucket.org/yt_analysis/yt/commits/a6b25aaae5d0/
Changeset:   a6b25aaae5d0
User:        brittonsmith
Date:        2017-08-09 22:11:14+00:00
Summary:     Fix flags in pip install docs.
Affected #:  1 file

diff -r e848561f17a311c8e65bc61851d1bc87554ef83c -r a6b25aaae5d013cbf70d97b12964db1e3c5569c6 doc/source/installing.rst
--- a/doc/source/installing.rst
+++ b/doc/source/installing.rst
@@ -407,16 +407,16 @@
   $ git clone https://github.com/yt-project/yt
   $ cd yt
   $ git checkout master
-  $ pip install . --user --prefix=
+  $ pip install . --user --install-option="--prefix="
 
 .. note::
 
   If you maintain your own user-level python installation separate from the
-  OS-level python installation, you can leave off ``--user --prefix=``, although
+  OS-level python installation, you can leave off ``--user --install-option="--prefix="``, although
   you might need ``sudo`` depending on where python is installed. See `This
   StackOverflow discussion
   <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.
+  if you are curious why ``--install-option="--prefix="`` is neccessary on some systems.
 
 This will install yt into a folder in your home directory
 (``$HOME/.local/lib64/python2.7/site-packages`` on Linux,
@@ -439,9 +439,9 @@
   $ git clone https://github.com/yt-project/yt
   $ cd yt
   $ git checkout master
-  $ pip install -e . --user --prefix=
+  $ pip install -e . --user --install-option="--prefix="
 
-As above, you can leave off ``--user --prefix=`` if you want to install yt into
+As above, you can leave off ``--user --install-option="--prefix="`` if you want to install yt into
 the default package install path.  If you do not have write access for this
 location, you might need to use ``sudo``.
 
@@ -595,7 +595,7 @@
 
   $ cd yt
   $ git checkout <desired-version>
-  $ pip install . --user --prefix=
+  $ pip install . --user --install-option="--prefix="
 
 Valid versions to jump to are described in :ref:`branches-of-yt`).
 


https://bitbucket.org/yt_analysis/yt/commits/40d13762175a/
Changeset:   40d13762175a
User:        ngoldbaum
Date:        2017-08-10 02:14:25+00:00
Summary:     Merge pull request #1533 from brittonsmith/docfix

Fix instructions for 'python setup.py install' to be 'pip install .' …
Affected #:  1 file

diff -r 5f920e360f521bef2e6764c05701fc4c51c6d9e8 -r 40d13762175a556a798a7bad1255fb7424c666f7 doc/source/installing.rst
--- a/doc/source/installing.rst
+++ b/doc/source/installing.rst
@@ -407,16 +407,16 @@
   $ git clone https://github.com/yt-project/yt
   $ cd yt
   $ git checkout master
-  $ pip install -e . --user --prefix=
+  $ pip install . --user --install-option="--prefix="
 
 .. note::
 
   If you maintain your own user-level python installation separate from the
-  OS-level python installation, you can leave off ``--user --prefix=``, although
+  OS-level python installation, you can leave off ``--user --install-option="--prefix="``, although
   you might need ``sudo`` depending on where python is installed. See `This
   StackOverflow discussion
   <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.
+  if you are curious why ``--install-option="--prefix="`` is neccessary on some systems.
 
 This will install yt into a folder in your home directory
 (``$HOME/.local/lib64/python2.7/site-packages`` on Linux,
@@ -439,9 +439,9 @@
   $ git clone https://github.com/yt-project/yt
   $ cd yt
   $ git checkout master
-  $ pip install -e . --user --prefix=
+  $ pip install -e . --user --install-option="--prefix="
 
-As above, you can leave off ``--user --prefix=`` if you want to install yt into
+As above, you can leave off ``--user --install-option="--prefix="`` if you want to install yt into
 the default package install path.  If you do not have write access for this
 location, you might need to use ``sudo``.
 
@@ -595,7 +595,7 @@
 
   $ cd yt
   $ git checkout <desired-version>
-  $ pip install -e . --user --prefix=
+  $ pip install . --user --install-option="--prefix="
 
 Valid versions to jump to are described in :ref:`branches-of-yt`).

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