Skip to content

Commit

Permalink
Document optional backports.lzma dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Oct 1, 2015
1 parent 60dcabb commit 8a04959
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
11 changes: 11 additions & 0 deletions docs/gaviota.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,14 @@ pure Python probing code is used.
.. autoclass:: chess.gaviota.NativeTablebases
:members:

backports.lzma
--------------

For Python versions before 3.3 you have to install ``backports.lzma`` in order
to use the pure Python probing code.

.. code-block:: shell
sudo apt-get install liblzma-dev libpython2.7-dev
pip install backports.lzma
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@ def dependencies():
if sys.version_info < (3, 2):
deps.append("futures")

if sys.version_info < (3, 4):
deps.append("enum34")

return deps


Expand Down

0 comments on commit 8a04959

Please sign in to comment.