Skip to content

Commit 8cb3998

Browse files
committed
Version upgrade and travis change to elastic 5.5.0
1 parent 5ce5907 commit 8cb3998

File tree

5 files changed

+17
-12
lines changed

5 files changed

+17
-12
lines changed

.travis.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,18 @@ python:
44
- "2.7"
55
- "3.6"
66

7+
before_install:
8+
- sudo update-java-alternatives -s java-8-oracle
9+
- export JAVA_HOME=/usr/lib/jvm/java-8-oracle/jre
10+
- java -version
11+
712
install:
8-
- pip install tox-travis
9-
- pip install codecov
10-
- mkdir /tmp/elasticsearch
11-
- wget -O - http://s3-eu-west-1.amazonaws.com/build.eu-west-1.elastic.co/origin/2.0/nightly/JDK7/elasticsearch-latest-SNAPSHOT.tar.gz | tar xz --directory=/tmp/elasticsearch --strip-components=1
12-
- /tmp/elasticsearch/bin/elasticsearch -d --path.data /tmp --discovery.zen.ping.multicast.enabled false --script.inline on --script.indexed on --path.repo=/tmp --repositories.url.allowed_urls='http://*' --node.testattr=test
13-
- git clone https://github.com/elastic/elasticsearch.git ../elasticsearch
13+
- pip install tox-travis
14+
- pip install codecov
15+
- mkdir /tmp/elasticsearch
16+
- wget -O - https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.5.0.tar.gz | tar xz --directory=/tmp/elasticsearch --strip-components=1
17+
- /tmp/elasticsearch/bin/elasticsearch -d -E script.inline=true -E path.repo=/tmp -E repositories.url.allowed_urls='http://*' -E node.attr.testattr=test
18+
- git clone https://github.com/elastic/elasticsearch.git ../elasticsearch
1419

1520
script: tox
1621

requirements/requirements_py27.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
elasticsearch==5.1.0
2-
requests==2.12.4
1+
elasticsearch==5.4.0
2+
requests==2.18.1
33
enum==0.4.6

requirements/requirements_py36.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
elasticsearch==5.1.0
2-
requests==2.12.4
1+
elasticsearch==5.4.0
2+
requests==2.18.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# Versions should comply with PEP440. For a discussion on single-sourcing
3535
# the version across setup.py and the project code, see
3636
# https://packaging.python.org/en/latest/single_source_version.html
37-
version='1.0.0b3',
37+
version='1.0.0b4',
3838

3939
description='Elasticsearch Log handler for the logging library',
4040
long_description=long_description,

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
sonar.projectKey=cmr.python:python-elasticsearch-logger
22
sonar.projectName=Python Elasticsearch Logger
3-
sonar.projectVersion=1.0.0b3
3+
sonar.projectVersion=1.0.0b4
44
sonar.verbose=DEBUG
55
sonar.language=py
66
sonar.sources=cmreslogging

0 commit comments

Comments
 (0)