Skip to content

Commit 4384c00

Browse files
committed
changed hardcoded version dependencies
1 parent 8b2e94a commit 4384c00

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

FuelSDK/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import suds.wsse
1111
from suds.sax.element import Element
1212

13-
from FuelSDK.objects import ET_DataExtension,ET_Subscriber
13+
from objects import ET_DataExtension,ET_Subscriber
1414

1515

1616
class ET_Client(object):

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PyJWT==0.1.9
22
distribute==0.7.3
3-
requests==2.2.1
3+
requests>=2.2.1
44
suds==0.4
55
wsgiref==0.1.2

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
url='https://github.com/ExactTarget/FuelSDK-Python',
1616
license='MIT',
1717
install_requires=[
18-
'pyjwt==0.1.9',
19-
'requests==2.2.1',
20-
'suds==0.4',
18+
'pyjwt>=0.1.9',
19+
'requests>=2.2.1',
20+
'suds>=0.4',
2121
],
2222
classifiers=[
2323
'Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)