Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

Commit d88faa7

Browse files
authored
bump python to 3.6.2 and 3.7 pkgs (#77)
1 parent 8840894 commit d88faa7

File tree

4 files changed

+207
-23
lines changed

4 files changed

+207
-23
lines changed

python3.6/CHANGELOG.md

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,95 @@
11
# IBM Functions Python 3.6 Runtime Container
22

3+
## 1.17.0
4+
Changes:
5+
- update python from `3.6.7` to `3.6.8`
6+
- update gevent from `1.3.7` back to `1.4.0`
7+
- update beautifulsoup4 from `4.6.3` back to `4.7.1`
8+
- update httplib2 from `0.11.3` back to `0.12.0`
9+
- update lxml from `4.2.5` back to `4.3.0`
10+
- update numpy from `1.15.4` back to `1.16.0`
11+
- update virtualenv from `16.1.0` back to `16.2.0`
12+
- update scikit-learn from `0.20.1` back to `0.20.2`
13+
- update scipy from `1.1.0` back to `1.2.0`
14+
- update Pillow from `5.3.0` back to `5.4.1`
15+
- update cloudant from `2.10.1` back to `2.10.2`
16+
- update ibm-cos-sdk from `2.4.0` back to `2.4.2`
17+
18+
Python version:
19+
- [3.6.8](https://github.com/docker-library/python/blob/721671c28aad96ad2c1970e83c2af71ceff15f1b/3.6/jessie/slim/Dockerfile)
20+
21+
- Python packages:
22+
- asn1crypto==0.24.0
23+
- attrs==18.2.0
24+
- autobahn==19.1.1
25+
- Automat==0.7.0
26+
- beautifulsoup4==4.7.1
27+
- botocore==1.12.80
28+
- cassandra-driver==3.16.0
29+
- certifi==2018.11.29
30+
- cffi==1.11.5
31+
- chardet==3.0.4
32+
- Click==7.0
33+
- cloudant==2.10.2
34+
- constantly==15.1.0
35+
- cryptography==2.4.2
36+
- cssselect==1.0.3
37+
- docutils==0.14
38+
- elasticsearch==5.5.3
39+
- Flask==1.0.2
40+
- gevent==1.4.0
41+
- greenlet==0.4.15
42+
- httplib2==0.12.0
43+
- hyperlink==18.0.0
44+
- ibm-cos-sdk==2.4.2
45+
- ibm-cos-sdk-core==2.4.2
46+
- ibm-cos-sdk-s3transfer==2.4.2
47+
- ibm-db==2.0.9
48+
- ibmcloudsql==0.2.23
49+
- idna==2.8
50+
- incremental==17.5.0
51+
- itsdangerous==1.1.0
52+
- Jinja2==2.10
53+
- jmespath==0.9.3
54+
- kafka-python==1.4.4
55+
- lxml==4.3.0
56+
- MarkupSafe==1.1.0
57+
- numpy==1.16.0
58+
- pandas==0.23.4
59+
- parsel==1.5.1
60+
- pika==0.12.0
61+
- Pillow==5.4.1
62+
- psycopg2==2.7.6.1
63+
- pyarrow==0.11.1
64+
- pyasn1==0.4.5
65+
- pyasn1-modules==0.2.3
66+
- pycparser==2.19
67+
- PyDispatcher==2.0.5
68+
- PyHamcrest==1.9.0
69+
- pymongo==3.7.2
70+
- pyOpenSSL==18.0.0
71+
- python-dateutil==2.7.5
72+
- pytz==2018.9
73+
- queuelib==1.5.0
74+
- redis==2.10.6
75+
- requests==2.21.0
76+
- scikit-learn==0.20.2
77+
- scipy==1.2.0
78+
- Scrapy==1.5.1
79+
- service-identity==18.1.0
80+
- simplejson==3.16.0
81+
- six==1.12.0
82+
- soupsieve==1.7.1
83+
- tornado==4.5.2
84+
- Twisted==18.9.0
85+
- txaio==18.8.1
86+
- urllib3==1.24.1
87+
- virtualenv==16.2.0
88+
- w3lib==1.20.0
89+
- watson-developer-cloud==1.7.1
90+
- Werkzeug==0.14.1
91+
- zope.interface==4.6.0
92+
-
393
## 1.16.0
494
- update requests from `2.20.1` back to `2.21.0`
595
- update ibm-cos-sdk from `2.3.3` back to `2.4.0`

python3.6/requirements.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
# Requirements.txt contains a list of dependencies for the Python Application #
22

33
# Setup modules
4-
gevent == 1.3.7
4+
gevent == 1.4.0
55
flask == 1.0.2
66

77
# default available packages for python3action
8-
beautifulsoup4 == 4.6.3
9-
httplib2 == 0.11.3
8+
beautifulsoup4 == 4.7.1
9+
httplib2 == 0.12.0
1010
kafka_python == 1.4.4
11-
lxml == 4.2.5
11+
lxml == 4.3.0
1212
python-dateutil == 2.7.5
1313
requests == 2.21.0
1414
scrapy == 1.5.1
1515
simplejson == 3.16.0
16-
virtualenv == 16.1.0
16+
virtualenv == 16.2.0
1717
twisted == 18.9.0
1818

1919
# packages for numerics
20-
numpy == 1.15.4
21-
scikit-learn == 0.20.1
22-
scipy == 1.1.0
20+
numpy == 1.16.0
21+
scikit-learn == 0.20.2
22+
scipy == 1.2.0
2323
pandas == 0.23.4
2424

2525
# packages for image processing
26-
Pillow == 5.3.0
26+
Pillow == 5.4.1
2727

2828
# IBM specific python modules
2929
ibm_db == 2.0.9
30-
cloudant == 2.10.1
30+
cloudant == 2.10.2
3131
# pin watson at 1.x, for 2.x use python:3.7 runtime
3232
watson-developer-cloud == 1.7.1
33-
ibm-cos-sdk == 2.4.0
33+
ibm-cos-sdk == 2.4.2
3434
ibmcloudsql == 0.2.23
3535

3636
# Compose Libs

python3.7/CHANGELOG.md

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,99 @@
11
# IBM Functions Python 3.7 Runtime Container
22

3+
## 1.6.0
4+
Changes:
5+
- update gevent from `1.3.7` back to `1.4.0`
6+
- update beautifulsoup4 from `4.6.3` back to `4.7.1`
7+
- update httplib2 from `0.11.3` back to `0.12.0`
8+
- update lxml from `4.2.5` back to `4.3.0`
9+
- update numpy from `1.15.4` back to `1.16.0`
10+
- update virtualenv from `16.1.0` back to `16.2.0`
11+
- update scikit-learn from `0.20.1` back to `0.20.2`
12+
- update scipy from `1.1.0` back to `1.2.0`
13+
- update Pillow from `5.3.0` back to `5.4.1`
14+
- update cloudant from `2.10.1` back to `2.10.2`
15+
- update ibm-cos-sdk from `2.4.0` back to `2.4.2`
16+
- update watson-developer-cloud from `2.5.1` back to `2.5.4`
17+
18+
Python version:
19+
- [3.7.2](https://github.com/docker-library/python/blob/ab8b829cfefdb460ebc17e570332f0479039e918/3.7/stretch/Dockerfile)
20+
21+
Python packages:
22+
- asn1crypto==0.24.0
23+
- attrs==18.2.0
24+
- Automat==0.7.0
25+
- beautifulsoup4==4.7.1
26+
- botocore==1.12.80
27+
- cassandra-driver==3.16.0
28+
- certifi==2018.11.29
29+
- cffi==1.11.5
30+
- chardet==3.0.4
31+
- Click==7.0
32+
- cloudant==2.10.2
33+
- constantly==15.1.0
34+
- cryptography==2.4.2
35+
- cssselect==1.0.3
36+
- docutils==0.14
37+
- elasticsearch==6.3.1
38+
- etcd3==0.8.1
39+
- Flask==1.0.2
40+
- gevent==1.4.0
41+
- greenlet==0.4.15
42+
- grpcio==1.18.0
43+
- httplib2==0.12.0
44+
- hyperlink==18.0.0
45+
- ibm-cos-sdk==2.4.2
46+
- ibm-cos-sdk-core==2.4.2
47+
- ibm-cos-sdk-s3transfer==2.4.2
48+
- ibm-db==2.0.9
49+
- ibmcloudsql==0.2.23
50+
- idna==2.7
51+
- incremental==17.5.0
52+
- itsdangerous==1.1.0
53+
- Jinja2==2.10
54+
- jmespath==0.9.3
55+
- kafka-python==1.4.4
56+
- lxml==4.3.0
57+
- MarkupSafe==1.1.0
58+
- numpy==1.16.0
59+
- pandas==0.23.4
60+
- parsel==1.5.1
61+
- pika==0.12.0
62+
- Pillow==5.4.1
63+
- protobuf==3.6.1
64+
- psycopg2==2.7.6.1
65+
- pyarrow==0.11.1
66+
- pyasn1==0.4.5
67+
- pyasn1-modules==0.2.3
68+
- pycparser==2.19
69+
- PyDispatcher==2.0.5
70+
- PyHamcrest==1.9.0
71+
- pymongo==3.7.2
72+
- pyOpenSSL==18.0.0
73+
- python-dateutil==2.7.5
74+
- pytz==2018.9
75+
- queuelib==1.5.0
76+
- redis==3.0.1
77+
- requests==2.21.0
78+
- scikit-learn==0.20.2
79+
- scipy==1.2.0
80+
- Scrapy==1.5.1
81+
- service-identity==18.1.0
82+
- simplejson==3.16.0
83+
- six==1.12.0
84+
- soupsieve==1.7.1
85+
- tenacity==5.0.2
86+
- tornado==4.5.2
87+
- Twisted==18.9.0
88+
- urllib3==1.23
89+
- virtualenv==16.2.0
90+
- w3lib==1.20.0
91+
- watson-developer-cloud==2.5.4
92+
- websocket-client==0.48.0
93+
- Werkzeug==0.14.1
94+
- zope.interface==4.6.0
95+
96+
397
## 1.5.0
498
- update python from `3.7.1` to `3.7.2`
599
- switch openwhisk web proxy to high performance actionloop

python3.7/requirements.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
# Requirements.txt contains a list of dependencies for the Python Application #
22

33
# Setup modules
4-
gevent == 1.3.7
4+
gevent == 1.4.0
55
flask == 1.0.2
66

77
# default available packages for python3action
8-
beautifulsoup4 == 4.6.3
9-
httplib2 == 0.11.3
8+
beautifulsoup4 == 4.7.1
9+
httplib2 == 0.12.0
1010
kafka_python == 1.4.4
11-
lxml == 4.2.5
11+
lxml == 4.3.0
1212
python-dateutil == 2.7.5
1313
requests == 2.21.0
1414
scrapy == 1.5.1
1515
simplejson == 3.16.0
16-
virtualenv == 16.1.0
16+
virtualenv == 16.2.0
1717
twisted == 18.9.0
1818

1919
# packages for numerics
20-
numpy == 1.15.4
21-
scikit-learn == 0.20.1
22-
scipy == 1.1.0
20+
numpy == 1.16.0
21+
scikit-learn == 0.20.2
22+
scipy == 1.2.0
2323
pandas == 0.23.4
2424

2525
# packages for image processing
26-
Pillow == 5.3.0
26+
Pillow == 5.4.1
2727

2828
# IBM specific python modules
2929
ibm_db == 2.0.9
30-
cloudant == 2.10.1
31-
watson-developer-cloud == 2.5.1
32-
ibm-cos-sdk == 2.4.0
30+
cloudant == 2.10.2
31+
watson-developer-cloud == 2.5.4
32+
ibm-cos-sdk == 2.4.2
3333
ibmcloudsql == 0.2.23
3434

3535
# Compose Libs

0 commit comments

Comments
 (0)