importlib_resources NEWS
1.0.2 (2018-11-01)
- Fix
setup_requires
and install_requires
metadata in setup.cfg
.
Given by Anthony Sottile.
1.0.1 (2018-06-29)
- Update Trove classifiers. Closes #63
1.0 (2018-06-28)
- Backport fix for test isolation from Python 3.8/3.7. Closes #61
0.8 (2018-05-17)
- Strip
importlib_resources.__version__
. Closes #56
- Fix a metadata problem with older setuptools. Closes #57
- Add an
__all__
to importlib_resources
. Closes #59
0.7 (2018-05-15)
- Fix
setup.cfg
metadata bug. Closes #55
0.6 (2018-05-15)
- Move everything from
pyproject.toml
to setup.cfg
, with the added
benefit of fixing the PyPI metadata. Closes #54
- Turn off mypy’s
strict_optional
setting for now.
0.5 (2018-05-01)
- Resynchronize with Python 3.7; changes the return type of
contents()
to
be an Iterable
. Closes #52
0.4 (2018-03-27)
- Correctly find resources in subpackages inside a zip file. Closes #51
0.3 (2018-02-17)
- The API, implementation, and documentation is synchronized with the Python
3.7 standard library. Closes #47
- When run under Python 3.7 this API shadows the stdlib versions. Closes #50
0.2 (2017-12-13)
- Backward incompatible change. Split the
open()
and read()
calls
into separate binary and text versions, i.e. open_binary()
,
open_text()
, read_binary()
, and read_text()
. Closes #41
- Fix a bug where unrelated resources could be returned from
contents()
.
Closes #44
- Correctly prevent namespace packages from containing resources. Closes #20