Skip to content

Commit 3ed072d

Browse files
authored
prepare for 1.18.0 release (#144)
1 parent 5b8f667 commit 3ed072d

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

NOTICE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Apache OpenWhisk Runtime Python
2-
Copyright 2016-2021 The Apache Software Foundation
2+
Copyright 2016-2023 The Apache Software Foundation
33

44
This product includes software developed at
55
The Apache Software Foundation (http://www.apache.org/).

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ The following Python runtime versions (with kind & image labels) are generated b
2929
- Python 3.9 (python:3.9 & openwhisk/action-python-v3.9)
3030
- Python 3.10 (python:3.10 & openwhisk/action-python-v3.10)
3131
- Python 3.11 (python:3.11 & openwhisk/action-python-v3.11)
32-
- Python 3.6 AI (python:3.6 & openwhisk/action-python-v3.6-ai)
3332

3433
This README documents the build, customization and testing of these runtime images.
3534

@@ -182,6 +181,6 @@ If you have an action in the format described before (with a `requirements.txt`)
182181
zip -j -r myaction | docker run -i action-python-v3.7 -compile main > myaction.zip
183182
```
184183

185-
You may use `v3.11`, `v3.10`, `v3.9` or `v3.6-ai` as well according to your Python version needs.
184+
You may use `v3.11`, `v3.10`, or `v3.9` as well according to your Python version needs.
186185

187-
The resulting action includes a virtualenv already built for you and that is fast to deploy and start as all the dependencies are already resolved. Note that there is a limit on the size of the zip file and this approach will not work for installing large libraries like Pandas or Numpy, instead use the provide "v.3.6-ai" runtime instead which provides these libraries already for you.
186+
The resulting action includes a virtualenv already built for you and that is fast to deploy and start as all the dependencies are already resolved. Note that there is a limit on the size of the zip file and this approach will not work for installing large libraries like Pandas or Numpy, instead build a custom docker image that includes these libraries.

core/CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,14 @@
1818
-->
1919

2020
# Python 3 OpenWhisk Runtime Container
21-
## Next Release
22-
- Golang Action loop updatetd to golang 1.20
21+
## 1.18.0
22+
- Add Python 3.10 runtime. (#128)
23+
- Add Python 3.11 Runtime (#140)
24+
- Remove Python 3.6 based runtime (#143)
25+
- Support array result include sequence action (#129)
26+
- Install zip in docker images (#122)
27+
- Build proxy from 1.22.0 release of openwhisk-runtime-go using GoLang 1.20
28+
- Added script to build docker images locally (#135)
2329

2430
## 1.17.0
2531
- Build actionloop from [email protected] (#113)

tests/src/test/resources/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [ -f ".built" ]; then
2121
exit 0
2222
fi
2323

24-
for i in v3.7 v3.6-ai v3.9 v3.10 v3.11
24+
for i in v3.7 v3.9 v3.10 v3.11
2525
do echo "*** $i ***"
2626
zip -r -j - python_virtualenv | docker run -i action-python-$i -compile main >python-${i}_virtualenv.zip
2727
cp python-${i}_virtualenv.zip python-${i}_virtualenv_invalid_main.zip

0 commit comments

Comments
 (0)