From 7d2ac316a8595c273dd5e80367ac0956ad2b534f Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Mon, 25 Dec 2017 11:29:01 -0800 Subject: [PATCH] Note LZMA support on Python 2 Mention that LZMA is supported on Python 2 with `backports.lzma`. --- numcodecs/lzma.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numcodecs/lzma.py b/numcodecs/lzma.py index e9e8b059..5f7521b6 100644 --- a/numcodecs/lzma.py +++ b/numcodecs/lzma.py @@ -21,7 +21,7 @@ # noinspection PyShadowingBuiltins class LZMA(Codec): """Codec providing compression using lzma via the Python standard - library (only available under Python 3). + library (available on Python 3 and Python 2 with ``backports.lzma``). Parameters ----------