Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions python3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,83 @@
# IBM Functions Python 3 Runtime Container


## 1.2.0
Changes:
- added pandas (0.22.0)
- updated gevent from (1.2.1) to (1.2.2)
- updated flask from (0.12.0) to (0.12.2)
- updated beautifulsoup4 from (4.5.3) to (4.6.0)
- updated kafka_python from (1.3.4) to (1.3.5)
- updated python-dateutil from (2.6.0) to (2.6.1)
- updated requests from (2.13.0) to (2.18.4)
- updated scrapy from (1.3.3) to (1.5.0)
- updated simplejson from (3.10.0) to (3.13.2)
- updated twisted from (17.1.0) to (17.9.0)

Python version:
- [3.6.4](https://github.com/docker-library/python/blob/a1aa406bfd8c7b129e6e0ee0ba972b863624ac0d/3.6/jessie/Dockerfile)

Python packages:
- asn1crypto (0.24.0)
- attrs (17.4.0)
- Automat (0.6.0)
- beautifulsoup4 (4.6.0)
- certifi (2017.11.5)
- cffi (1.11.4)
- chardet (3.0.4)
- click (6.7)
- cloudant (2.7.0)
- constantly (15.1.0)
- cryptography (2.1.4)
- cssselect (1.0.3)
- docutils (0.14)
- Flask (0.12.2)
- gevent (1.2.2)
- greenlet (0.4.12)
- httplib2 (0.10.3)
- hyperlink (17.3.1)
- ibm-cos-sdk (2.0.0)
- ibm-cos-sdk-core (2.0.0)
- ibm-cos-sdk-s3transfer (2.0.0)
- ibm-db (2.0.8a0)
- idna (2.6)
- incremental (17.5.0)
- itsdangerous (0.24)
- Jinja2 (2.10)
- jmespath (0.9.3)
- kafka-python (1.3.5)
- lxml (4.1.1)
- MarkupSafe (1.0)
- numpy (1.14.0)
- pandas (0.22.0)
- parsel (1.3.1)
- pip (9.0.1)
- pyasn1 (0.4.2)
- pyasn1-modules (0.2.1)
- pycparser (2.18)
- PyDispatcher (2.0.5)
- pyOpenSSL (17.5.0)
- pysolr (3.7.0)
- python-dateutil (2.6.1)
- pytz (2017.3)
- queuelib (1.4.2)
- requests (2.18.4)
- scikit-learn (0.19.1)
- scipy (1.0.0)
- Scrapy (1.5.0)
- service-identity (17.0.0)
- setuptools (38.4.0)
- simplejson (3.13.2)
- six (1.11.0)
- Twisted (17.9.0)
- urllib3 (1.22)
- virtualenv (15.1.0)
- w3lib (1.18.0)
- watson-developer-cloud (1.0.2)
- Werkzeug (0.14.1)
- wheel (0.30.0)
- zope.interface (4.4.3

## 1.1.0
Changes:
- added numpy (1.14.0)
Expand Down
27 changes: 14 additions & 13 deletions python3/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
# Requirements.txt contains a list of dependencies for the Python Application #

# Setup modules
gevent == 1.2.1
flask == 0.12
gevent == 1.2.2
flask == 0.12.2

# default available packages for python3action
beautifulsoup4 == 4.5.3
beautifulsoup4 == 4.6.0
httplib2 == 0.10.3
kafka_python == 1.3.4
lxml == 3.7.3
python-dateutil == 2.6.0
requests == 2.13.0
scrapy == 1.3.3
simplejson == 3.10.0
kafka_python == 1.3.5
lxml == 4.1.1
python-dateutil == 2.6.1
requests == 2.18.4
scrapy == 1.5.0
simplejson == 3.13.2
virtualenv == 15.1.0
twisted == 17.1.0
twisted == 17.9.0.

# packages for numerics
numpy==1.14.0
scikit-learn==0.19.1
scipy==1.0.0
numpy == 1.14.0
scikit-learn == 0.19.1
scipy == 1.0.0
pandas == 0.22.0

# IBM specific python modules
ibm_db == 2.0.8a
Expand Down