diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | appveyor.yml | 4 | ||||
-rw-r--r-- | ci/requirements.pip | 4 |
3 files changed, 7 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index cbf91871..fab44244 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ env: - TOXENV=pypy install: - - pip install tox==2.1.1 + - pip install -r ci/requirements.pip script: - tox diff --git a/appveyor.yml b/appveyor.yml index c79e4f55..913aea61 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -107,8 +107,8 @@ install: # about it being out of date. - "pip install --disable-pip-version-check --user --upgrade pip" - # Install requirements. TODO: put this in a .pip file somewhere. - - "%CMD_IN_ENV% pip install setuptools==18.2 wheel==0.24.0 tox==2.1.1" + # Install requirements. + - "%CMD_IN_ENV% pip install -r ci/requirements.pip" build: off diff --git a/ci/requirements.pip b/ci/requirements.pip new file mode 100644 index 00000000..74bcc574 --- /dev/null +++ b/ci/requirements.pip @@ -0,0 +1,4 @@ +# Things to install in continuous integration environments. +setuptools==18.2 +tox==2.1.1 +wheel==0.24.0 |