Skip to content

Commit 26e0660

Browse files
committed
Bump development dependencies
1 parent fe7eb02 commit 26e0660

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pytest.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[pytest]
2-
addopts = --capture=no --assert=plain --strict --tb native
2+
addopts = --capture=no --assert=plain --strict-markers --tb=native --import-mode=importlib
33
testpaths = tests
44
filterwarnings = default

setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@
3232
# pycodestyle is a dependency of flake8, but it must be frozen because
3333
# their combination breaks too often
3434
# (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',
3737
'uvloop>=0.15.3; platform_system != "Windows" and python_version >= "3.7"',
3838
]
3939

4040
# Dependencies required to build documentation.
4141
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',
4545
]
4646

4747
EXTRA_DEPENDENCIES = {
@@ -50,7 +50,7 @@
5050
# Dependencies required to develop asyncpg.
5151
'dev': [
5252
CYTHON_DEPENDENCY,
53-
'pytest>=3.6.0',
53+
'pytest>=6.0',
5454
] + DOC_DEPENDENCIES + TEST_DEPENDENCIES
5555
}
5656

0 commit comments

Comments
 (0)