Skip to content

Commit f6fb010

Browse files
author
Kevin D Smith
committed
Update doc to reflect new Python version support
1 parent 43e30bd commit f6fb010

File tree

2 files changed

+27
-8
lines changed

2 files changed

+27
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To view updates to this project see the [Change Log](https://github.com/sassoftw
2828

2929
To access the CAS binary protocol (recommended), you need the following:
3030

31-
* **64-bit** Python 2.7.x or 3.4+ on Windows or Linux (see shared library notes below)
31+
* **64-bit** Python 2.7.x or 3.5+ on Windows or Linux (see shared library notes below)
3232

3333
The binary protocol requires pre-compiled components found in the
3434
`pip` installer only. These pieces are not available as source code and
@@ -38,7 +38,7 @@ amounts of data. It also offers more advanced data loading from the client
3838
and data formatting features.
3939

4040
To access the CAS REST interface only, you can use the pure Python code
41-
which runs in Python 2.7/3.4+ on all platforms. While not as fast as the
41+
which runs in Python 2.7/3.5+ on all platforms. While not as fast as the
4242
binary protocol, the pure Python interface is more portable.
4343

4444
## Linux Library Dependencies

doc/source/install.rst

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Installation
77
The SWAT package is installed using the ``pip`` command. The requirements
88
for using the binary protocol of CAS (recommended) are as follows.
99

10-
* **64-bit** Python 2.7 or 3.4+ on Linux or Windows
10+
* **64-bit** Python 2.7 or 3.5+ on Linux or Windows
1111

1212
See additional shared library notes below.
1313

@@ -19,7 +19,7 @@ amounts of data. It also offers more advanced data loading from the client
1919
and data formatting features.
2020

2121
To access the CAS REST interface only, you can use the pure Python code which
22-
runs in Python 2.7/3.4+. You will still need Pandas installed. While not as
22+
runs in Python 2.7/3.5+. You will still need Pandas installed. While not as
2323
fast as the binary protocol, the pure Python interface is more portable.
2424
For more information, see :ref:`Binary vs. REST <binaryvsrest>`.
2525

@@ -44,18 +44,37 @@ make binary protocol connections to CAS. If you do not have this library on
4444
your machine you can install the ``numactl`` package for your distribution
4545
to make it available to SWAT.
4646

47+
Note that if you use an Anaconda distribution of Python, ``libnuma.so.1`` will
48+
be installed as a dependency automatically.
49+
4750

4851
Python Dependencies
4952
-------------------
5053

5154
The SWAT package uses many features of the Pandas Python package and other
52-
dependencies of Pandas. If you do not already have version 0.16.0 or greater
53-
of Pandas installed, ``pip`` will install or update it for you when you
55+
dependencies of Pandas. If you do not already have version 0.16 or greater
56+
of Pandas installed, ``pip`` or ``conda`` will install or update it for you when you
5457
install SWAT.
5558

5659

57-
Pip
58-
---
60+
PyPI
61+
----
62+
63+
SWAT can be installed from PyPI using ``pip`` as follows:
64+
65+
pip install swat
66+
67+
68+
Conda
69+
-----
70+
71+
If you use an Anaconda distribution of Python, you can use ``conda`` to install SWAT:
72+
73+
conda install -c sas-institute swat
74+
75+
76+
Github
77+
------
5978

6079
SWAT can be installed from `<https://github.com/sassoftware/python-swat/releases>`_.
6180
Simply locate the file for your platform and install it using ``pip`` as

0 commit comments

Comments
 (0)