Skip to content

Commit

Permalink
Remove blocklisted projects (#174)
Browse files Browse the repository at this point in the history
* Support indexing dependency cycles

* Remove blocklisted projects

Now that we can index cycles, these should be fine
  • Loading branch information
zsol committed Jun 1, 2024
1 parent e0ca970 commit 5330875
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions py_wtf/indexer/pypi.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,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:
Expand Down

0 comments on commit 5330875

Please sign in to comment.