Skip to content

Commit b07bbfa

Browse files
Do not require inbound parser to be installed
1 parent 3c8db45 commit b07bbfa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

sendgrid/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.0.0
1+
6.0.2

sendgrid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from .sendgrid import SendGridAPIClient # noqa
2020
from .helpers.mail import * # noqa
2121
from .helpers.endpoints import * # noqa
22-
from .helpers.inbound import * # noqa
22+
# from .helpers.inbound import * # noqa
2323
from .helpers.stats import * # noqa
2424

2525
dir_path = os.path.dirname(os.path.realpath(__file__))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def getRequires():
2222
author='Elmer Thomas, Yamil Asusta',
2323
author_email='[email protected]',
2424
url='https://github.com/sendgrid/sendgrid-python/',
25-
packages=find_packages(exclude=["temp*.py", "test", "inbound"]),
25+
packages=find_packages(exclude=["temp*.py", "test"]),
2626
include_package_data=True,
2727
license='MIT',
2828
description='SendGrid library for Python',

0 commit comments

Comments
 (0)