Skip to content

Commit fad8dfb

Browse files
committed
strict dependencies in setup.py
1 parent 272a937 commit fad8dfb

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ python:
44
- "3.4"
55
- "3.5"
66
install:
7-
pip install flake8
7+
- pip install flake8 mock==1.3.0
88
script:
99
- flake8 .
1010
- python setup.py test

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
else:
1515
raise RuntimeError('Unable to find version string.')
1616

17-
requires = ['pbr>=1.6.0',
18-
'python-jenkins>=0.4.8',
19-
'six>=1.9.0']
17+
requires = ['pbr==1.6.0',
18+
'python-jenkins==0.4.8',
19+
'six==1.9.0']
2020

2121
tests_require = ['unittest2==1.1.0',
2222
'mock==1.3.0',

0 commit comments

Comments
 (0)