v0.8.1
- Fixed py3.10 compatibility for
_parts
in pathlike (#135). The recent update to our open-source library addresses the compatibility issue with Python 3.10 in the_parts
property of a certain type. Prior to this change, there was also a_cparts
property that returned the same value as_parts
, which has been removed and replaced with a direct reference to_parts
. The_parts
property can now be accessed via reverse equality comparison, and this change has been implemented in thejoinpath
and__truediv__
methods as well. This enhancement improves the library's compatibility with Python 3.10 and beyond, ensuring continued functionality and stability for software engineers working with the latest Python versions.
Contributors: @nfx