We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 797dad6 commit f4ab74dCopy full SHA for f4ab74d
1 file changed
jdata/jdata.py
@@ -14,9 +14,13 @@
14
import numpy as np
15
import copy
16
import zlib
17
-import lzma
18
import base64
19
+try:
20
+ import lzma
21
+except ImportError:
22
+ from backports import lzma
23
+
24
##====================================================================================
25
## global variables
26
0 commit comments