15
0

- Update to 5.9.0:

- #228: as_file now also supports a Traversable representing
    a directory and (when needed) renders the full tree to a
    temporary directory.
  - #253: In MultiplexedPath, restore expectation that a compound
    path with a non-existent directory does not raise an
    exception.
  - #250: Now Traversable.joinpath provides a concrete
    implementation, replacing the implementation in .simple and
    converging with the behavior in MultiplexedPath.
  - #249: In simple.ResourceContainer.joinpath, honor names split
    by posixpath.sep.
  - #248: 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
    simple.ResourceContainer now honors this behavior
  - #244: Add type declarations in ABCs Require Python 3.7 or
    later
  - #243: Fix error when no __pycache__ directories exist when
    testing update-zips.
- Remove BR on python-zipp to break a dependency cycle; it is
  strictly not needed for build (although it is Requires),
  because ZipReader is not tested.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-importlib-resources?expand=0&rev=9
This commit is contained in:
2022-09-13 06:51:34 +00:00
committed by Git OBS Bridge
parent fe4b881e42
commit c363eb7410
4 changed files with 39 additions and 8 deletions

View File

@@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Sep 13 06:45:26 UTC 2022 - Matej Cepl <mcepl@suse.com>
- Update to 5.9.0:
- #228: as_file now also supports a Traversable representing
a directory and (when needed) renders the full tree to a
temporary directory.
- #253: In MultiplexedPath, restore expectation that a compound
path with a non-existent directory does not raise an
exception.
- #250: Now Traversable.joinpath provides a concrete
implementation, replacing the implementation in .simple and
converging with the behavior in MultiplexedPath.
- #249: In simple.ResourceContainer.joinpath, honor names split
by posixpath.sep.
- #248: 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
simple.ResourceContainer now honors this behavior
- #244: Add type declarations in ABCs Require Python 3.7 or
later
- #243: Fix error when no __pycache__ directories exist when
testing update-zips.
- Remove BR on python-zipp to break a dependency cycle; it is
strictly not needed for build (although it is Requires),
because ZipReader is not tested.
-------------------------------------------------------------------
Sat Nov 6 18:19:08 UTC 2021 - Dirk Müller <dmueller@suse.com>