Skip to content

Commit fa1ca34

Browse files
feat(api): Updated python-sdk to adopt Code Engine API specification changes
1 parent 33978d7 commit fa1ca34

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
44
-->
5-
# Python SDK for IBM Cloud Code Engine 4.19.0
5+
# Python SDK for IBM Cloud Code Engine 4.20.0
66

77
Python client library to interact with the [IBM Cloud Code Engine API](https://cloud.ibm.com/apidocs/codeengine).
88

@@ -39,8 +39,8 @@ IBM Cloud services:
3939

4040
Service Name | Imported Class Name
4141
--- | ---
42-
[IBM Cloud Code Engine V2](https://cloud.ibm.com/apidocs/codeengine/codeengine-v4.19.0) | CodeEngineV2
43-
[IBM Cloud Code Engine V1](https://cloud.ibm.com/apidocs/codeengine/codeengine-v4.19.0) | IbmCloudCodeEngineV1
42+
[IBM Cloud Code Engine V2](https://cloud.ibm.com/apidocs/codeengine/codeengine-v4.20.0) | CodeEngineV2
43+
[IBM Cloud Code Engine V1](https://cloud.ibm.com/apidocs/codeengine/codeengine-v4.20.0) | IbmCloudCodeEngineV1
4444

4545
## Prerequisites
4646

@@ -55,13 +55,13 @@ Service Name | Imported Class Name
5555
To install, use `pip` or `easy_install`:
5656

5757
```bash
58-
pip install --upgrade "ibm_code_engine_sdk>=4.19.0"
58+
pip install --upgrade "ibm_code_engine_sdk>=4.20.0"
5959
```
6060

6161
or
6262

6363
```bash
64-
easy_install --upgrade "ibm_code_engine_sdk>=4.19.0"
64+
easy_install --upgrade "ibm_code_engine_sdk>=4.20.0"
6565
```
6666

6767
## Using the SDK

ibm_code_engine_sdk/code_engine_v2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
# IBM OpenAPI SDK Code Generator Version: 3.99.0-d27cee72-20250129-204831
17+
# IBM OpenAPI SDK Code Generator Version: 3.102.0-615ec964-20250307-203034
1818

1919
"""
2020
REST API for Code Engine

ibm_code_engine_sdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
"""
1818
Version of ibm_code_engine_sdk
1919
"""
20-
__version__ = '4.19.0'
20+
__version__ = '4.20.0'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
requests>=2.32.0,<3.0.0
2-
urllib3>=2.3.0,<2.4.0
2+
urllib3>=2.4.0,<2.5.0
33
python_dateutil>=2.5.3,<3.0.0
44
ibm_cloud_sdk_core>=3.16.0,<4.0.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import sys
2020
import pkg_resources
2121

22-
__version__ = '4.19.0'
22+
__version__ = '4.20.0'
2323
PACKAGE_NAME = 'ibm_code_engine_sdk'
2424
PACKAGE_DESC = 'Python SDK for IBM Cloud Code Engine'
2525

0 commit comments

Comments
 (0)