Skip to content

Commit

Permalink
Require requests <2.8 to avoid memoryview bug
Browse files Browse the repository at this point in the history
This should remain in place until urllib3/urllib3#717 and
kennethreitz/requests#2848 are released.
  • Loading branch information
Derek Ludwig committed Nov 23, 2015
1 parent 241ef3c commit e6fa14c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ requirements:
- python
- setuptools
- clyent
- requests
- requests <2.8
- pyyaml
- dateutil
- pytz
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
nbformat
PyYAML
requests
requests<2.8
python-dateutil
pytz
pillow
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
description='Anaconda.org command line client library',
packages=find_packages(),
install_requires=['clyent',
'requests>=2.0',
'requests>=2.0,<2.8',
'pyyaml',
'python-dateutil',
'pytz'],
Expand Down

0 comments on commit e6fa14c

Please sign in to comment.