Skip to content

Commit

Permalink
Python: Bump Python version to 1.3.0 from 1.2.0 for a release. (#7408)
Browse files Browse the repository at this point in the history
### Motivation and Context

Bump Python version to 1.3.0 from 1.2.0 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 Python version to 1.3.0 from 1.2.0 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
- [X] I didn't break anyone 😄
  • Loading branch information
moonbox3 authored Jul 23, 2024
1 parent c15e253 commit 93df57e
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 25 deletions.
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "semantic-kernel"
version = "1.2.0"
version = "1.3.0"
description = "Semantic Kernel Python SDK"
authors = ["Microsoft <[email protected]>"]
readme = "pip/README.md"
Expand Down
23 changes: 12 additions & 11 deletions python/samples/concepts/agents/README.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,31 @@
# Semantic Kernel Agents - Getting Started

This project contains a step by step guide to get started with _Semantic Kernel Agents_ in Python.

This project contains a step by step guide to get started with _Semantic Kernel Agents_ in Python.

#### PyPI:
- For the use of agents, the minimum allowed Semantic Kernel pypi version is 1.3 # TODO Update

- For the use of agents, the minimum allowed Semantic Kernel pypi version is 1.3.0.

#### Source

- [Semantic Kernel Agent Framework](../../../semantic_kernel/agents/)

## Examples

The getting started with agents examples include:

Example|Description
---|---
[step1_agent](../agents/step1_agent.py)|How to create and use an agent.
[step2_plugins](../agents/step2_plugins.py)|How to associate plugins with an agent.
| Example | Description |
| ------------------------------------------- | --------------------------------------- |
| [step1_agent](../agents/step1_agent.py) | How to create and use an agent. |
| [step2_plugins](../agents/step2_plugins.py) | How to associate plugins with an agent. |

## Configuring the Kernel

Similar to the Semantic Kernel Python concept samples, it is necessary to configure the secrets
and keys used by the kernel. See the follow "Configuring the Kernel" [guide](../README.md#configuring-the-kernel) for
Similar to the Semantic Kernel Python concept samples, it is necessary to configure the secrets
and keys used by the kernel. See the follow "Configuring the Kernel" [guide](../README.md#configuring-the-kernel) for
more information.

## Running Concept Samples

Concept samples can be run in an IDE or via the command line. After setting up the required api key
for your AI connector, the samples run without any extra command line arguments.
Concept samples can be run in an IDE or via the command line. After setting up the required api key
for your AI connector, the samples run without any extra command line arguments.
2 changes: 1 addition & 1 deletion python/samples/getting_started/00-getting-started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"outputs": [],
"source": [
"# Note: if using a Poetry virtual environment, do not run this cell\n",
"%pip install semantic-kernel==1.2.0"
"%pip install semantic-kernel==1.3.0"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"outputs": [],
"source": [
"# Note: if using a Poetry virtual environment, do not run this cell\n",
"%pip install semantic-kernel==1.2.0"
"%pip install semantic-kernel==1.3.0"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"outputs": [],
"source": [
"# Note: if using a Poetry virtual environment, do not run this cell\n",
"%pip install semantic-kernel==1.2.0"
"%pip install semantic-kernel==1.3.0"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"outputs": [],
"source": [
"# Note: if using a Poetry virtual environment, do not run this cell\n",
"%pip install semantic-kernel==1.2.0"
"%pip install semantic-kernel==1.3.0"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"outputs": [],
"source": [
"# Note: if using a Poetry virtual environment, do not run this cell\n",
"%pip install semantic-kernel==1.2.0"
"%pip install semantic-kernel==1.3.0"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion python/samples/getting_started/05-using-the-planner.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"outputs": [],
"source": [
"# Note: if using a Poetry virtual environment, do not run this cell\n",
"%pip install semantic-kernel==1.2.0"
"%pip install semantic-kernel==1.3.0"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"outputs": [],
"source": [
"# Note: if using a Poetry virtual environment, do not run this cell\n",
"%pip install semantic-kernel==1.2.0\n",
"%pip install semantic-kernel==1.3.0\n",
"%pip install azure-core==1.30.1\n",
"%pip install azure-search-documents==11.6.0b4"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"outputs": [],
"source": [
"# Note: if using a Poetry virtual environment, do not run this cell\n",
"%pip install semantic-kernel[hugging_face]==1.2.0"
"%pip install semantic-kernel[hugging_face]==1.3.0"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"outputs": [],
"source": [
"# Note: if using a Poetry virtual environment, do not run this cell\n",
"%pip install semantic-kernel==1.2.0"
"%pip install semantic-kernel==1.3.0"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"outputs": [],
"source": [
"# Note: if using a Poetry virtual environment, do not run this cell\n",
"%pip install semantic-kernel==1.2.0"
"%pip install semantic-kernel==1.3.0"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"outputs": [],
"source": [
"# Note: if using a Poetry virtual environment, do not run this cell\n",
"%pip install semantic-kernel==1.2.0"
"%pip install semantic-kernel==1.3.0"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"outputs": [],
"source": [
"# Note: if using a Poetry virtual environment, do not run this cell\n",
"%pip install semantic-kernel==1.2.0"
"%pip install semantic-kernel==1.3.0"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
"metadata": {},
"outputs": [],
"source": [
"%pip install semantic-kernel[weaviate]==1.2.0"
"%pip install semantic-kernel[weaviate]==1.3.0"
]
},
{
Expand Down

0 comments on commit 93df57e

Please sign in to comment.