File tree Expand file tree Collapse file tree 5 files changed +9
-27
lines changed Expand file tree Collapse file tree 5 files changed +9
-27
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ language: python
4
4
sudo : required
5
5
6
6
python :
7
- - " 2.7"
8
- - " 3.5"
9
7
- " 3.6"
10
8
- " 3.7"
11
9
- " 3.8"
Original file line number Diff line number Diff line change 1
- async-generator == 1.10 ; python_version >= "3.6"
1
+ async-generator == 1.10
2
2
codacy-coverage == 1.3.11
3
3
mock == 3.0.5
4
4
pytest-cov == 2.8.1
5
- pytest-tornasync == 0.6.0.post2 ; python_version >= '3.5'
6
- pytest-trio == 0.5.2 ; python_version >= "3.6"
7
- pytest == 4.6.6 ; python_version < "3.5"
8
- pytest == 5.4.1 ; python_version >= "3.5"
5
+ pytest-tornasync == 0.6.0.post2
6
+ pytest-trio == 0.5.2
7
+ pytest == 5.4.1
9
8
six == 1.14.0
10
- tornado == 5.1.1 ; python_version < "3.6"
11
- tornado == 6.0.4 ; python_version >= "3.6"
12
- trio == 0.13.0 ; python_version >= "3.6"
13
- outcome == 1.0.1 ; python_version >= "3.5"
14
- attrs == 19.3.0 ; python_version >= "3.5"
9
+ tornado == 6.0.4
10
+ trio == 0.13.0
11
+ outcome == 1.0.1
12
+ attrs == 19.3.0
Original file line number Diff line number Diff line change 66
66
classifiers = [
67
67
'Intended Audience :: Developers' ,
68
68
'Natural Language :: English' ,
69
- 'Programming Language :: Python :: 2' ,
70
- 'Programming Language :: Python :: 2.7' ,
71
- 'Programming Language :: Python :: 3' ,
72
- 'Programming Language :: Python :: 3.5' ,
69
+ 'Programming Language :: Python :: 3 :: Only' ,
73
70
'Programming Language :: Python :: 3.6' ,
74
71
'Programming Language :: Python :: 3.7' ,
75
72
'Programming Language :: Python :: 3.8' ,
Original file line number Diff line number Diff line change 7
7
8
8
@pytest .mark .tornado
9
9
@pytest .mark .integration
10
- @pytest .mark .skipif (sys .version_info < (3 , 6 ), reason = "requires python3.6 or higher" )
11
10
class TestTornado (IntegrationTestCaseBase ):
12
11
def setup_method (self ):
13
12
super (TestTornado , self ).setup_method ()
@@ -20,10 +19,5 @@ def teardown_method(self):
20
19
self .r .set_loop_type (None )
21
20
22
21
async def test_tornado_list_tables (self ):
23
- """
24
- Test the flow for 3.6 and up, async generators are
25
- not supported in 3.5.
26
- """
27
-
28
22
tables = self .r .table_list ().run (self .conn )
29
23
assert isinstance (tables , list )
Original file line number Diff line number Diff line change @@ -17,11 +17,6 @@ def teardown_method(self):
17
17
self .r .set_loop_type (None )
18
18
19
19
async def test_trio (self , nursery ):
20
- """
21
- Test the flow for 3.6 and up, async generators are
22
- not supported in 3.5.
23
- """
24
-
25
20
async with self .r .open (db = INTEGRATION_TEST_DB , nursery = nursery ) as conn :
26
21
await self .r .table (self .table_name ).insert (
27
22
{
You can’t perform that action at this time.
0 commit comments