mozilla / django-browserid

Django application for adding BrowserID support.
Mozilla Public License 2.0
180 stars 80 forks source link

Work with old versions of requests #232

Closed peterbe closed 10 years ago

peterbe commented 10 years ago

In setup.py we require requests>=0.9.1

The latest on PyPi is 2.2.1 so we're relying on a very old requests here.

What matters and what has changed is how the json thing on a response works. In old versions response.json returns a dictionary. In new versions response.json returns a callable.

peterbe commented 10 years ago

PR https://github.com/mozilla/django-browserid/pull/233

peterbe commented 10 years ago

PR #233 merged now.