From d5391574c47a11e0b94583d65af4e17d2ac88ffc Mon Sep 17 00:00:00 2001 From: Jamie Lennox Date: Tue, 17 Jun 2014 10:43:21 +1000 Subject: [PATCH] Remove wheel from dependencies I might be wrong here, but i think wheel should only be needed during upload time for bdist_wheel. Having it in requirements.txt like that means that pbr will pick it up as an actual dependency. --- .travis.yml | 2 +- dev-requirements.txt | 3 +++ requirements.txt | 1 - 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 dev-requirements.txt diff --git a/.travis.yml b/.travis.yml index cfd206b..b2411f5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ python: - "pypy" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors -install: pip install coverage coveralls -r requirements.txt -r test-requirements.txt +install: pip install coverage coveralls wheel -r requirements.txt -r test-requirements.txt # command to run tests, e.g. python setup.py test script: coverage run -m testtools.run discover diff --git a/dev-requirements.txt b/dev-requirements.txt new file mode 100644 index 0000000..f807df6 --- /dev/null +++ b/dev-requirements.txt @@ -0,0 +1,3 @@ +coverage +sphinx +wheel diff --git a/requirements.txt b/requirements.txt index 03ee8d5..640e3d4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,2 @@ requests six -wheel==0.22.0