From 0dc769abfb5f7821e2309f30494d94d9051cc903 Mon Sep 17 00:00:00 2001 From: Alex Dancho Date: Wed, 2 May 2018 12:45:37 -0400 Subject: Add blinker to Sanic dependencies. Pulling 6.7.0 and trying to do, `from raven.contrib.sanic import Sentry`, I get the following traceback: ``` Traceback (most recent call last): File "application.py", line 1, in from raven.contrib.sanic import Sentry File "/usr/local/lib/python3.6/site-packages/raven/contrib/sanic.py", line 13, in import blinker ModuleNotFoundError: No module named 'blinker' ``` That's my bad. This should resolve that. --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 15cb7df..25e6909 100755 --- a/setup.py +++ b/setup.py @@ -61,7 +61,10 @@ if sys.version_info[0] == 3: # If it's Python 3.5+, add Sanic packages. if sys.version_info >= (3, 5): - sanic_requires = ['sanic>=0.7.0', ] + sanic_requires = [ + 'blinker>=1.1', + 'sanic>=0.7.0', + ] sanic_tests_requires = ['aiohttp', ] tests_require = [ -- cgit v1.2.1