Skip to content

Commit d7a05bd

Browse files
committed
Merge remote-tracking branch 'upstream/master' into channels2
2 parents 7e969a2 + dc150c4 commit d7a05bd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/flask_gevent/template.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ def render_graphiql():
1818
width: 100%;
1919
}
2020
</style>
21-
<link href="//cdn.jsdelivr.net/graphiql/${GRAPHIQL_VERSION}/graphiql.css" rel="stylesheet" />
21+
<link href="//cdn.jsdelivr.net/npm/graphiql@${GRAPHIQL_VERSION}/graphiql.css" rel="stylesheet" />
2222
<script src="//cdn.jsdelivr.net/fetch/0.9.0/fetch.min.js"></script>
2323
<script src="//cdn.jsdelivr.net/react/15.0.0/react.min.js"></script>
2424
<script src="//cdn.jsdelivr.net/react/15.0.0/react-dom.min.js"></script>
25-
<script src="//cdn.jsdelivr.net/graphiql/${GRAPHIQL_VERSION}/graphiql.min.js"></script>
25+
<script src="//cdn.jsdelivr.net/npm/graphiql@${GRAPHIQL_VERSION}/graphiql.min.js"></script>
2626
<script src="//unpkg.com/subscriptions-transport-ws@${SUBSCRIPTIONS_TRANSPORT_VERSION}/browser/client.js"></script>
2727
<script src="//unpkg.com/[email protected]/browser/client.js"></script>
2828
</head>
@@ -117,7 +117,7 @@ def render_graphiql():
117117
</script>
118118
</body>
119119
</html>''').substitute(
120-
GRAPHIQL_VERSION='0.11.7',
120+
GRAPHIQL_VERSION='0.12.0',
121121
SUBSCRIPTIONS_TRANSPORT_VERSION='0.7.0',
122122
subscriptionsEndpoint='ws://localhost:5000/subscriptions',
123123
# subscriptionsEndpoint='ws://localhost:5000/',

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ pytest-runner==2.11.1
1111
gevent
1212
graphene>=2.0
1313
django
14-
channels
14+
channels<2

0 commit comments

Comments
 (0)