Skip to content

Commit

Permalink
Merge pull request #64 from TracyWebTech/update-urllib
Browse files Browse the repository at this point in the history
Update urllib
  • Loading branch information
seocam committed Mar 29, 2016
2 parents bbce321 + 5d8daa7 commit 26ed651
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@

0.9.11 (2016-03-29)
===================

* Updated urllib3 to 1.12 (at least)


0.9.10 (2016-02-03)
==================
===================

* Fixed Python 3 compatibility issue (see #59 and #61). Thanks @stefanklug and @macro1!

Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ Dependencies
------------

* django >= 1.7
* urllib3 == 1.10.1
* diazo >= 1.0.1 (optional)
* lxml >= 3.4, < 3.5 (optional, diazo dependency)
* urllib3 >= 1.12
* diazo >= 1.0.5 (optional)
* lxml >= 3.4, < 3.5 (optional, but diazo dependency)


Install
Expand Down
2 changes: 1 addition & 1 deletion revproxy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.9.10'
__version__ = '0.9.11'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def find_version(*file_paths):
long_description=read('README.rst'),
packages=['revproxy'],
install_requires=[
'django>=1.6',
'urllib3==1.10.1',
'django>=1.7',
'urllib3>=1.12',
],
# lxml 3.5 doesn't work with pypy
extras_require={
Expand Down

0 comments on commit 26ed651

Please sign in to comment.