File tree 1 file changed +3
-11
lines changed
1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change 6
6
7
7
def find_version ():
8
8
version_file = (
9
- Path (__file__ )
10
- .parent .joinpath ("pytest_asyncio" , "__init__.py" )
11
- .read_text ()
12
- )
13
- version_match = re .search (
14
- r"^__version__ = ['\"]([^'\"]*)['\"]" , version_file , re .M
9
+ Path (__file__ ).parent .joinpath ("pytest_asyncio" , "__init__.py" ).read_text ()
15
10
)
11
+ version_match = re .search (r"^__version__ = ['\"]([^'\"]*)['\"]" , version_file , re .M )
16
12
if version_match :
17
13
return version_match .group (1 )
18
14
@@ -44,11 +40,7 @@ def find_version():
44
40
python_requires = ">= 3.7" ,
45
41
install_requires = ["pytest >= 5.4.0" ],
46
42
extras_require = {
47
- "testing" : [
48
- "coverage" ,
49
- "hypothesis >= 5.7.1" ,
50
- "flaky >= 3.5.0"
51
- ],
43
+ "testing" : ["coverage" , "hypothesis >= 5.7.1" , "flaky >= 3.5.0" ],
52
44
},
53
45
entry_points = {"pytest11" : ["asyncio = pytest_asyncio.plugin" ]},
54
46
)
You can’t perform that action at this time.
0 commit comments