Skip to content

v0.7.1 - Python 3.12 Support

Latest
Compare
Choose a tag to compare
@alexdelorenzo alexdelorenzo released this 12 Oct 01:03
· 54 commits to support-3.12 since this release

Changes:

  • Support Python 3.12.0 and up
  • Breaking change: AsyncPath and pathlib.Path are now equivalent:
from aiopath import AsyncPath
from pathlib import Path

assert AsyncPath("~") == Path("~")

Installation:

$ python3 -m pip install aiopath==0.7.1