From 4e3eb189541b5de9c04569018fe97643b8771d48 Mon Sep 17 00:00:00 2001 From: Zsolt Dollenstein Date: Sat, 1 Jun 2024 20:15:34 +0100 Subject: [PATCH] Remove blocklisted projects Now that we can index cycles, these should be fine --- py_wtf/indexer/pypi.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/py_wtf/indexer/pypi.py b/py_wtf/indexer/pypi.py index f2df9b18b..5277f1444 100644 --- a/py_wtf/indexer/pypi.py +++ b/py_wtf/indexer/pypi.py @@ -72,12 +72,7 @@ def _build_symbol_table(projects: Iterable[Project]) -> SymbolTable: ), mp_context=multiprocessing.get_context("spawn"), ) -PROJECT_BLOCKLIST = frozenset( - { - "poetry-plugin-export", # circular dependency on poetry - "apache-airflow", # circular dependencies between airflow and some providers - } -) +PROJECT_BLOCKLIST = frozenset({}) def blocklisted_project_factory(project_name: ProjectName) -> Project: