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

Commit 88ae472

Browse files
authored
Update ibmcloudsql and botocore. (#112)
- Update ibmcloudsql from `0.3.13` to `0.3.14`. - Explicitly add botocore `1.15.46` and tornado `4.5.2` to the requirements.txt file. These modules were indirectly required by ibmcloudsql before. The update to 0.3.13 removed these depdencies. Therefore the modules were not installed anymore. This caused actions to fail, since they were using e.g. botocore. Now adding these modules to have them again. In the future the build should take care, that no modules are removed. Even when introduced due to indirect dependencies. Because we can not be sure that users do not use them.
1 parent 62d7bab commit 88ae472

File tree

2 files changed

+90
-1
lines changed

2 files changed

+90
-1
lines changed

python3.7/CHANGELOG.md

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

3+
## 1.17.0
4+
Changes:
5+
- update ibmcloudsql from `0.3.13` to `0.3.14`
6+
7+
Python version:
8+
- [3.7.5](https://github.com/docker-library/python/blob/ab8b829cfefdb460ebc17e570332f0479039e918/3.7/stretch/Dockerfile)
9+
10+
Python packages:
11+
- attrs==19.3.0
12+
- Automat==0.8.0
13+
- beautifulsoup4==4.8.0
14+
- botocore==1.15.46
15+
- cassandra-driver==3.18.0
16+
- certifi==2019.11.28
17+
- cffi==1.13.2
18+
- chardet==3.0.4
19+
- click==7.1.1
20+
- cloudant==2.12.0
21+
- constantly==15.1.0
22+
- cryptography==2.8
23+
- cssselect==1.1.0
24+
- docutils==0.15.2
25+
- elasticsearch==6.3.1
26+
- etcd3==0.10.0
27+
- Flask==1.0.2
28+
- gevent==1.4.0
29+
- greenlet==0.4.15
30+
- grpcio==1.28.1
31+
- httplib2==0.13.0
32+
- hyperlink==19.0.0
33+
- ibm-cos-sdk==2.5.1
34+
- ibm-cos-sdk-core==2.6.2
35+
- ibm-cos-sdk-s3transfer==2.6.2
36+
- ibm-db==3.0.1
37+
- ibmcloudsql==0.3.14
38+
- idna==2.7
39+
- incremental==17.5.0
40+
- itsdangerous==1.1.0
41+
- Jinja2==2.11.2
42+
- jmespath==0.9.5
43+
- kafka-python==1.4.6
44+
- lxml==4.3.4
45+
- MarkupSafe==1.1.1
46+
- numpy==1.16.4
47+
- pandas==0.24.2
48+
- parsel==1.5.2
49+
- pika==1.0.1
50+
- Pillow==6.2.2
51+
- pip==20.0.2
52+
- protobuf==3.11.3
53+
- psycopg2==2.8.2
54+
- pyarrow==0.15.1
55+
- pyasn1==0.4.8
56+
- pyasn1-modules==0.2.7
57+
- pycparser==2.19
58+
- PyDispatcher==2.0.5
59+
- PyHamcrest==1.9.0
60+
- PyJWT==1.7.1
61+
- pymongo==3.8.0
62+
- pyOpenSSL==19.1.0
63+
- python-dateutil==2.8.0
64+
- pytz==2019.3
65+
- queuelib==1.5.0
66+
- redis==3.2.1
67+
- requests==2.22.0
68+
- scikit-learn==0.20.3
69+
- scipy==1.2.1
70+
- Scrapy==1.6.0
71+
- service-identity==18.1.0
72+
- setuptools==46.1.3
73+
- simplejson==3.16.0
74+
- six==1.14.0
75+
- soupsieve==2.0
76+
- tenacity==6.1.0
77+
- tornado==4.5.2
78+
- Twisted==20.3.0
79+
- urllib3==1.23
80+
- virtualenv==16.7.1
81+
- w3lib==1.21.0
82+
- watson-developer-cloud==2.8.1
83+
- websocket-client==0.48.0
84+
- Werkzeug==1.0.1
85+
- wheel==0.33.6
86+
- zope.interface==4.7.1
87+
388
## 1.16.0
489
Changes:
590
- update ibmcloudsql from `0.2.23` to `0.3.13`

python3.7/requirements.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ibm_db == 3.0.1
3131
cloudant == 2.12.0
3232
watson-developer-cloud == 2.8.1
3333
ibm-cos-sdk == 2.5.1
34-
ibmcloudsql == 0.3.13
34+
ibmcloudsql == 0.3.14
3535

3636
# Compose Libs
3737
psycopg2 == 2.8.2
@@ -41,3 +41,7 @@ pika == 1.0.1
4141
elasticsearch == 6.3.1
4242
cassandra-driver == 3.18.0
4343
etcd3 == 0.10.0
44+
45+
# Other required modules
46+
botocore == 1.15.46
47+
tornado == 4.5.2

0 commit comments

Comments
 (0)