We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 188973a commit 246dcb7Copy full SHA for 246dcb7
hdijupyterutils/requirements.txt
@@ -7,3 +7,5 @@ jupyter>=1
7
pandas>=0.17.1
8
numpy
9
notebook>=4.2
10
+# Work around broken-on-Python-2 pyrsistent release:
11
+pyrsistent < 0.17 ; python_version < '3.0'
hdijupyterutils/setup.py
@@ -64,5 +64,7 @@ def version(path):
64
'jupyter>=1',
65
'pandas>=0.17.1',
66
'numpy',
67
- 'notebook>=4.2'
+ 'notebook>=4.2',
68
+ # Work around broken-on-Python-2 pyrsistent release:
69
+ "pyrsistent < 0.17 ; python_version < '3.0'",
70
])
0 commit comments