2.3.4 release, requires requests 0.13.4 >, basically we don't have to url encode params anymore and can just pass a dict of params to the request (finally! :D)

This commit is contained in:
Mike Helmick 2012-07-27 12:10:36 -04:00
parent e1c4035a63
commit 9e5a96655d
2 changed files with 7 additions and 10 deletions

View file

@ -4,7 +4,7 @@ from setuptools import setup
from setuptools import find_packages
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '2.3.3'
__version__ = '2.3.4'
setup(
# Basic package information.
@ -16,7 +16,7 @@ setup(
include_package_data=True,
# Package dependencies.
install_requires=['simplejson', 'requests>=0.13.2'],
install_requires=['simplejson', 'requests>=0.13.4'],
# Metadata for PyPI.
author='Ryan McGrath',