Skip to content

Commit

Permalink
fix: type hints weren't installed properly
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenmacdonald committed Aug 24, 2023
1 parent e0ee525 commit c9e6007
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.5.1

* Fixed - py.typed file wasn't installed properly via setuptools

# 2.5.0

* Added python type hints
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ include requirements/django.in
recursive-include opaque_keys *.html *.png *.gif *js *.css *jpg *jpeg *svg *py
include requirements/constraints.txt
include requirements/base.txt

include opaque_keys/py.typed
2 changes: 1 addition & 1 deletion opaque_keys/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from stevedore.enabled import EnabledExtensionManager
from typing_extensions import Self # For python 3.11 plus, can just use "from typing import Self"

__version__ = '2.5.0'
__version__ = '2.5.1'


class InvalidKeyError(Exception):
Expand Down

0 comments on commit c9e6007

Please sign in to comment.