Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[MESSAGES CONTROL]
disable=too-many-arguments,unexpected-keyword-arg,pointless-string-statement
disable=too-many-arguments,unexpected-keyword-arg,pointless-string-statement,useless-object-inheritance
max-line-length=120
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ install: make install
script:
- make coverage
- make lint
# @see https://github.com/nickstenning/travis-pip-cache/issues/1
cache: pip
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

VERSION = '2.2.7'
VERSION = '2.3.0'

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