diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-29 09:11:20 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-29 09:11:20 -0400 |
commit | 2af97b024fb776be760eff44c602549151055649 (patch) | |
tree | 8653b402098b39b0dcc18cd0c260b4d5720ea740 | |
parent | 353dff3141e8e0ea3d92ef63f74bcd3729febb42 (diff) | |
download | python-coveragepy-git-2af97b024fb776be760eff44c602549151055649.tar.gz |
Pin all the versions
-rw-r--r-- | .travis.yml | 4 | ||||
-rw-r--r-- | doc/requirements.txt | 9 | ||||
-rw-r--r-- | requirements.txt | 4 | ||||
-rw-r--r-- | tox.ini | 1 |
4 files changed, 11 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 9a0a3627..7af26488 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,8 +13,8 @@ python: - pypy install: - - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi - - pip install PyContracts + - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2==1.1.0; fi + - pip install PyContracts==1.7.6 - python setup.py clean develop before_script: diff --git a/doc/requirements.txt b/doc/requirements.txt index 81778351..968313ef 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -1,4 +1,7 @@ # PyPI requirements for building documentation for coverage.py -pyenchant -sphinx -sphinxcontrib-spelling + +# https://requires.io/github/nedbat/coveragepy/requirements/ + +pyenchant==1.6.6 +sphinx==1.3.1 +sphinxcontrib-spelling==2.1.2 diff --git a/requirements.txt b/requirements.txt index fbd9b890..2cea99ff 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 # For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt +# https://requires.io/github/nedbat/coveragepy/requirements/ + # PyPI requirements for running tests for coverage.py nose==1.3.7 -mock==1.3.0 -PyContracts==1.7.6 tox==2.1.1 # and for linting... @@ -22,6 +22,7 @@ commands = python igor.py test_with_tracer c {posargs} deps = + # https://requires.io/github/nedbat/coveragepy/requirements/ nose==1.3.7 mock==1.3.0 PyContracts==1.7.6 |