File tree Expand file tree Collapse file tree
ansible/environments/local/group_vars Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ deploy:
1414 script : " ./tools/travis/publish.sh ibmfunctions master"
1515 on :
1616 branch : master
17+ repo : ibm-functions/runtime-python
1718 - provider : script
1819 script : " ./tools/travis/publish.sh ibmfunctions $TRAVIS_TAG"
1920 on :
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ apigw_host_v2: "http://{{ groups['apigateway']|first }}:{{apigateway.port.api}}/
2525invoker_allow_multiple_instances: true
2626env_hosts_dir: "{{ playbook_dir }}/environments/local"
2727
28+ skip_pull_runtimes: true
2829runtimes_manifest:
2930 defaultImagePrefix: "openwhisk"
3031 defaultImageTag: "latest"
Original file line number Diff line number Diff line change 11# IBM Functions Python 3 Runtime Container
22
3+ ## 1.9.0
4+ - update gevent from ` 1.2.2 ` to ` 1.3.3 `
5+ - update requests from ` 2.18.4 ` to ` 2.19.1 `
6+ - update numpy from ` 1.14.4 ` to ` 1.14.5 `
7+ - update pandas from ` 0.23.0 ` to ` 0.23.1 `
8+ - update cloudant from ` 2.8.1 ` to ` 2.9.0 `
9+ - update watson-developer-cloud from ` 1.3.5 ` to ` 1.4.0 `
10+ - update psycopg2 from ` 2.7.4 ` to ` 2.7.5 `
11+ - update pika from ` 0.11.2 ` to ` 0.12.0 `
12+
13+ Python version:
14+ - [ 3.6.5] ( https://github.com/docker-library/python/blob/b99b66406ebe728fb4da64548066ad0be6582e08/3.6/jessie/Dockerfile )
15+
16+ Python packages:
17+ - asn1crypto (0.24.0)
18+ - attrs (17.4.0)
19+ - autobahn (18.4.1)
20+ - Automat (0.6.0)
21+ - beautifulsoup4 (4.6.0)
22+ - botocore (1.10.4)
23+ - cassandra-driver (3.14.0)
24+ - certifi (2018.1.18)
25+ - cffi (1.11.5)
26+ - chardet (3.0.4)
27+ - click (6.7)
28+ - cloudant (2.9.0)
29+ - constantly (15.1.0)
30+ - cryptography (2.2.2)
31+ - cssselect (1.0.3)
32+ - docutils (0.14)
33+ - elasticsearch (6.2.0)
34+ - Flask (1.0.2)
35+ - gevent (1.3.3)
36+ - greenlet (0.4.13)
37+ - httplib2 (0.11.3)
38+ - hyperlink (18.0.0)
39+ - ibm-cos-sdk (2.1.1)
40+ - ibm-db (2.0.8a0)
41+ - ibmcloudsql (0.2.13)
42+ - idna (2.6)
43+ - incremental (17.5.0)
44+ - itsdangerous (0.24)
45+ - Jinja2 (2.10)
46+ - jmespath (0.9.3)
47+ - kafka-python (1.4.3)
48+ - lxml (4.2.1)
49+ - MarkupSafe (1.0)
50+ - numpy (1.14.5)
51+ - pandas (0.23.1)
52+ - parsel (1.4.0)
53+ - pika (0.12.0)
54+ - Pillow (5.1.0)
55+ - psycopg2 (2.7.5)
56+ - pyasn1 (0.4.2)
57+ - pyasn1-modules (0.2.1)
58+ - pycparser (2.18)
59+ - PyDispatcher (2.0.5)
60+ - pymongo (3.6.1)
61+ - pyOpenSSL (17.5.0)
62+ - pysolr (3.7.0)
63+ - python-dateutil (2.7.3)
64+ - pytz (2018.4)
65+ - queuelib (1.5.0)
66+ - redis (2.10.6)
67+ - requests (2.19.1)
68+ - scikit-learn (0.19.1)
69+ - scipy (1.1.0)
70+ - Scrapy (1.5.0)
71+ - service-identity (17.0.0)
72+ - simplejson (3.15.0)
73+ - six (1.11.0)
74+ - tornado (5.0.2)
75+ - Twisted (18.4.0)
76+ - txaio (2.10.0)
77+ - urllib3 (1.22)
78+ - virtualenv (16.0.0)
79+ - w3lib (1.19.0)
80+ - watson-developer-cloud (1.4.0)
81+ - Werkzeug (0.14.1)
82+ - wheel (0.30.0)
83+ - zope.interface (4.4.3)
384## 1.8.0
485- update numpy from ` 1.14.3 ` to ` 1.14.4 `
586- update watson-developer-cloud from ` 1.3.4 ` to ` 1.3.5 `
Original file line number Diff line number Diff line change 11# Requirements.txt contains a list of dependencies for the Python Application #
22
33# Setup modules
4- gevent == 1.2.2
4+ gevent == 1.3.3
55flask == 1.0.2
66
77# default available packages for python3action
@@ -10,32 +10,32 @@ httplib2 == 0.11.3
1010kafka_python == 1.4.3
1111lxml == 4.2.1
1212python-dateutil == 2.7.3
13- requests == 2.18.4
13+ requests == 2.19.1
1414scrapy == 1.5.0
1515simplejson == 3.15.0
1616virtualenv == 16.0.0
1717twisted == 18.4.0
1818
1919# packages for numerics
20- numpy == 1.14.4
20+ numpy == 1.14.5
2121scikit-learn == 0.19.1
2222scipy == 1.1.0
23- pandas == 0.23.0
23+ pandas == 0.23.1
2424
2525# packages for image processing
2626Pillow == 5.1.0
2727
2828# IBM specific python modules
2929ibm_db == 2.0.8a
30- cloudant == 2.8.1
31- watson-developer-cloud == 1.3.5
30+ cloudant == 2.9.0
31+ watson-developer-cloud == 1.4.0
3232ibm-cos-sdk == 2.1.1
3333ibmcloudsql == 0.2.13
3434
3535# Compose Libs
36- psycopg2 == 2.7.4
36+ psycopg2 == 2.7.5
3737pymongo == 3.6.1
3838redis == 2.10.6
39- pika == 0.11.2
39+ pika == 0.12.0
4040elasticsearch >= 5.0.0 ,< 6.0.0
4141cassandra-driver == 3.14.0
You can’t perform that action at this time.
0 commit comments