You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Python 3.10, the isDaemon/setDaemon API on Thread was deprecated in favor of just using the daemon attribute directly. This produces this warning during tests:
.../site-packages/kaleido/scopes/base.py:188: DeprecationWarning:
setDaemon() is deprecated, set the daemon attribute instead
The text was updated successfully, but these errors were encountered:
Thanks for your interest in Kaleido. We are currently working on an overhaul that might address your issue - we hope to have news in a few weeks and will post an update then. Thanks - @gvwilson
In Python 3.10, the
isDaemon
/setDaemon
API on Thread was deprecated in favor of just using thedaemon
attribute directly. This produces this warning during tests:The text was updated successfully, but these errors were encountered: