Skip to content

Commit 6e2a3b6

Browse files
author
Nikita Grachev
committed
Changed requests lib from version 2.6 to 2.4 because RebelMouse uses patched requests 2.4 version
1 parent 1b28288 commit 6e2a3b6

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,7 @@
1313
2.2.2
1414
====
1515
- Fixe for bug created in 2.2.1 on 'save_template' function which now accepts 'template_fields' as a parameter with default value 'None'.
16+
17+
2.2.2.1-request-fix
18+
====
19+
- Changed requests lib from version 2.6 to 2.4 because RebelMouse uses patched requests 2.4 version.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
requests >= 2.6.0
1+
requests==v2.4.3.4

sailthru/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
__doc__ = 'Python binding for Sailthru API based on Requests'
77
__copyright__ = 'Copyright 2012-2015, Sailthru Inc.'
88
__license__ = 'MIT'
9-
__version__ = '2.2.1'
9+
__version__ = '2.2.2.1'

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22

3-
setup(name='sailthru-client',
4-
version='2.2.2',
3+
setup(name='sailthru-client',
4+
version='2.2.2.1',
55
packages=find_packages(),
66
description='Python client for Sailthru API',
77
long_description=open('README.md').read(),
@@ -14,7 +14,7 @@
1414
"Natural Language :: English",
1515
],
1616
install_requires=[
17-
'requests >= 2.6.0',
17+
'requests == v2.4.3.4',
1818
'simplejson >= 3.0.7'
1919
],
2020
keywords='sailthru api',

0 commit comments

Comments
 (0)