From b6c7d3b13ead8ed6ce62277a98d8d45cec05bb5f Mon Sep 17 00:00:00 2001 From: Anton Agestam Date: Sun, 27 Oct 2024 13:34:57 +0100 Subject: [PATCH] fix: Unpin typeguard (#323) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a259859..d6d16f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ dependencies = [ # typeguard 4.3.0 breaks "intersection" protocols, see linked issue. I didn't figure # out a way to work around this at the moment, so it needs to be pinned. # https://github.com/antonagestam/phantom-types/issues/299 - "typeguard>=4,<4.3.0", + "typeguard>=4,!=4.3.*", "typing_extensions>=4.3.0", "numerary>=0.4.3", ]