File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 2121from setuptools .command .sdist import sdist as sdist
2222
2323
24- CYTHON_DEPENDENCY = 'Cython(>=0.29.20 ,<0.30.0)'
24+ CYTHON_DEPENDENCY = 'Cython(>=0.29.24 ,<0.30.0)'
2525
2626# Minimal dependencies required to test uvloop.
2727TEST_DEPENDENCIES = [
Original file line number Diff line number Diff line change @@ -11,8 +11,11 @@ def test_cython_coro_is_coroutine(self):
1111
1212 coro = _test_coroutine_1 ()
1313
14+ coro_fmt = _format_coroutine (coro )
1415 self .assertTrue (
15- _format_coroutine (coro ).startswith ('_test_coroutine_1() done' ))
16+ coro_fmt .startswith ('_test_coroutine_1() done' )
17+ or coro_fmt .startswith ('_test_coroutine_1() running' )
18+ )
1619 self .assertEqual (_test_coroutine_1 .__qualname__ , '_test_coroutine_1' )
1720 self .assertEqual (_test_coroutine_1 .__name__ , '_test_coroutine_1' )
1821 self .assertTrue (asyncio .iscoroutine (coro ))
You can’t perform that action at this time.
0 commit comments