We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey,
since python 3.10 the use of .setDaemon is deprecated in favor of the property when initiating the object (..., daemon=True, ...)
.setDaemon
(..., daemon=True, ...)
https://docs.python.org/3/library/threading.html#threading.Thread.setDaemon
It's used 4 times in picamera2, and I get warnings about this in my github actions.
Maybe you want to replace it?
Thx!
The text was updated successfully, but these errors were encountered:
Thanks for the info. I'll try and get round to that.
Sorry, something went wrong.
No branches or pull requests
Hey,
since python 3.10 the use of
.setDaemon
is deprecated in favor of the property when initiating the object(..., daemon=True, ...)
https://docs.python.org/3/library/threading.html#threading.Thread.setDaemon
It's used 4 times in picamera2, and I get warnings about this in my github actions.
Maybe you want to replace it?
Thx!
The text was updated successfully, but these errors were encountered: