Skip to content

Commit adb71bc

Browse files
authored
Python: Bump to v1.39.1 for a release (#13455)
### Motivation and Context Bump to v1.39.1 for a release <!-- 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. --> ### Description Bump to v1.39.1 for a release <!-- 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 - [ ] I didn't break anyone 😄
1 parent e68f09c commit adb71bc

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

python/semantic_kernel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from semantic_kernel.kernel import Kernel
44

5-
__version__ = "1.39.0"
5+
__version__ = "1.39.1"
66

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

python/tests/unit/core_plugins/test_conversation_summary_plugin_unit.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
from unittest.mock import AsyncMock, Mock
44

5+
import pytest
6+
57
from semantic_kernel.connectors.ai.chat_completion_client_base import ChatCompletionClientBase
68
from semantic_kernel.connectors.ai.prompt_execution_settings import PromptExecutionSettings
79
from semantic_kernel.contents.chat_message_content import ChatMessageContent
@@ -25,6 +27,7 @@ def test_conversation_summary_plugin_with_deprecated_value(kernel):
2527
assert plugin.return_key == "summary"
2628

2729

30+
@pytest.mark.asyncio
2831
async def test_summarize_conversation(kernel: Kernel):
2932
service = AsyncMock(spec=ChatCompletionClientBase)
3033
service.service_id = "default"

0 commit comments

Comments
 (0)