From 10eed6344cf255f48bdee0b665381969ba27bde9 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 11 Dec 2011 11:39:57 -0500 Subject: [PATCH] v0.8.4 --- HISTORY.rst | 6 ++++++ requests/__init__.py | 5 +++-- setup.py | 12 +++++++----- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 487cc86..4b595f3 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ History ------- +0.8.4 (2011-12-11) +++++++++++++++++++ + +* Prefetch bugfix. +* Added license to installed version. + 0.8.3 (2011-11-27) ++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index e09c834..a1ddac6 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,13 +15,14 @@ requests """ __title__ = 'requests' -__version__ = '0.8.3' -__build__ = 0x000803 +__version__ = '0.8.4' +__build__ = 0x000804 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz' + from . import utils from .models import Request, Response from .api import request, get, head, post, patch, put, delete, options diff --git a/setup.py b/setup.py index 53e770a..0d81d05 100755 --- a/setup.py +++ b/setup.py @@ -12,12 +12,12 @@ except ImportError: -if sys.argv[-1] == "publish": - os.system("python setup.py sdist upload") +if sys.argv[-1] == 'publish': + os.system('python setup.py sdist upload') sys.exit() -if sys.argv[-1] == "test": - os.system("python test_requests.py") +if sys.argv[-1] == 'test': + os.system('python test_requests.py') sys.exit() required = [] @@ -34,12 +34,14 @@ setup( author='Kenneth Reitz', author_email='me@kennethreitz.com', url='http://python-requests.org', - packages= [ + packages=[ 'requests', 'requests.packages', 'requests.packages.urllib3', 'requests.packages.oreos' ], + package_data={'': ['LICENSE', 'NOTICE']}, + include_package_data=True, install_requires=required, license='ISC', classifiers=( -- 2.7.4