Skip to content

Commit 37800ff

Browse files
Python: add explicit typing extensions dep (#12040)
### 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. --> Turns out there are many dependencies that install typing-extensions, but we don't install it by default, fixed here. Closes #12035 ### 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 6eff772 commit 37800ff

File tree

2 files changed

+3181
-3179
lines changed

2 files changed

+3181
-3179
lines changed

python/pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ dependencies = [
5252
"aiortc>=1.9.0",
5353
# Protobuf
5454
"protobuf",
55+
# explicit typing extensions
56+
"typing-extensions>=4.13",
5557
]
5658

5759
### Optional dependencies

0 commit comments

Comments
 (0)