Update the note about supported Python versions for Arv SDK.
authorPeter Amstutz <pamstutz@veritasgenetics.com>
Fri, 17 May 2019 15:55:31 +0000 (11:55 -0400)
committerPeter Amstutz <pamstutz@veritasgenetics.com>
Fri, 17 May 2019 15:55:31 +0000 (11:55 -0400)
no issue #

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <pamstutz@veritasgenetics.com>

doc/sdk/python/sdk-python.html.textile.liquid

index be824399a4c94def5b64af218fa0b93d154d739b..9c0ec475b4328eda8875b161bbb77795ddbb2d53 100644 (file)
@@ -18,17 +18,15 @@ If you are logged in to an Arvados VM, the Python SDK should be installed.
 
 To use the Python SDK elsewhere, you can install from PyPI or a distribution package.
 
-{% include 'notebox_begin' %}
-The Python SDK requires Python 2.7.
-{% include 'notebox_end' %}
+The Python SDK supports Python 2.7 and 3.4+
 
 h3. Option 1: Install with pip
 
 This installation method is recommended to make the SDK available for use in your own Python programs. It can coexist with the system-wide installation method from a distribution package (option 2, below).
 
-Run @pip-2.7 install arvados-python-client@ in an appropriate installation environment, such as a virtualenv.
+Run @pip install arvados-python-client@ in an appropriate installation environment, such as a virtualenv.
 
-If your version of @pip@ is 1.4 or newer, the @pip install@ command might give an error: "Could not find a version that satisfies the requirement arvados-python-client". If this happens, try @pip-2.7 install --pre arvados-python-client@.
+If your version of @pip@ is 1.4 or newer, the @pip install@ command might give an error: "Could not find a version that satisfies the requirement arvados-python-client". If this happens, try @pip install --pre arvados-python-client@.
 
 h3. Option 2: Install from a distribution package