Skip to content

Commit

Permalink
Changed requests lib from version 2.6 to 2.4 because RebelMouse uses …
Browse files Browse the repository at this point in the history
…patched requests 2.4 version
  • Loading branch information
Nikita Grachev committed Mar 2, 2016
1 parent 1b28288 commit 6e2a3b6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@
2.2.2
====
- Fixe for bug created in 2.2.1 on 'save_template' function which now accepts 'template_fields' as a parameter with default value 'None'.

2.2.2.1-request-fix
====
- Changed requests lib from version 2.6 to 2.4 because RebelMouse uses patched requests 2.4 version.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
requests >= 2.6.0
requests==v2.4.3.4
2 changes: 1 addition & 1 deletion sailthru/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
__doc__ = 'Python binding for Sailthru API based on Requests'
__copyright__ = 'Copyright 2012-2015, Sailthru Inc.'
__license__ = 'MIT'
__version__ = '2.2.1'
__version__ = '2.2.2.1'
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(name='sailthru-client',
version='2.2.2',
setup(name='sailthru-client',
version='2.2.2.1',
packages=find_packages(),
description='Python client for Sailthru API',
long_description=open('README.md').read(),
Expand All @@ -14,7 +14,7 @@
"Natural Language :: English",
],
install_requires=[
'requests >= 2.6.0',
'requests == v2.4.3.4',
'simplejson >= 3.0.7'
],
keywords='sailthru api',
Expand Down

0 comments on commit 6e2a3b6

Please sign in to comment.