Skip to content

Commit

Permalink
Merge pull request #788 from untergeek/fix/787
Browse files Browse the repository at this point in the history
Fix versioning issues
  • Loading branch information
untergeek committed Oct 19, 2016
2 parents 2a642dc + 86962df commit 9b59098
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
- ES_VERSION=2.2.2
- ES_VERSION=2.3.5
- ES_VERSION=2.4.0
- ES_VERSION=5.0.0-beta1
- ES_VERSION=5.0.0-rc1

os: linux

Expand Down
6 changes: 6 additions & 0 deletions docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ Changelog
4.2.0 (? ? ?)
-------------

**General**

* Update testing to the most recent versions.
* Lock elasticsearch-py module version at >= 2.4.0 and <= 3.0.0. There are
API changes in the 5.0 release that cause tests to fail.

**Bug Fixes**

* Guarantee that binary packages are built from the latest Python + libraries.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
urllib3>=1.8.3
elasticsearch>=2.4.0,<5.1.0
elasticsearch>=2.4.0,<3.0.0
click>=3.3
pyyaml>=3.10
voluptuous>=0.9.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_version():
return VERSION

def get_install_requires():
res = ['elasticsearch>=2.4.0,<5.1.0' ]
res = ['elasticsearch>=2.4.0,<3.0.0' ]
res.append('click>=3.3')
res.append('pyyaml>=3.10')
res.append('voluptuous>=0.9.3')
Expand Down

0 comments on commit 9b59098

Please sign in to comment.