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 SQLAlchemy we are trying to add support for python 3.10, (since we are starting to get issue about it, like sqlalchemy/sqlalchemy#6540)
We use xdist and currently we need to setup warn filters for some deprecation warning coming from this project. Like
INTERNALERROR> File "/home/runner/work/sqlalchemy/sqlalchemy/.tox/github-cext/lib/python3.10/site-packages/xdist/workermanage.py", line 269, in setup
INTERNALERROR> self.channel.setcallback(self.process_from_remote, endmarker=self.ENDMARK)
INTERNALERROR> File "/home/runner/work/sqlalchemy/sqlalchemy/.tox/github-cext/lib/python3.10/site-packages/execnet/gateway_base.py", line 594, in setcallback
INTERNALERROR> if not (self._closed or self._receiveclosed.isSet()):
INTERNALERROR> File "/opt/hostedtoolcache/Python/3.10.0-beta.1/x64/lib/python3.10/threading.py", line 557, in isSet
INTERNALERROR> warnings.warn('isSet() is deprecated, use is_set() instead',
INTERNALERROR> DeprecationWarning: isSet() is deprecated, use is_set() instead
It would be great it this package could be updated to support python 3.10 without having to setup warn filters
The text was updated successfully, but these errors were encountered:
Hi,
In SQLAlchemy we are trying to add support for python 3.10, (since we are starting to get issue about it, like sqlalchemy/sqlalchemy#6540)
We use xdist and currently we need to setup warn filters for some deprecation warning coming from this project. Like
It would be great it this package could be updated to support python 3.10 without having to setup warn filters
The text was updated successfully, but these errors were encountered: