Skip to content

Commit

Permalink
0.6.5 changelog fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Argueta committed Nov 24, 2019
1 parent 909082b commit 5dd1a83
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
15 changes: 15 additions & 0 deletions docs/source/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Changelog
=========

0.6.5
-----

Released 2019-11-25

Bugfixes
~~~~~~~~

For some bizarre reason package detection from the ``setup.cfg`` file stopped
working in January 2019 and every single release since 0.5.2 hasn't had the
source code in it, and the wheels have been empty. In other words, you could
install ``binobj`` but ``import binobj`` would fail!

This tweaks ``setup.py`` so that you can use it again.

0.6.4
-----

Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@
raise RuntimeError('Unsupported Python version: ' + sys.version)


setuptools.setup()
# TODO (dargueta): Figure out why package detection in setup.cfg stopped working.
setuptools.setup(
packages=setuptools.find_packages(exclude=["tests", "tests.*", "docs", "docs.*"])
)

0 comments on commit 5dd1a83

Please sign in to comment.