diff options
-rw-r--r-- | doc/requirements.pip | 10 | ||||
-rw-r--r-- | requirements/dev.pip | 10 | ||||
-rw-r--r-- | requirements/pip.pip | 4 | ||||
-rw-r--r-- | requirements/pytest.pip | 8 | ||||
-rw-r--r-- | requirements/tox.pip | 4 | ||||
-rw-r--r-- | requirements/wheel.pip | 2 | ||||
-rw-r--r-- | tox.ini | 4 |
7 files changed, 22 insertions, 20 deletions
diff --git a/doc/requirements.pip b/doc/requirements.pip index 6d889177..b8a55afd 100644 --- a/doc/requirements.pip +++ b/doc/requirements.pip @@ -2,12 +2,12 @@ # https://requires.io/github/nedbat/coveragepy/requirements/ -doc8==0.8.0 -pyenchant==2.0.0 +doc8==0.8.1 +pyenchant==3.1.1 sphinx==2.4.3 -sphinx-rst-builder==0.0.1 -sphinxcontrib-spelling==4.3.0 -sphinx_rtd_theme==0.4.3 +sphinx-rst-builder==0.0.3 +sphinxcontrib-spelling==5.1.2 +sphinx_rtd_theme==0.5.0 sphinx-autobuild==0.7.1 # Our own fork that allows linkcheck to work: git+https://github.com/nedbat/sphinx-tabs.git@master#egg=sphinx-tabs diff --git a/requirements/dev.pip b/requirements/dev.pip index 96591414..f7abd1b6 100644 --- a/requirements/dev.pip +++ b/requirements/dev.pip @@ -13,11 +13,11 @@ pluggy==0.13.1 -r pytest.pip # for linting. -greenlet==0.4.15 -pylint==2.5.2 -check-manifest==0.40 +greenlet==0.4.16 +pylint==2.5.3 +check-manifest==0.42 readme_renderer==26.0 # for kitting. -requests==2.22.0 -twine==2.0.0 +requests==2.24.0 +twine==3.2.0 diff --git a/requirements/pip.pip b/requirements/pip.pip index 71c7f213..aa51bca3 100644 --- a/requirements/pip.pip +++ b/requirements/pip.pip @@ -1,5 +1,5 @@ # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt -pip==20.0.2 -virtualenv==16.7.9 +pip==20.1.1 +virtualenv==20.0.25 diff --git a/requirements/pytest.pip b/requirements/pytest.pip index 3b549974..795b1d3f 100644 --- a/requirements/pytest.pip +++ b/requirements/pytest.pip @@ -4,14 +4,16 @@ # The pytest specifics used by coverage.py # 4.x is last to support py2 -pytest==4.6.6 -pytest-xdist==1.30.0 +pytest==4.6.11 +pytest-xdist==1.32.0 flaky==3.6.1 +# 4.x is py3-only mock==3.0.5 # Use a fork of PyContracts that supports Python 3.9 #PyContracts==1.8.12 git+https://github.com/slorg1/contracts@collections_and_validator -hypothesis==4.41.2 +# hypothesis 5.x is py3-only +hypothesis==4.57.1 # Our testing mixins unittest-mixins==1.6 diff --git a/requirements/tox.pip b/requirements/tox.pip index a6279c32..55cab915 100644 --- a/requirements/tox.pip +++ b/requirements/tox.pip @@ -2,6 +2,6 @@ # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt # The version of tox used by coverage.py -tox==3.14.3 +tox==3.16.1 # Adds env recreation on requirements file changes. -tox-battery==0.5.2 +tox-battery==0.6.1 diff --git a/requirements/wheel.pip b/requirements/wheel.pip index abef9db4..2fd03ad2 100644 --- a/requirements/wheel.pip +++ b/requirements/wheel.pip @@ -3,5 +3,5 @@ # Things needed to make wheels for coverage.py -setuptools==41.4.0 +setuptools==44.1.1 wheel==0.34.2 @@ -16,9 +16,9 @@ deps = # https://requires.io/github/nedbat/coveragepy/requirements/ -r requirements/pip.pip -r requirements/pytest.pip - setuptools==41.4.0 + -r requirements/wheel.pip # gevent 1.3 causes a failure: https://github.com/nedbat/coveragepy/issues/663 - py{27,35,36}: gevent==1.2.2 + py{27,35,36}: gevent==20.6.2 py{27,35,36,37,38}: eventlet==0.25.1 py{27,35,36,37,38}: greenlet==0.4.15 |