-
Notifications
You must be signed in to change notification settings - Fork 2
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
10 update to use pydantic v2 #40
Conversation
@@ -10,7 +10,7 @@ ignore-paths=src/s2python/generated/ | |||
# avoid hangs. | |||
jobs=1 | |||
|
|||
disable=missing-class-docstring,missing-module-docstring,too-few-public-methods,missing-function-docstring | |||
disable=missing-class-docstring,missing-module-docstring,too-few-public-methods,missing-function-docstring,no-member |
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.
pylint is not smart enough to follow protocols like mypy. Mypy should cover all no-member issues so disable in pylint.
Had to start the pipeline manually due to inactivity. Result may be found here: https://github.com/flexiblepower/s2-python/actions/runs/10147264724 |
Bypass due to #44 |
Seita mentioned they may have need for a pydantic v1 version. So branch here: https://github.com/flexiblepower/s2-python/tree/pydantic_v1 |
Waiting on #39