From: Salim Fadhley Date: Wed, 30 Jul 2014 21:26:49 +0000 (+0100) Subject: Version bump and update deps to the latest version. Also added a link to X-Git-Tag: v0.2.25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=59207ee8d78616e689589c06d8cfc8e06ee186eb;p=tools%2Fpython-jenkinsapi.git Version bump and update deps to the latest version. Also added a link to requires.io to the readme.rst file --- diff --git a/README.rst b/README.rst index 8380ace..45308b2 100644 --- a/README.rst +++ b/README.rst @@ -12,6 +12,10 @@ jenkinsapi .. image:: https://landscape.io/github/salimfadhley/jenkinsapi/master/landscape.png :target: https://landscape.io/github/salimfadhley/jenkinsapi + +.. image:: https://requires.io/github/salimfadhley/jenkinsapi/requirements.png?branch=master + :target: https://requires.io/github/salimfadhley/jenkinsapi/requirements/?branch=master + :alt: Requirements Status About this library ------------------- diff --git a/setup.py b/setup.py index 1e7a6e8..8366546 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup import os PROJECT_ROOT, _ = os.path.split(__file__) -REVISION = '0.2.24' +REVISION = '0.2.25' PROJECT_NAME = 'JenkinsAPI' PROJECT_AUTHORS = "Salim Fadhley, Aleksey Maksimov" # Please see readme.rst for a complete list of contributors @@ -28,7 +28,7 @@ setup( packages=['jenkinsapi', 'jenkinsapi.utils', 'jenkinsapi.command_line', 'jenkinsapi_tests'], zip_safe=True, include_package_data=False, - install_requires=['requests>=1.2.3', 'pytz>=2013b'], + install_requires=['requests>=2.3.0', 'pytz>=2014.4'], test_suite='nose.collector', tests_require=['mock', 'nose', 'coverage', 'unittest2'], entry_points=GLOBAL_ENTRY_POINTS,