Skip to content

Commit

Permalink
Do not require inbound parser to be installed
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Apr 3, 2019
1 parent 3c8db45 commit b07bbfa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sendgrid/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.0.0
6.0.2
2 changes: 1 addition & 1 deletion sendgrid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from .sendgrid import SendGridAPIClient # noqa
from .helpers.mail import * # noqa
from .helpers.endpoints import * # noqa
from .helpers.inbound import * # noqa
# from .helpers.inbound import * # noqa
from .helpers.stats import * # noqa

dir_path = os.path.dirname(os.path.realpath(__file__))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def getRequires():
author='Elmer Thomas, Yamil Asusta',
author_email='[email protected]',
url='https://github.com/sendgrid/sendgrid-python/',
packages=find_packages(exclude=["temp*.py", "test", "inbound"]),
packages=find_packages(exclude=["temp*.py", "test"]),
include_package_data=True,
license='MIT',
description='SendGrid library for Python',
Expand Down

0 comments on commit b07bbfa

Please sign in to comment.