summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-08-29 09:11:20 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-08-29 09:11:20 -0400
commit95836dfd51a3a6465384370fc241bd435944d1bf (patch)
tree76e7f6f3f942a30be624fabdc520086deca07b83
parent08fbf4359d717375833f6c20cf6a334080235b66 (diff)
downloadpython-coveragepy-95836dfd51a3a6465384370fc241bd435944d1bf.tar.gz
Pin all the versions
-rw-r--r--.travis.yml4
-rw-r--r--doc/requirements.txt9
-rw-r--r--requirements.txt4
-rw-r--r--tox.ini1
4 files changed, 11 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index 9a0a362..7af2648 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 8177835..968313e 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 fbd9b89..2cea99f 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...
diff --git a/tox.ini b/tox.ini
index d4aeeef..17db5c1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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