From f175c7f315adab7998b65a84898112d0a3908329 Mon Sep 17 00:00:00 2001 From: Patrick Kidger <33688385+patrick-kidger@users.noreply.github.com> Date: Thu, 22 Sep 2022 12:16:25 -0700 Subject: [PATCH] Fixed py.type not being packaged (#30) --- MANIFEST.in | 4 ++-- jaxtyping/__init__.py | 2 +- setup.py | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index dd2678e..b76b9e4 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ -include LICENSE -prune tests +include jaxtyping/py.typed +prune test diff --git a/jaxtyping/__init__.py b/jaxtyping/__init__.py index 34cd945..ef39d1e 100644 --- a/jaxtyping/__init__.py +++ b/jaxtyping/__init__.py @@ -63,4 +63,4 @@ from .import_hook import install_import_hook from .pytree_type import PyTree -__version__ = "0.2.4" +__version__ = "0.2.5" diff --git a/setup.py b/setup.py index 37b29b3..7185d91 100644 --- a/setup.py +++ b/setup.py @@ -94,4 +94,5 @@ setuptools.setup( install_requires=install_requires, entry_points=entry_points, packages=[name], + include_package_data=True, )