Skip to content

Commit 3fc9864

Browse files
Python: Bump 1.23.1 (#10856)
### Motivation and Context <!-- Thank you for your contribution to the semantic-kernel repo! Please help reviewers and future users, providing the following information: 1. Why is this change required? 2. What problem does it solve? 3. What scenario does it contribute to? 4. If it fixes an open issue, please link to the issue here. --> Bump version to 1.23.1 fixes ENV names in call automation sample fixes pipeline ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [x] The code builds clean without any errors or warnings - [x] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [x] All unit tests pass, and I have added new tests where possible - [x] I didn't break anyone 😄
1 parent 9c71640 commit 3fc9864

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

.github/workflows/python-build.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,15 @@ on:
55
types: [published]
66

77
permissions:
8-
contents: read
9-
id-token: "write"
8+
contents: write
9+
id-token: write
1010

1111
jobs:
1212
python-build-assets:
1313
if: github.event_name == 'release' && startsWith(github.event.release.tag_name, 'python-')
1414
name: Python Build Assets and add to Release
1515
runs-on: ubuntu-latest
1616
environment: "integration"
17-
permissions:
18-
contents: write
1917
env:
2018
UV_PYTHON: "3.10"
2119
steps:

.github/workflows/python-manual-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ on:
99

1010
permissions:
1111
contents: read
12-
id-token: "write"
12+
id-token: write
1313

1414
jobs:
15-
python-build-assets:
15+
python-start-ado-release-job:
1616
name: Trigger ADO Pipeline for Python Release
1717
runs-on: ubuntu-latest
1818
environment: "integration"
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ACS_CONNECTION_STRING=
22
CALLBACK_URI_HOST=
33

4-
AZURE_OPENAI_SERVICE_ENDPOINT=
5-
AZURE_OPENAI_DEPLOYMENT_MODEL_NAME=
4+
AZURE_OPENAI_ENDPOINT=
5+
AZURE_OPENAI_REALTIME_DEPLOYMENT_NAME=
66
AZURE_OPENAI_API_VERSION=
77

8-
AZURE_OPENAI_SERVICE_KEY=
8+
AZURE_OPENAI_API_KEY=

python/samples/demos/call_automation/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Copy the `.env.example` file to `.env` and update the following values:
3636
1. `ACS_CONNECTION_STRING`: Azure Communication Service resource's connection string.
3737
2. `CALLBACK_URI_HOST`: Base url of the app. (For local development use the dev tunnel url from the step above)
3838
3. `AZURE_OPENAI_ENDPOINT`: Azure Open AI service endpoint
39-
4. `AZURE_OPENAI_DEPLOYMENT_MODEL_NAME`: Azure Open AI deployment name
39+
4. `AZURE_OPENAI_REALTIME_DEPLOYMENT_NAME`: Azure Open AI deployment name
4040
5. `AZURE_OPENAI_API_VERSION`: Azure Open AI API version, this should be one that includes the realtime api, for instance '2024-10-01-preview'
4141
6. `AZURE_OPENAI_API_KEY`: Azure Open AI API key, optionally, you can also use Entra Auth.
4242

python/semantic_kernel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from semantic_kernel.kernel import Kernel
44

5-
__version__ = "1.23.0"
5+
__version__ = "1.23.1"
66

77
DEFAULT_RC_VERSION = f"{__version__}-rc2"
88

0 commit comments

Comments
 (0)