Skip to content

Commit

Permalink
Version 6.0.2 (#221)
Browse files Browse the repository at this point in the history
* Fixing that the typing `pyi` files were not included in the manifest (thanks to Julian Torres)
  • Loading branch information
cdgriffith authored Apr 2, 2022
1 parent b1a0fc9 commit f15fa1b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

Version 6.0.2
-------------

* Fixing that the typing `pyi` files were not included in the manifest (thanks to Julian Torres)

Version 6.0.1
-------------

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ include box/py.typed
include box/*.c
include box/*.so
include box/*.pyd
include box/*.pyi
2 changes: 1 addition & 1 deletion box/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

__author__ = "Chris Griffith"
__version__ = "6.0.1"
__version__ = "6.0.2"

from box.box import Box
from box.box_list import BoxList
Expand Down
4 changes: 2 additions & 2 deletions box/box.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ class Box(dict):
def copy(self) -> Box: ...
def __copy__(self) -> Box: ...
def __deepcopy__(self, memodict: Any = ...) -> Box: ...
def __getitem__(self, item: Any, _ignore_default: bool = ...): ...
def __getattr__(self, item: Any): ...
def __getitem__(self, item: Any, _ignore_default: bool = ...) -> Any: ...
def __getattr__(self, item: Any) -> Any: ...
def __setitem__(self, key: Any, value: Any): ...
def __setattr__(self, key: Any, value: Any): ...
def __delitem__(self, key: Any): ...
Expand Down

0 comments on commit f15fa1b

Please sign in to comment.