Skip to content

Commit d61ab49

Browse files
committed
strict python-jenkins dependency in setup.py
1 parent 272a937 commit d61ab49

2 files changed

Lines changed: 7 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: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
raise RuntimeError('Unable to find version string.')
1616

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

2121
tests_require = ['unittest2==1.1.0',
@@ -32,9 +32,12 @@
3232
license='http://opensource.org/licenses/MIT',
3333
classifiers=(
3434
'Natural Language :: English',
35+
'Environment :: Console',
36+
'Intended Audience :: Developers',
3537
'Programming Language :: Python',
36-
'Programming Language :: Python :: 3',
37-
'Programming Language :: Python :: 2',
38+
'Programming Language :: Python :: 2.7',
39+
'Programming Language :: Python :: 3.4',
40+
'Programming Language :: Python :: 3.5',
3841
'License :: OSI Approved :: MIT License',
3942
),
4043
packages=find_packages(),

0 commit comments

Comments
 (0)