File tree 2 files changed +3
-27
lines changed
2 files changed +3
-27
lines changed Original file line number Diff line number Diff line change 3
3
from setuptools import setup , find_packages
4
4
5
5
install_requires = [
6
- "graphql-core>=3.1.4 ,<3.2" ,
6
+ "graphql-core>=3.1.5 ,<3.2" ,
7
7
"yarl>=1.6,<2.0" ,
8
8
]
9
9
Original file line number Diff line number Diff line change @@ -264,32 +264,9 @@ def test_multiple_operations(ds):
264
264
),
265
265
)
266
266
267
- """
268
- From graphql-core version 3.1.5, print_ast() break arguments over multiple lines
269
- Accepting both cases here
270
- """
271
-
272
267
assert (
273
- (
274
- print_ast (query )
275
- == """query GetHeroName {
276
- hero {
277
- name
278
- }
279
- }
280
-
281
- mutation CreateReviewMutation {
282
- createReview(episode: JEDI, review: {stars: 5, \
283
- commentary: "This is a great movie!"}) {
284
- stars
285
- commentary
286
- }
287
- }
288
- """
289
- )
290
- or (
291
- print_ast (query )
292
- == """query GetHeroName {
268
+ print_ast (query )
269
+ == """query GetHeroName {
293
270
hero {
294
271
name
295
272
}
@@ -305,7 +282,6 @@ def test_multiple_operations(ds):
305
282
}
306
283
}
307
284
"""
308
- )
309
285
)
310
286
311
287
You can’t perform that action at this time.
0 commit comments