1# -*- coding: utf-8 -*-
2
3from sys import version_info as v
4
5collect_ignore = []
6
7if not (v[0] >= 3 and v[1] >= 5):
8    collect_ignore.append("test_async.py")
9
10if not (v[0] >= 3 and v[1] >= 7):
11    collect_ignore.append("test_trio.py")
12