Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/python-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
- python-version: "3.13"
os: "ubuntu-latest"
experimental: true
- python-version: "3.14"
os: "ubuntu-latest"
experimental: true
env:
UV_PYTHON: ${{ matrix.python-version }}
permissions:
Expand Down
4 changes: 2 additions & 2 deletions python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ help:
echo ""
echo -e "\033[1mVARIABLES:\033[0m"
echo " PYTHON_VERSION - Python version to use. Default is 3.10"
echo " By default, 3.10, 3.11, 3.12 and 3.13 are installed as well."
echo " By default, 3.10, 3.11, 3.12, 3.13, and 3.14 are installed as well."

##############################
# INSTALL
Expand Down Expand Up @@ -75,7 +75,7 @@ endif
.ONESHELL:
install-python:
echo "Installing python versions"
uv python install 3.10 3.11 3.12 3.13
uv python install 3.10 3.11 3.12 3.13 3.14

##############################
# INSTALL-PRE-COMMIT
Expand Down
2 changes: 1 addition & 1 deletion python/samples/demos/guided_conversations/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
python = "^3.10,<3.14"

azure-identity = "^1.18"
semantic-kernel = { git = "https://github.com/microsoft/semantic-kernel.git", branch = "main", subdirectory = "python" }
Expand Down