This commit is contained in:
Sean Whalen
2019-04-11 16:01:44 -04:00
parent 60cefa8066
commit ce7655ec8f
3 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ python:
before_install:
- "sudo apt-get update"
- "sudo apt-get install -y libemail-outlook-message-perl"
- "curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.0.0.deb && sudo dpkg -i --force-confnew elasticsearch-67.0.0.deb && sudo service elasticsearch restart"
- "curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.0.0.deb && sudo dpkg -i --force-confnew elasticsearch-7.0.0.deb && sudo service elasticsearch restart"
install:
- "pip install -r requirements.txt"
+2 -2
View File
@@ -17,6 +17,6 @@ geoip2>=2.9.0
imapclient>=2.1.0
mail-parser>=3.9.2
dateparser>=0.7.1
elasticsearch>=6.3.1
elasticsearch-dsl>=0.0.12
elasticsearch>=6.3.1<7.0.0
elasticsearch-dsl>=6.3.1<7.0.0
kafka-python>=1.4.4
+4 -2
View File
@@ -96,8 +96,10 @@ setup(
'publicsuffix2', 'xmltodict>=0.12.0', 'geoip2>=2.9.0',
'urllib3>=1.21.1', 'requests>=2.2.16.0',
'imapclient>=2.1.0', 'mail-parser>=3.9.2',
'dateparser>=0.7.1', 'elasticsearch>=6.3.1',
'elasticsearch-dsl>=0.0.12', 'kafka-python>=1.4.4',
'dateparser>=0.7.1',
'elasticsearch>=6.3.1<7.0.0',
'elasticsearch-dsl>=6.3.1,<7.0.0',
'kafka-python>=1.4.4',
'tqdm>=4.31.1'
],