Skip to content

Commit 528127f

Browse files
authored
Merge pull request #3 from GetAmbassador/brandoshmando-patch-setup-py
Fix comparison operator in setup.py
2 parents 9c08259 + 91e469e commit 528127f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ paymentrails/__pycache__
44
paymentrails/exception/__pycache__
55
*.pyc
66
.env
7+
*.egg-info

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
setup (
44
name='paymentrails',
55
version='0.1',
6-
packages=["paymentrails", "paymentrails.exceptions"],
6+
packages=["paymentrails", "paymentrails.exceptions"],
77
package_data={"paymentrails": ["ssl/*"]},
8-
install_requires=['requests=2.13.0'],
8+
install_requires=['requests>=2.13.0'],
99
author='Jesse',
1010
author_email='[email protected]',
1111
summary='Payment Rails Python SDK',

0 commit comments

Comments
 (0)