From 77c263c3def8ea3bcb7d7642c5a8402c16cf76fb Mon Sep 17 00:00:00 2001 From: Roma Knyaz Date: Tue, 10 Oct 2023 17:50:51 +0200 Subject: [PATCH] Allow only typeguard lower than 3.x.x version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b6def35..d74728f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ classifiers = [ "Topic :: Scientific/Engineering :: Mathematics", ] urls = {repository = "https://github.com/google/jaxtyping" } -dependencies = ["numpy>=1.20.0", "typeguard>=2.13.3", "typing_extensions>=3.7.4.1"] +dependencies = ["numpy>=1.20.0", "typeguard>=2.13.3,<3", "typing_extensions>=3.7.4.1"] entry-points = {pytest11 = {jaxtyping = "jaxtyping._pytest_plugin"}} [build-system]