diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-10-06 21:08:39 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-10-06 21:08:39 -0400 |
commit | df6abbe9eef2e7884654d87be0bc1591d4f9cf6d (patch) | |
tree | e0f6df0f49d45c0affb2477645d192e30d13e271 | |
parent | c6559f4bcb6f1edd1aa486a289f3186d90552dde (diff) | |
download | python-coveragepy-git-df6abbe9eef2e7884654d87be0bc1591d4f9cf6d.tar.gz |
Update dependencies
-rw-r--r-- | doc/requirements.pip | 8 | ||||
-rw-r--r-- | requirements/ci.pip | 2 | ||||
-rw-r--r-- | requirements/dev.pip | 8 | ||||
-rw-r--r-- | requirements/pytest.pip | 4 | ||||
-rw-r--r-- | requirements/tox.pip | 5 | ||||
-rw-r--r-- | requirements/wheel.pip | 7 |
6 files changed, 19 insertions, 15 deletions
diff --git a/doc/requirements.pip b/doc/requirements.pip index 71b17134..8e3eed52 100644 --- a/doc/requirements.pip +++ b/doc/requirements.pip @@ -2,10 +2,8 @@ # https://requires.io/github/nedbat/coveragepy/requirements/ +doc8==0.8.0 pyenchant==2.0.0 -sphinx==1.7.6 +sphinx==1.8.1 sphinxcontrib-spelling==4.2.0 -sphinx_rtd_theme==0.4.1 - -# A version of doc8 with a -q flag. -git+https://github.com/nedbat/doc8.git#egg=doc8==0.0 +sphinx_rtd_theme==0.4.2 diff --git a/requirements/ci.pip b/requirements/ci.pip index cb94d737..fe17a4c4 100644 --- a/requirements/ci.pip +++ b/requirements/ci.pip @@ -5,4 +5,4 @@ -r tox.pip -r pytest.pip -r wheel.pip -tox-travis==0.10 +tox-travis==0.11 diff --git a/requirements/dev.pip b/requirements/dev.pip index b497deb8..107d00e4 100644 --- a/requirements/dev.pip +++ b/requirements/dev.pip @@ -4,7 +4,7 @@ # Requirements for doing local development work on coverage.py. # https://requires.io/github/nedbat/coveragepy/requirements/ -pip==18.0.0 +pip==18.1 virtualenv==16.0.0 # PyPI requirements for running tests. @@ -12,11 +12,11 @@ virtualenv==16.0.0 -r pytest.pip # for linting. -greenlet==0.4.14 +greenlet==0.4.15 pylint==1.9.2 check-manifest==0.37 -readme_renderer==21.0 +readme_renderer==22.0 # for kitting. requests==2.19.1 -twine==1.11.0 +twine==1.12.1 diff --git a/requirements/pytest.pip b/requirements/pytest.pip index a946a59a..fe7729de 100644 --- a/requirements/pytest.pip +++ b/requirements/pytest.pip @@ -3,9 +3,9 @@ # The pytest specifics used by coverage.py -pytest==3.8.0 +pytest==3.8.2 pluggy>=0.7 # pytest needs this, but pip doesn't understand -pytest-xdist==1.23.0 +pytest-xdist==1.23.2 flaky==3.4.0 mock==2.0.0 PyContracts==1.8.3 diff --git a/requirements/tox.pip b/requirements/tox.pip index 07d889e6..86a8f8df 100644 --- a/requirements/tox.pip +++ b/requirements/tox.pip @@ -1,4 +1,7 @@ +# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 +# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt + # The version of tox used by coverage.py -tox==3.2.1 +tox==3.4.0 # Adds env recreation on requirements file changes. tox-battery==0.5.1 diff --git a/requirements/wheel.pip b/requirements/wheel.pip index 30ac5455..2ef8a002 100644 --- a/requirements/wheel.pip +++ b/requirements/wheel.pip @@ -1,3 +1,6 @@ +# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 +# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt + # Things needed to make wheels for coverage.py -setuptools==40.0.0 -wheel==0.31.1 +setuptools==40.4.3 +wheel==0.32.1 |