Skip to content

Commit

Permalink
Add setuptools update to .travis.yml
Browse files Browse the repository at this point in the history
A bug in mocks `setup.py` means that setuptools cannot find the six module. Updating setuptools satisfies this dependency.

pypa/setuptools#1002 (comment)
jaraco (setuptools contributor) 'You can't use setup_requires to indicate setuptools'

https:/testing-cabal/mock/blob/master/setup.py#L5
mock/setup.py
```
import setuptools

setuptools.setup(
    setup_requires=['pbr>=1.3', 'setuptools>=17.1'],
    pbr=True)
```
  • Loading branch information
benvand committed May 25, 2017
1 parent c28203e commit 9289a85
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ python:
- "2.7"
- "3.4"
install:
- pip install -U setuptools
- pip install --no-use-wheel -r requirements_for_test.txt
script:
- make test
Expand Down

0 comments on commit 9289a85

Please sign in to comment.