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
Describe the bug
Running tests for one project, I see:
../../.local/share/virtualenvs/rethinkmodel-WGhjQTXi/lib/python3.9/site-packages/rethinkdb/ast.py:87
/home/metal3d/.local/share/virtualenvs/rethinkmodel-WGhjQTXi/lib/python3.9/site-packages/rethinkdb/ast.py:87: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working
elif isinstance(val, collections.Callable):
../../.local/share/virtualenvs/rethinkmodel-WGhjQTXi/lib/python3.9/site-packages/rethinkdb/ast.py:108
/home/metal3d/.local/share/virtualenvs/rethinkmodel-WGhjQTXi/lib/python3.9/site-packages/rethinkdb/ast.py:108: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working
elif isinstance(val, collections.Mapping):
rethinkmodel/tests/test_generic.py::GenericTest::test_create
/home/metal3d/.local/share/virtualenvs/rethinkmodel-WGhjQTXi/lib/python3.9/site-packages/rethinkdb/ast.py:115: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working
elif isinstance(val, collections.Iterable):
Note the message: with Python 3.10, the module will stop working. I made a Pull Request to fix, see #253
To Reproduce
Steps to reproduce the behavior:
Launch pytest on any project using rethinkdb
Expected behavior
No warning...
System info
OS: Linux Fedora 33
The text was updated successfully, but these errors were encountered:
Describe the bug
Running tests for one project, I see:
Note the message: with Python 3.10, the module will stop working. I made a Pull Request to fix, see #253
To Reproduce
Steps to reproduce the behavior:
pytest
on any project using rethinkdbExpected behavior
No warning...
System info
The text was updated successfully, but these errors were encountered: