aiidateam / aiida-pseudo

MIT License
5 stars 8 forks source link

Refactor: remove use of deprecated `distutils` module #126

Closed sphuber closed 2 years ago

sphuber commented 2 years ago

As of Python 3.10, the built-in module distutils has been deprecated and will be removed in Python 3.12. It was being used to copy directories and their content recursively. This has been replaced with the shutil.copytree method.