Remove blinker dependency

This commit is contained in:
Syrus Akbary 2015-11-24 23:57:27 -08:00
parent b564e144df
commit a0d8b7162a
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,9 @@
from blinker import Signal
try:
from blinker import Signal
except ImportError:
class Signal(object):
def send(self, *args, **kwargs):
pass
init_schema = Signal()
class_prepared = Signal()

View File

@ -55,7 +55,6 @@ setup(
install_requires=[
'six>=1.10.0',
'blinker',
'graphql-core==0.4.9',
'graphql-relay==0.3.3'
],