From 622bcbc8caeeb5cd9f7bd0124540aff4d2bcc77a Mon Sep 17 00:00:00 2001 From: Nazim Can Isik Date: Mon, 29 Jul 2024 15:25:09 -0700 Subject: [PATCH] remove unused intervaltree dependency (#901) Summary: **Pre-submission checklist** - [ x] I've ran the linters locally and fixed lint errors related to the files I modified in this PR. You can install the linters by running `pip install -r requirements-dev.txt && pre-commit install` - [x ] `pre-commit run` the library intervaltree seems to be not anymore used in the codebase but still defined as a dependency currently the latest version is broken https://github.com/chaimleib/intervaltree/issues/138 solves https://github.com/facebook/pyre-check/issues/902 Pull Request resolved: https://github.com/facebook/pyre-check/pull/901 Reviewed By: stroxler Differential Revision: D60394186 Pulled By: samwgoldman fbshipit-source-id: b6fd3b004437b5bd4283cbf87891cb454856d2e2 --- .pyre_configuration | 3 --- requirements.txt | 1 - 2 files changed, 4 deletions(-) diff --git a/.pyre_configuration b/.pyre_configuration index ef63cab75a8..7a7753419bc 100644 --- a/.pyre_configuration +++ b/.pyre_configuration @@ -26,9 +26,6 @@ { "site-package": "graphql" }, - { - "site-package": "intervaltree" - }, { "site-package": "libcst" }, diff --git a/requirements.txt b/requirements.txt index 4dafefd195f..7c4c0f9b3ca 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,5 @@ click>=8.0 dataclasses-json==0.5.7 -intervaltree libcst psutil pyre-extensions>=0.0.29