-
-
Notifications
You must be signed in to change notification settings - Fork 238
Add python 3.14 to supported versions #1599
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
base: master
Are you sure you want to change the base?
Conversation
| install: | ||
| - pip install --upgrade pip | ||
| - pip install --group 'docs' |
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.
Necessary as pyproject.toml uses now standard dependecy groups.
|
|
||
| async def invoke_subcommand( | ||
| command: click.BaseCommand, | ||
| command: click.Command, |
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.
Spotted by mypy, BaseCommand is deprecated with this message
"'BaseCommand' is deprecated and will be removed in Click 9.0. Use"
" 'Command' instead."
| if device_type is None: | ||
| raise UnsupportedDeviceError("type nor mic_type found in sysinfo response") |
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.
Unsure why this was not spotted earlier by mypy, but from_values below expects that this is not none.
Uh oh!
There was an error while loading. Please reload this page.