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
distutils is scheduled to be removed in Python 3.12.
It's used to create the full directory tree for storing the files, we
can replace that with
[pathlib.Path.mkdir](https://docs.python.org/3/library/pathlib.html#pathlib.Path.mkdir).
Since we already have a `Path` object now, we can also replace calls to
`os.path.join`, `os.stat` with calls on `Path`.
0 commit comments