17
0

- Inject multibuild to avoid a build cycle.

- Update to 5.9.0:
  * as_file now also supports a Traversable representing a directory and
    (when needed) renders the full tree to a temporary directory.
  * In MultiplexedPath, restore expectation that a compound path with a
    non-existent directory does not raise an exception.
  * Now Traversable.joinpath provides a concrete implementation, replacing
    the implementation in .simple and converging with the behavior in
    MultiplexedPath.
  * abc.Traversable.joinpath now allows for multiple arguments and specifies
    that posixpath.sep is allowed in any argument to accept multiple
    arguments, matching the behavior found in zipfile.Path and pathlib.Path.
  * Add type declarations in ABCs.
  * Fix error when no __pycache__ directories exist when testing update-zips.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-importlib-resources?expand=0&rev=7
This commit is contained in:
2022-08-26 07:47:54 +00:00
committed by Git OBS Bridge
parent 47fac40566
commit 41701bbe21
5 changed files with 54 additions and 13 deletions

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Aug 26 07:47:05 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>
- Inject multibuild to avoid a build cycle.
- Update to 5.9.0:
* as_file now also supports a Traversable representing a directory and
(when needed) renders the full tree to a temporary directory.
* In MultiplexedPath, restore expectation that a compound path with a
non-existent directory does not raise an exception.
* Now Traversable.joinpath provides a concrete implementation, replacing
the implementation in .simple and converging with the behavior in
MultiplexedPath.
* abc.Traversable.joinpath now allows for multiple arguments and specifies
that posixpath.sep is allowed in any argument to accept multiple
arguments, matching the behavior found in zipfile.Path and pathlib.Path.
* Add type declarations in ABCs.
* Fix error when no __pycache__ directories exist when testing update-zips.
-------------------------------------------------------------------
Sat Nov 6 18:19:08 UTC 2021 - Dirk Müller <dmueller@suse.com>