Skip to content

Commit

Permalink
allow older versions of requests in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kanzure committed Jan 30, 2013
1 parent e479c60 commit 31f9a87
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.rst
Expand Up @@ -46,7 +46,9 @@ Testing
Changelog
----------

* 0.1.4: override _set_proxy_headers to not send "Accept" headers to the proxy
* 0.1.5: fix dependencies to allow requests>=0.14.2 to stop installing the latest version.

* 0.1.4: override _set_proxy_headers to not send "Accept" headers to the proxy.

* 0.1.3: support both requests==1.0.4 and requests==0.14.2, which is useful for proxy support.

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -3,7 +3,7 @@

setup(
name="careful-requests",
version="0.1.4",
version="0.1.5",
url="https://github.com/kanzure/careful-requests",
license="BSD",
author="Bryan Bishop",
Expand All @@ -13,7 +13,7 @@
packages=["careful_requests"],
zip_safe=False,
include_package_data=True,
install_requires=["requests"],
install_requires=["requests>=0.14.2"],
platforms="any",
classifiers=[
"Environment :: Web Environment",
Expand Down

0 comments on commit 31f9a87

Please sign in to comment.