Skip to content

Commit

Permalink
Fix py.typed missing from distributions, prepare for v0.21.2 release.
Browse files Browse the repository at this point in the history
Also update MANIFEST.in
and remove logo.pxm.
  • Loading branch information
jab committed Sep 7, 2020
1 parent bb03034 commit aaeff8c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,20 @@ Tip: Subscribe to releases
to be notified when new versions of ``bidict`` are released.


0.21.1 (2020-09-07)
0.21.2 (2020-09-07)
-------------------

- Include `py.typed <https://www.python.org/dev/peps/pep-0561/#packaging-type-information>`__
file to mark :mod:`bidict` as type hinted.


0.21.1 (2020-09-07)
-------------------

This release was yanked and replaced with the 0.21.2 release,
which actually provides the intended changes.


0.21.0 (2020-08-22)
-------------------

Expand Down
7 changes: 5 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

include LICENSE
include pyproject.toml
include *.py
include *.rst
include *.sh
include *.yaml
Expand All @@ -10,14 +11,16 @@ include .editorconfig
include .pylintrc
include .LICENSE_HEADER
include .coveragerc
include mypy.ini
include pytest.ini
include tox.ini
include docs/_static/custom.css
include docs/_static/bidict-types-diagram.dot
include bidict/py.typed
recursive-include assets *.*
recursive-include docs/_static *.*
recursive-include docs *.py
recursive-include docs *.rst
recursive-include docs Makefile
recursive-include docs/_static *.png
recursive-include tests *.py
recursive-include tests *.txt
recursive-include docs Makefile
Binary file removed assets/logo.pxm
Binary file not shown.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
url=METADATA.__url__, # type: ignore
license=METADATA.__license__, # type: ignore
packages=['bidict'],
package_data={'bidict': ['py.typed']},
zip_safe=False, # Don't zip. (We're zip-safe but prefer not to.)
python_requires='>=3.6',
classifiers=[
Expand Down

0 comments on commit aaeff8c

Please sign in to comment.