Skip to content

Commit d4fa00b

Browse files
authored
Merge pull request #10 from macbre/update-dependencies
Update dev dependencies
2 parents 13d19c9 + 0c7946d commit d4fa00b

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[MESSAGES CONTROL]
2-
disable=too-many-arguments,unexpected-keyword-arg,pointless-string-statement
2+
disable=too-many-arguments,unexpected-keyword-arg,pointless-string-statement,useless-object-inheritance
33
max-line-length=120

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ install: make install
88
script:
99
- make coverage
1010
- make lint
11+
# @see https://github.com/nickstenning/travis-pip-cache/issues/1
12+
cache: pip

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup
22

3-
VERSION = '2.2.7'
3+
VERSION = '2.3.0'
44

55
# @see https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py
66
with open("README.md", "r") as fh:
@@ -21,9 +21,9 @@
2121
py_modules=["elasticsearch_query"],
2222
extras_require={
2323
'dev': [
24-
'coverage==4.5.1',
25-
'pylint==1.9.2', # 2.x branch is for Python 3
26-
'pytest==3.9.3',
24+
'coverage==4.5.2',
25+
'pylint>=1.9.2, <=2.1.1', # 2.x branch is for Python 3
26+
'pytest==4.0.0',
2727
]
2828
},
2929
install_requires=[

0 commit comments

Comments
 (0)