Compare commits

..
6 Commits
Author SHA1 Message Date
Patrick Kidger a89ebe356b Merge pull request #22 from google/v021
Bump version
2022-09-15 08:19:08 -07:00
Patrick Kidger 98133f5e1e Bump version 2022-09-15 16:15:28 +01:00
Patrick Kidger 2c7dbbd593 Merge pull request #21 from google/pytyped
Create `py.typed`
2022-09-15 08:15:03 -07:00
Patrick Kidger 1291a90192 Merge pull request #20 from google/bool-checking
Fix for boolean checking not working
2022-09-15 08:14:56 -07:00
Patrick Kidger 14117804aa Create py.typed 2022-09-15 16:07:02 +01:00
Patrick Kidger e61a37f0a3 Fix for boolean checking not working (#19) 2022-09-15 16:05:49 +01:00
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -53,4 +53,4 @@ from .import_hook import install_import_hook
from .pytree_type import PyTree
__version__ = "0.2.0"
__version__ = "0.2.1"
+1 -1
View File
@@ -446,7 +446,7 @@ if TYPE_CHECKING:
from typing_extensions import Annotated as UInt32
from typing_extensions import Annotated as UInt64
else:
_bool = "bool"
_bool = "bool_"
_uint8 = "uint8"
_uint16 = "uint16"
_uint32 = "uint32"
+1
View File
@@ -0,0 +1 @@