From 1da00cdeb86878a358b0b69e6b93feac628cf9c3 Mon Sep 17 00:00:00 2001 From: Daniel Ohayon Date: Wed, 4 Jun 2025 16:26:31 -0700 Subject: [PATCH] update pyre version Summary: Updating to a new version of pyre since the one we used has been removed from pip (too old). Recently it seems pyre configs have changed and we need a special argument to enable strict "no Any type" checks. Differential Revision: D75996666 --- .pyre_configuration | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pyre_configuration b/.pyre_configuration index 919cd176c..643f62de7 100644 --- a/.pyre_configuration +++ b/.pyre_configuration @@ -18,5 +18,6 @@ "stubs" ], "strict": true, - "version": "0.0.101732536891" + "enable_strict_any_check": true, + "version": "0.0.101749035478" }