File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
[pytest]
2
- addopts = --capture =no --assert =plain --strict --tb native
2
+ addopts = --capture =no --assert =plain --strict-markers --tb = native -- import-mode =importlib
3
3
testpaths = tests
4
4
filterwarnings = default
Original file line number Diff line number Diff line change 32
32
# pycodestyle is a dependency of flake8, but it must be frozen because
33
33
# their combination breaks too often
34
34
# (example breakage: https://gitlab.com/pycqa/flake8/issues/427)
35
- 'pycodestyle~=2.5 .0' ,
36
- 'flake8~=3.7.9 ' ,
35
+ 'pycodestyle~=2.7 .0' ,
36
+ 'flake8~=3.9.2 ' ,
37
37
'uvloop>=0.15.3; platform_system != "Windows" and python_version >= "3.7"' ,
38
38
]
39
39
40
40
# Dependencies required to build documentation.
41
41
DOC_DEPENDENCIES = [
42
- 'Sphinx~=1.7.3 ' ,
43
- 'sphinxcontrib-asyncio~=0.2 .0' ,
44
- 'sphinx_rtd_theme~=0.2.4 ' ,
42
+ 'Sphinx~=4.1.2 ' ,
43
+ 'sphinxcontrib-asyncio~=0.3 .0' ,
44
+ 'sphinx_rtd_theme~=0.5.2 ' ,
45
45
]
46
46
47
47
EXTRA_DEPENDENCIES = {
50
50
# Dependencies required to develop asyncpg.
51
51
'dev' : [
52
52
CYTHON_DEPENDENCY ,
53
- 'pytest>=3. 6.0' ,
53
+ 'pytest>=6.0' ,
54
54
] + DOC_DEPENDENCIES + TEST_DEPENDENCIES
55
55
}
56
56
You can’t perform that action at this time.
0 commit comments