Skip to content

Commit fa8e31d

Browse files
committed
Build and doc essentials for the 5.6.0 release
1 parent c50b435 commit fa8e31d

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

docs/asciidoc/installation.asciidoc

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -341,18 +341,17 @@ wget https://bootstrap.pypa.io/ez_setup.py -O - | python - --user
341341

342342
=== Urllib3
343343
Download and install the https://github.com/shazow/urllib3[urllib3] dependency
344-
(1.8.3 or greater):
344+
(1.22):
345345

346-
. `wget https://github.com/shazow/urllib3/archive/1.20.tar.gz -O urllib3-1.20.tar.gz`
347-
. `pip install urllib3-1.20.tar.gz`
346+
. `wget https://github.com/shazow/urllib3/archive/1.22.tar.gz -O urllib3-1.22.tar.gz`
347+
. `pip install urllib3-1.22.tar.gz`
348348

349349
or uncompress and run `python setup.py install`
350350

351351
 
352352

353353
=== click
354-
Download and install the http://click.pocoo.org/[click] dependency (6.0 or
355-
greater):
354+
Download and install the http://click.pocoo.org/[click] dependency (6.7):
356355

357356
. `wget https://github.com/pallets/click/archive/6.7.tar.gz -O click-6.7.tar.gz`
358357
. `pip install click-6.7.tar.gz`
@@ -365,7 +364,7 @@ or uncompress and run `python setup.py install`
365364
Download and install the `certifi` dependency. Always use the most recent
366365
version:
367366

368-
. `wget https://github.com/certifi/python-certifi/archive/2018.04.16.tar.gz -O certifi.tar.gz`
367+
. `wget https://github.com/certifi/python-certifi/archive/2018.10.15.tar.gz -O certifi.tar.gz`
369368
. `pip install certifi.tar.gz`
370369

371370
 
@@ -383,10 +382,10 @@ or uncompress and run `python setup.py install`
383382

384383
=== voluptuous
385384
Download and install the https://github.com/alecthomas/voluptuous[voluptuous]
386-
dependency (0.9.3 or greater):
385+
dependency (0.11.5):
387386

388-
. `wget https://github.com/alecthomas/voluptuous/archive/0.9.3.tar.gz`
389-
. `pip install 0.9.3.tar.gz`
387+
. `wget https://github.com/alecthomas/voluptuous/archive/0.11.5.tar.gz`
388+
. `pip install 0.11.5.tar.gz`
390389

391390
or uncompress and run `python setup.py install`
392391

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ boto3>=1.7.24
44
requests_aws4auth>=0.9
55
click>=6.7,<7.0
66
pyyaml>=3.10
7-
certifi>=2018.4.16
7+
certifi>=2018.10.15
88
six>=1.11.0

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ install_requires =
2626
requests_aws4auth>=0.9
2727
click>=6.7,<7.0
2828
pyyaml>=3.10
29-
certifi>=2018.4.16
29+
certifi>=2018.10.15
3030
six>=1.11.0
3131

3232
setup_requires =
@@ -36,7 +36,7 @@ setup_requires =
3636
requests_aws4auth>=0.9
3737
click>=6.7,<7.0
3838
pyyaml>=3.10
39-
certifi>=2018.4.16
39+
certifi>=2018.10.15
4040
six>=1.11.0
4141

4242
packages = curator

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def get_install_requires():
2828
res.append('click>=6.7,<7.0')
2929
res.append('pyyaml>=3.10')
3030
res.append('voluptuous>=0.9.3')
31-
res.append('certifi>=2018.4.16')
31+
res.append('certifi>=2018.10.15')
3232
res.append('six>=1.11.0')
3333
return res
3434

unix_packages/build_official_package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ BASEPATH=$(pwd)
44
PKG_TARGET=/curator_packages
55
WORKDIR=/tmp/curator
66
PYVER=3.6
7-
MINOR=5
7+
MINOR=7
88
INPUT_TYPE=python
99
CATEGORY=python
1010
VENDOR=Elastic

unix_packages/build_package_from_source.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ BASEPATH=$(pwd)
44
PKG_TARGET=/curator_packages
55
WORKDIR=/tmp/curator
66
PYVER=3.6
7-
MINOR=5
7+
MINOR=7
88
INPUT_TYPE=python
99
CATEGORY=python
1010
VENDOR=Elastic

0 commit comments

Comments
 (0)