Skip to content

Commit

Permalink
Increment version and pin sendgrid to 4.2.0 until further notice
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Sklar committed Aug 10, 2017
1 parent a76696c commit 91df96a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ python:
- "nightly" # currently points to 3.7-dev
install:
- "pip install -r dev-requirements.txt"
- "pip install sendgrid"
- "pip install sendgrid==4.2.0"
- "pip install django==$DJANGO_VERSION"
script: nosetests -c nose.cfg
2 changes: 1 addition & 1 deletion sendgrid_backend/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.3a"
__version__ = "0.6.4a"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="django-sendgrid-v4",
version="0.6.3a",
version="0.6.4a0",
description="An implementation of Django's EmailBackend compatible with sendgrid-python v4+",
long_description=long_description,
url="https://github.com/sklarsa/django-sendgrid-v4",
Expand All @@ -28,5 +28,5 @@
],
keywords="django email sendgrid backend",
packages=find_packages(exclude=["test", ]),
install_requires=["django >=1.8", "sendgrid >=4.0.0", "python-http-client >=2.3.0"]
install_requires=["django >=1.8", "sendgrid >=4.0.0, <4.2.1", "python-http-client >=2.3.0"]
)

0 comments on commit 91df96a

Please sign in to comment.