-
Notifications
You must be signed in to change notification settings - Fork 192
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
Various deprecation warnings #3672
Comments
As for the warning
See here for the fix |
There was another deprecation warning in the REST API module DeprecationWarning: Using or importing the ABCs from 'collections' instead of from collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working This will be fixed in #3974. |
I've created a pull request for aiida-core/aiida/orm/nodes/data/cif.py Line 49 in dc9ec6f
|
thanks @DirectriX01
Haven't looked into it in detail, but I guess you'll need to extract the "tuple input data" here aiida-core/aiida/orm/nodes/data/structure.py Line 636 in 4b7febe
|
To show the deprecated message, just run the correspondence test cases. After having aiida environment set, run:
There are more deprecated message outputs than you can find as described in this issue. |
This is very outdated. Some reported have since been addressed, many others have been added. No point in keeping this around |
aiida.restapi.translator.nodes.node.NodeTranslator._get_subclasses
uses the deprecatedimp
module.aiida.orm.nodes.data.structure.ase_refine_cell
passes ASE object tospglib.refine_cell
which is deprecated.aiida/backends/tests/test_dataclasses.py::TestKpointsData::test_path_wrapper_legacy
gets warning: object of type <class 'numpy.float64'> cannot be safely interpreted as an integer.The text was updated successfully, but these errors were encountered: