-
Notifications
You must be signed in to change notification settings - Fork 1.5k
fix: add pydantic dependency for aks-agent #9165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| poetry.lock | ||
| pyproject.toml |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -9,7 +9,7 @@ | |||||
|
|
||||||
| from setuptools import find_packages, setup | ||||||
|
|
||||||
| VERSION = "1.0.0b2" | ||||||
| VERSION = "1.0.0b3" | ||||||
|
|
||||||
| CLASSIFIERS = [ | ||||||
| "Development Status :: 4 - Beta", | ||||||
|
|
@@ -24,8 +24,9 @@ | |||||
| ] | ||||||
|
|
||||||
| DEPENDENCIES = [ | ||||||
| "holmesgpt==0.12.6; python_version >= '3.10'", | ||||||
| "pytest-asyncio>=1.1.0", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why we install pytest-asyncio which seems to be for test? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. will remove |
||||||
| "pydantic-core", | ||||||
|
||||||
| "pydantic-core", | |
| "pydantic-core>=2.0.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As suggested here, add a version constraint
Uh oh!
There was an error while loading. Please reload this page.