diff options
-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 |