From a19149d23d95325072e28135d934207f18120146 Mon Sep 17 00:00:00 2001 From: Patrick Kidger <33688385+patrick-kidger@users.noreply.github.com> Date: Thu, 11 May 2023 09:08:09 -0700 Subject: [PATCH] Fixed pytest hook --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b673759..dcaf0a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "jaxtyping" -version = "0.2.18" +version = "0.2.19" description = "Type annotations and runtime checking for shape and dtype of JAX arrays, and PyTrees." readme = "README.md" requires-python ="~=3.8" @@ -24,7 +24,7 @@ classifiers = [ ] urls = {repository = "https://github.com/google/jaxtyping" } dependencies = ["numpy>=1.20.0", "typeguard>=2.13.3", "typing_extensions>=3.7.4.1"] -entry_points = {pytest11 = ["jaxtyping = jaxtyping.pytest_plugin"]} +entry-points = {pytest11 = {jaxtyping = "jaxtyping.pytest_plugin"}} [build-system] requires = ["hatchling"]