Skip to content

Commit

Permalink
Release version 1.3.0.post1 and fix setup.cfg options.packages
Browse files Browse the repository at this point in the history
  • Loading branch information
dgelessus committed Sep 25, 2019
1 parent 7207b1d commit 94fa1fd
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
10 changes: 10 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,16 @@ If these links are no longer functional, some are archived in the `Internet Arch
Changelog
---------

Version 1.3.0.post1
^^^^^^^^^^^^^^^^^^^

* Fixed an incorrect ``options.packages`` in ``setup.cfg``, which made the library unusable except when installing from source using ``--editable``.

Version 1.2.0.post1
^^^^^^^^^^^^^^^^^^^

* Fixed an incorrect ``options.packages`` in ``setup.cfg``, which made the library unusable except when installing from source using ``--editable``.

Version 1.3.0
^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion rsrcfork/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""A pure Python, cross-platform library/tool for reading Macintosh resource data, as stored in resource forks and ``.rsrc`` files."""

__version__ = "1.3.0"
__version__ = "1.3.0.post1"

__all__ = [
"Resource",
Expand Down
6 changes: 5 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,12 @@ keywords =
setup_requires =
setuptools>=39.2.0
python_requires = >=3.6
packages =
packages = find:

[options.packages.find]
include =
rsrcfork
rsrcfork.*

[options.entry_points]
console_scripts =
Expand Down

0 comments on commit 94fa1fd

Please sign in to comment.