alexdelorenzo
released this
12 Oct 01:03
·
61 commits
to support-3.12
since this release
Changes:
- Support Python 3.12.0 and up
- Breaking change:
AsyncPath
andpathlib.Path
are now equivalent:
from aiopath import AsyncPath
from pathlib import Path
assert AsyncPath("~") == Path("~")
Installation:
$ python3 -m pip install aiopath==0.7.1