Skip to content

Commit

Permalink
dill 0.2.7 causes recursion errors
Browse files Browse the repository at this point in the history
set transitions requirements to dill 0.2.6 or below until the problem can be pinpointed
  • Loading branch information
aleneum committed Jul 12, 2017
1 parent a874428 commit 19ec2ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
nose
mock
dill
dill<0.2.7
pygraphviz
pycodestyle
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
if len(set(('test', 'easy_install')).intersection(sys.argv)) > 0:
import setuptools

tests_require = ['dill', 'pygraphviz']
tests_require = ['dill<0.2.7', 'pygraphviz']

extra_setuptools_args = {}
if 'setuptools' in sys.modules:
Expand Down

0 comments on commit 19ec2ab

Please sign in to comment.