| AArch64 | |
| ppc64le | |
| s390x | |
| x86-64 |
- convert to singlespec
- update to 1.0.1
- Remove redundant requirements
- Change BuildRequires (python-setuptools -> python3-setuptools) - Reformat .spec file
- Use glob to catch cached *.pyc
- Use a python3-pathlib package as a base of python-pathlib package
- Use download Url as source
- initial version 1.0
* Python issue #20765: Add missing documentation for PurePath.with_name()
and PurePath.with_suffix().
* Fix test_mkdir_parents when the working directory has additional bits
set (such as the setgid or sticky bits).
* Python issue #20111: pathlib.Path.with_suffix() now sanity checks the
given suffix.
* Python issue #19918: Fix PurePath.relative_to() under Windows.
* Python issue #19921: When Path.mkdir() is called with parents=True,
any missing parent is created with the default permissions, ignoring
the mode argument (mimicking the POSIX "mkdir -p" command).
* Python issue #19887: Improve the Path.resolve() algorithm to support
certain symlink chains.
* Make pathlib usable under Python 2.7 with unicode pathnames (only pure
ASCII, though).
* Issue #21: fix TypeError under Python 2.7 when using new division.
* Add tox support for easier testing.