We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b564e14 commit a0d8b71Copy full SHA for a0d8b71
graphene/signals.py
@@ -1,4 +1,9 @@
1
-from blinker import Signal
+try:
2
+ from blinker import Signal
3
+except ImportError:
4
+ class Signal(object):
5
+ def send(self, *args, **kwargs):
6
+ pass
7
8
init_schema = Signal()
9
class_prepared = Signal()
setup.py
@@ -55,7 +55,6 @@ def run_tests(self):
55
56
install_requires=[
57
'six>=1.10.0',
58
- 'blinker',
59
'graphql-core==0.4.9',
60
'graphql-relay==0.3.3'
61
],
0 commit comments