Skip to content

Commit 246dcb7

Browse files
committed
Python 3-only Pyrsistent release broke the universe.
1 parent 188973a commit 246dcb7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

hdijupyterutils/requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ jupyter>=1
77
pandas>=0.17.1
88
numpy
99
notebook>=4.2
10+
# Work around broken-on-Python-2 pyrsistent release:
11+
pyrsistent < 0.17 ; python_version < '3.0'

hdijupyterutils/setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,7 @@ def version(path):
6464
'jupyter>=1',
6565
'pandas>=0.17.1',
6666
'numpy',
67-
'notebook>=4.2'
67+
'notebook>=4.2',
68+
# Work around broken-on-Python-2 pyrsistent release:
69+
"pyrsistent < 0.17 ; python_version < '3.0'",
6870
])

0 commit comments

Comments
 (0)