Skip to content

Commit

Permalink
Fix a setup.cfg metadata bug
Browse files Browse the repository at this point in the history
Closes python#55
  • Loading branch information
warsaw committed May 15, 2018
1 parent 922fd14 commit bf53e07
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion importlib_resources/docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@
importlib_resources NEWS
==========================

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.
benefit of fixing the PyPI metadata. Closes #54
* Turn off mypy's ``strict_optional`` setting for now.

0.5 (2018-05-01)
Expand Down
2 changes: 1 addition & 1 deletion importlib_resources/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6
0.7
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ install_requires =
packages = find:

[options.package_data]
* = *.zip, *.file
* = *.zip, *.file, *.txt
importlib_resources =
docs/*
docs/_static/*
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

# Yes, it's horrible to let reference counting reclaim the open file object,
# but oh well, this will exit soon.
__version__ = open('importlib_resources/version.txt').read()
__version__ = open('importlib_resources/version.txt').read().strip()

0 comments on commit bf53e07

Please sign in to comment.