From 7a5b455684942a6622f1bfc16a57c65a0c29943a Mon Sep 17 00:00:00 2001 From: Karolina Surma Date: Fri, 20 Mar 2026 13:18:41 +0100 Subject: [PATCH 1/3] Generate most common blocking components report --- jobs.py | 50 +++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 45 insertions(+), 5 deletions(-) diff --git a/jobs.py b/jobs.py index f5c2caa..a5b5a4e 100644 --- a/jobs.py +++ b/jobs.py @@ -1,6 +1,7 @@ import collections from dataclasses import dataclass, field import functools +import json import os import sys @@ -291,6 +292,7 @@ def report_blocking_components(loop_detector): log('\nDetected dependency loops:') for loop in sorted(loops, key=lambda t: -len(t)): log(' • ' + ' → '.join(loop)) + return loops def get_component_status_info(component, missing_packages, components, unresolvable_components, prerel_abi_blocked_components=None): @@ -540,13 +542,35 @@ def process_component(component, ctx): check_bcond_builds(component, number_of_resolved, ctx) +def assemble_component_info(component, count, ctx): + entry = { + 'component': component, + 'count': count, + } + if component in ctx.unresolvable_components: + entry['unresolvable'] = True + if component in ctx.prerel_abi_blocked_components: + entry['prerel_abi_blocked'] = True + if component in ctx.missing_packages: + entry['blocked_by'] = sorted(ctx.missing_packages[component]) + return entry + + def generate_reports(ctx): """ Generate and print all summary reports. - + Also saves the report data to commonly-needed-report.json. + Args: ctx: RebuildContext with statistics and component data """ + report_data = { + 'most_commonly_needed': [], + 'most_commonly_last_blocking': [], + 'most_commonly_last_blocking_combinations': [], + 'dependency_loops': [] + } + log('\nThe 50 most commonly needed components are:') for component, count in ctx.blocker_counter['general'].most_common(50): status_info = get_component_status_info( @@ -554,7 +578,10 @@ def generate_reports(ctx): ctx.unresolvable_components, ctx.prerel_abi_blocked_components ) log(f'{count:>5} {component:<35} {status_info}') - + + entry = assemble_component_info(component, count, ctx) + report_data['most_commonly_needed'].append(entry) + log('\nThe 20 most commonly last-blocking components are:') for component, count in ctx.blocker_counter['single'].most_common(20): status_info = get_component_status_info( @@ -562,12 +589,25 @@ def generate_reports(ctx): ctx.unresolvable_components, ctx.prerel_abi_blocked_components ) log(f'{count:>5} {component:<35} {status_info}') - + + entry = assemble_component_info(component, count, ctx) + report_data['most_commonly_last_blocking'].append(entry) + log('\nThe 20 most commonly last-blocking small combinations of components are:') for components_tuple, count in ctx.blocker_counter['combinations'].most_common(20): log(f'{count:>5} {", ".join(components_tuple)}') - - report_blocking_components(ctx.loop_detector) + + report_data['most_commonly_last_blocking_combinations'].append({ + 'components': list(components_tuple), + 'count': count + }) + + loops = report_blocking_components(ctx.loop_detector) + report_data['dependency_loops'] = [list(loop) for loop in loops] + + with open('commonly-needed-report.json', 'w') as f: + json.dump(report_data, f, indent=2) + log('\nReport saved to commonly-needed-report.json') def main(): From fb9e7ee06004bd252c3e85d384e58f347f4186dd Mon Sep 17 00:00:00 2001 From: Karolina Surma Date: Fri, 20 Mar 2026 18:26:15 +0100 Subject: [PATCH 2/3] Generate full availability report for the components --- jobs.py | 96 ++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 75 insertions(+), 21 deletions(-) diff --git a/jobs.py b/jobs.py index a5b5a4e..eaa1d51 100644 --- a/jobs.py +++ b/jobs.py @@ -66,6 +66,7 @@ class RebuildContext: missing_packages: dict = field(default_factory=lambda: collections.defaultdict(set)) unresolvable_components: set = field(default_factory=set) prerel_abi_blocked_components: set = field(default_factory=set) + component_availability: dict = field(default_factory=dict) def _query_packages_by_deps(sack_getter, deps, excluded_components): @@ -486,31 +487,45 @@ def check_bcond_build(component, bcond_config, number_of_resolved, ctx): return ready_to_rebuild +def extract_bcond_identifier(s): + non_empty_parts = [p for p in s.split(':') if p] + return non_empty_parts[1] if len(non_empty_parts) >= 2 else None + + def check_bcond_builds(component, number_of_resolved, ctx): """ Check all bcond builds for a component that isn't ready for regular build. - + Args: component: Name of the component to check number_of_resolved: Number of packages in regular build (for comparison) ctx: RebuildContext with shared data and state - + Prints any bcond build identifiers that are ready to rebuild. + + Returns: + tuple: (buildable_bconds, non_buildable_bconds) """ from bconds import bcond_cache_identifier - - if component not in CONFIG['bconds']: - return - - for bcond_config in CONFIG['bconds'][component]: - bcond_config['id'] = bcond_cache_identifier(component, bcond_config) - log(f'• {component} not ready and {bcond_config["id"]} bcond found, will check that one') - - ready_to_rebuild = check_bcond_build(component, bcond_config, number_of_resolved, ctx) - - if ready_to_rebuild: - if should_print_component(component, ctx.components_done): - print(bcond_config['id']) + + buildable_bconds = [] + non_buildable_bconds = [] + + if component in CONFIG['bconds']: + for bcond_config in CONFIG['bconds'][component]: + bcond_config['id'] = bcond_cache_identifier(component, bcond_config) + log(f'• {component} not ready and {bcond_config["id"]} bcond found, will check that one') + + ready_to_rebuild = check_bcond_build(component, bcond_config, number_of_resolved, ctx) + + if ready_to_rebuild: + if should_print_component(component, ctx.components_done): + print(bcond_config['id']) + buildable_bconds.append(extract_bcond_identifier(bcond_config['id'])) + else: + non_buildable_bconds.append(extract_bcond_identifier(bcond_config['id'])) + + return sorted(buildable_bconds), sorted(non_buildable_bconds) def should_print_component(component, components_done): @@ -526,20 +541,30 @@ def should_print_component(component, components_done): def process_component(component, ctx): """ Process a single component: check regular build and bcond builds if needed. - + Stores availability data in ctx.component_availability. + Args: component: Name of the component to process ctx: RebuildContext with shared data and state - + Prints the component or bcond identifier if ready to rebuild. """ ready_to_rebuild, number_of_resolved = check_regular_build(component, ctx) - + availability = { + 'can_build_regular': ready_to_rebuild, + 'buildable_bconds': [], + 'non_buildable_bconds': [], + } + if ready_to_rebuild: if should_print_component(component, ctx.components_done): print(component) else: - check_bcond_builds(component, number_of_resolved, ctx) + buildable_bconds, non_buildable_bconds = check_bcond_builds(component, number_of_resolved, ctx) + availability['buildable_bconds'] = buildable_bconds + availability['non_buildable_bconds'] = non_buildable_bconds + + ctx.component_availability[component] = availability def assemble_component_info(component, count, ctx): @@ -596,7 +621,6 @@ def generate_reports(ctx): log('\nThe 20 most commonly last-blocking small combinations of components are:') for components_tuple, count in ctx.blocker_counter['combinations'].most_common(20): log(f'{count:>5} {", ".join(components_tuple)}') - report_data['most_commonly_last_blocking_combinations'].append({ 'components': list(components_tuple), 'count': count @@ -610,6 +634,35 @@ def generate_reports(ctx): log('\nReport saved to commonly-needed-report.json') +def generate_component_availability_report(ctx): + """ + Generate and save full component availability report. + Creates component-availability-report.json with per-component data. + + Args: + ctx: RebuildContext with component availability data + """ + + report_data = {} + for component in ctx.components: + availability = ctx.component_availability.get(component, {}) + + report_data[component] = { + 'was_already_built': component in ctx.components_done, + 'is_resolvable': component not in ctx.unresolvable_components, + 'prerel_abi_compatible': component not in ctx.prerel_abi_blocked_components, + 'can_build_regular': availability.get('can_build_regular', False), + 'buildable_bconds': availability.get('buildable_bconds'), + 'non_buildable_bconds': availability.get('non_buildable_bconds'), + 'blocked_by': sorted(ctx.loop_detector.get(component, [])), + 'blocks_count': ctx.blocker_counter['general'].get(component, 0) + } + + with open('component-availability-report.json', 'w') as f: + json.dump(report_data, f, indent=2, sort_keys=True) + log('Full component availability report saved to component-availability-report.json') + + def main(): """ Main entry point for rebuild analysis. @@ -638,8 +691,9 @@ def main(): for component in components_to_process: process_component(component, ctx) - + generate_reports(ctx) + generate_component_availability_report(ctx) if __name__ == '__main__': From 48eb7fdd56a5f894f8b48264aa5e8118005ea168 Mon Sep 17 00:00:00 2001 From: Karolina Surma Date: Fri, 20 Mar 2026 19:01:34 +0100 Subject: [PATCH 3/3] Add the reports --- commonly-needed-report.json | 712 + component-availability-report.json | 41974 +++++++++++++++++++++++++++ 2 files changed, 42686 insertions(+) create mode 100644 commonly-needed-report.json create mode 100644 component-availability-report.json diff --git a/commonly-needed-report.json b/commonly-needed-report.json new file mode 100644 index 0000000..983df59 --- /dev/null +++ b/commonly-needed-report.json @@ -0,0 +1,712 @@ +{ + "most_commonly_needed": [ + { + "component": "python-matplotlib", + "count": 109 + }, + { + "component": "python-Bottleneck", + "count": 84, + "blocked_by": [ + "python-numpydoc" + ] + }, + { + "component": "python-pydantic-core", + "count": 79, + "blocked_by": [ + "python-dirty-equals", + "python-inline-snapshot" + ] + }, + { + "component": "python-pydantic", + "count": 78, + "blocked_by": [ + "python-dirty-equals", + "python-pydantic-core" + ] + }, + { + "component": "python-pyperclip", + "count": 59, + "blocked_by": [ + "python-qt5" + ] + }, + { + "component": "python-cmd2", + "count": 55, + "blocked_by": [ + "python-pyperclip" + ] + }, + { + "component": "python-qt5", + "count": 54 + }, + { + "component": "python-cliff", + "count": 54, + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-stestr" + ] + }, + { + "component": "python-sqlalchemy", + "count": 50, + "blocked_by": [ + "python-pg8000", + "python-psycopg2", + "python-scramp" + ] + }, + { + "component": "python-stestr", + "count": 49, + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip" + ] + }, + { + "component": "python-twisted", + "count": 48 + }, + { + "component": "python-debtcollector", + "count": 32, + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-reno", + "python-stestr" + ] + }, + { + "component": "python-pyqt6", + "count": 30 + }, + { + "component": "python-joblib", + "count": 30 + }, + { + "component": "python-oslo-utils", + "count": 29, + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-oslo-config", + "python-pyperclip", + "python-reno", + "python-stestr" + ] + }, + { + "component": "sympy", + "count": 29, + "blocked_by": [ + "llvm", + "python-matplotlib" + ] + }, + { + "component": "python-keystoneauth1", + "count": 27, + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-oslo-config", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ] + }, + { + "component": "python-oslo-config", + "count": 26, + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-oslo-config", + "python-oslo-context", + "python-oslo-log", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ] + }, + { + "component": "python-reno", + "count": 25, + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-stestr" + ] + }, + { + "component": "python-smart_open", + "count": 24, + "blocked_by": [ + "python-google-api-core", + "python-google-cloud-core", + "python-google-cloud-storage", + "python-proto-plus" + ] + }, + { + "component": "python-oslo-serialization", + "count": 23, + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ] + }, + { + "component": "python-scikit-learn", + "count": 22, + "blocked_by": [ + "python-joblib" + ] + }, + { + "component": "snakemake", + "count": 22, + "blocked_by": [ + "python-Bottleneck", + "python-google-api-core", + "python-google-cloud-core", + "python-google-cloud-storage", + "python-proto-plus", + "python-smart_open", + "python-snakemake-executor-plugin-cluster-generic", + "python-snakemake-storage-plugin-fs", + "python-snakemake-storage-plugin-http", + "python-snakemake-storage-plugin-s3" + ] + }, + { + "component": "python-openstacksdk", + "count": 21, + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-keystoneauth1", + "python-oslo-config", + "python-pyperclip", + "python-stestr" + ] + }, + { + "component": "python-shapely", + "count": 18, + "blocked_by": [ + "pyproj", + "python-matplotlib", + "python-scipy-doctest" + ] + }, + { + "component": "python-astropy", + "count": 18, + "prerel_abi_blocked": true, + "blocked_by": [ + "python-matplotlib", + "python-pytest-arraydiff", + "python-pytest-astropy", + "python-scikit-image" + ] + }, + { + "component": "python-numpydoc", + "count": 18, + "blocked_by": [ + "python-matplotlib" + ] + }, + { + "component": "python-cytoolz", + "count": 18, + "prerel_abi_blocked": true + }, + { + "component": "python-websockets", + "count": 17, + "prerel_abi_blocked": true + }, + { + "component": "python-rapidfuzz", + "count": 16, + "blocked_by": [ + "python-Bottleneck" + ] + }, + { + "component": "python-pytest-regressions", + "count": 16, + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib" + ] + }, + { + "component": "python-pika", + "count": 15, + "blocked_by": [ + "python-twisted" + ] + }, + { + "component": "python-pyside6", + "count": 15, + "prerel_abi_blocked": true + }, + { + "component": "python-pydata-sphinx-theme", + "count": 14, + "blocked_by": [ + "python-pytest-regressions" + ] + }, + { + "component": "python-psycopg2", + "count": 14 + }, + { + "component": "python-keystoneclient", + "count": 14, + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-openstacksdk", + "python-os-client-config", + "python-oslo-config", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ] + }, + { + "component": "python-proto-plus", + "count": 14, + "blocked_by": [ + "python-google-api-core", + "python-proto-plus" + ] + }, + { + "component": "python-osc-lib", + "count": 14, + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-openstacksdk", + "python-oslo-utils", + "python-pyperclip", + "python-stestr" + ] + }, + { + "component": "python-eth-utils", + "count": 14, + "blocked_by": [ + "python-cytoolz", + "python-pydantic", + "python-pydantic-core" + ] + }, + { + "component": "pyproj", + "count": 13 + }, + { + "component": "python-crochet", + "count": 13, + "blocked_by": [ + "python-twisted" + ] + }, + { + "component": "python-CacheControl", + "count": 13, + "blocked_by": [ + "python-cherrypy", + "python-zc-lockfile" + ] + }, + { + "component": "jupyterlab", + "count": 13, + "blocked_by": [ + "python-cattrs", + "python-requests-cache" + ] + }, + { + "component": "python-alembic", + "count": 12, + "blocked_by": [ + "python-sqlalchemy" + ] + }, + { + "component": "fedora-messaging", + "count": 12, + "blocked_by": [ + "python-crochet", + "python-pika", + "python-twisted" + ] + }, + { + "component": "python-google-api-core", + "count": 12, + "blocked_by": [ + "python-proto-plus" + ] + }, + { + "component": "python-cattrs", + "count": 12, + "blocked_by": [ + "python-orjson", + "python-pymongo" + ] + }, + { + "component": "python3-openid", + "count": 12, + "blocked_by": [ + "python-psycopg2" + ] + }, + { + "component": "python-orjson", + "count": 11, + "blocked_by": [ + "python-pendulum" + ] + }, + { + "component": "python-partd", + "count": 11, + "blocked_by": [ + "python-Bottleneck" + ] + } + ], + "most_commonly_last_blocking": [ + { + "component": "python-matplotlib", + "count": 27 + }, + { + "component": "python-qt5", + "count": 24 + }, + { + "component": "python-twisted", + "count": 23 + }, + { + "component": "python-Bottleneck", + "count": 17, + "blocked_by": [ + "python-numpydoc" + ] + }, + { + "component": "python-sqlalchemy", + "count": 14, + "blocked_by": [ + "python-pg8000", + "python-psycopg2", + "python-scramp" + ] + }, + { + "component": "python-pytest-regressions", + "count": 10, + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib" + ] + }, + { + "component": "python-pyqt6", + "count": 9 + }, + { + "component": "python-pyside6", + "count": 9, + "prerel_abi_blocked": true + }, + { + "component": "python-zope-testrunner", + "count": 7 + }, + { + "component": "python-flexmock", + "count": 6, + "blocked_by": [ + "python-twisted", + "python-zope-testrunner" + ] + }, + { + "component": "python-time-machine", + "count": 5 + }, + { + "component": "python-psycopg2", + "count": 5 + }, + { + "component": "python-versioningit", + "count": 5, + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ] + }, + { + "component": "python-numpydoc", + "count": 5, + "blocked_by": [ + "python-matplotlib" + ] + }, + { + "component": "python3-openid", + "count": 5, + "blocked_by": [ + "python-psycopg2" + ] + }, + { + "component": "python-peewee", + "count": 4, + "blocked_by": [ + "python-psycopg2" + ] + }, + { + "component": "python-orjson", + "count": 4, + "blocked_by": [ + "python-pendulum" + ] + }, + { + "component": "python-websockets", + "count": 4, + "prerel_abi_blocked": true + }, + { + "component": "jupyterlab", + "count": 4, + "blocked_by": [ + "python-cattrs", + "python-requests-cache" + ] + }, + { + "component": "sympy", + "count": 4, + "blocked_by": [ + "llvm", + "python-matplotlib" + ] + } + ], + "most_commonly_last_blocking_combinations": [ + { + "components": [ + "python-pydantic", + "python-pydantic-core" + ], + "count": 24 + }, + { + "components": [ + "python-smart_open", + "snakemake" + ], + "count": 17 + }, + { + "components": [ + "fedora-messaging", + "python-crochet", + "python-pika", + "python-twisted" + ], + "count": 8 + }, + { + "components": [ + "poetry", + "python-CacheControl", + "python-cleo", + "python-rapidfuzz" + ], + "count": 7 + }, + { + "components": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-stestr" + ], + "count": 7 + }, + { + "components": [ + "python-torch", + "sympy" + ], + "count": 7 + }, + { + "components": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "count": 6 + }, + { + "components": [ + "gnuradio", + "python-pyqtgraph", + "python-qt5" + ], + "count": 5 + }, + { + "components": [ + "python-astropy", + "python-pytest-arraydiff", + "python-pytest-astropy" + ], + "count": 5 + }, + { + "components": [ + "python-cytoolz", + "python-eth-utils", + "python-pydantic", + "python-pydantic-core" + ], + "count": 5 + }, + { + "components": [ + "python-google-api-core", + "python-proto-plus" + ], + "count": 4 + }, + { + "components": [ + "python-Bottleneck", + "python-matplotlib" + ], + "count": 4 + }, + { + "components": [ + "mkdocs-material", + "python-backrefs" + ], + "count": 4 + }, + { + "components": [ + "python-pyqt6", + "python-qt5" + ], + "count": 4 + }, + { + "components": [ + "python-pymongo", + "python-sqlalchemy" + ], + "count": 3 + }, + { + "components": [ + "python-cliff", + "python-cmd2", + "python-pyperclip" + ], + "count": 3 + }, + { + "components": [ + "python-pyramid", + "python-zope-deprecation" + ], + "count": 3 + }, + { + "components": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-openstacksdk", + "python-oslo-utils", + "python-pyperclip", + "python-stestr" + ], + "count": 3 + }, + { + "components": [ + "python-pydantic", + "python-pydantic-core", + "python-pydantic-settings" + ], + "count": 3 + }, + { + "components": [ + "python-pint", + "python-pydantic", + "python-pydantic-core" + ], + "count": 3 + } + ], + "dependency_loops": [] +} \ No newline at end of file diff --git a/component-availability-report.json b/component-availability-report.json new file mode 100644 index 0000000..1c8ee21 --- /dev/null +++ b/component-availability-report.json @@ -0,0 +1,41974 @@ +{ + "2ping": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "389-ds-base": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "APLpy": { + "blocked_by": [ + "python-astropy", + "python-astropy-healpix", + "python-dask", + "python-matplotlib", + "python-numcodecs", + "python-partd", + "python-pyregion", + "python-pytest-arraydiff", + "python-pytest-astropy", + "python-pytest-mpl", + "python-reproject", + "python-scikit-image", + "python-shapely", + "python-zarr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "COPASI": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "Cython": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "DisplayCAL": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "FP16": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "GitPython": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "HepMC3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "Io-language": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "MUSIC": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "Macaulay2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "Mayavi": { + "blocked_by": [ + "python-AppTools", + "python-pyface", + "python-qt5", + "python-traitsui" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "NFStest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "NLopt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "NiaAML-GUI": { + "blocked_by": [ + "python-Bottleneck", + "python-joblib", + "python-matplotlib", + "python-niaaml", + "python-niapy", + "python-pyqt-feedback-flow", + "python-pyqt6", + "python-pytest-qt", + "python-scikit-learn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "OpenColorIO": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "OpenImageIO": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "OpenLP": { + "blocked_by": [ + "pyqtwebengine", + "python-alembic", + "python-qt5", + "python-sqlalchemy", + "python-websockets" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ProDy": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "PyGreSQL": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "PyMca": { + "blocked_by": [ + "python-matplotlib", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "PyQt-builder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "PySolFC": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "PyX": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "PyYAML": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "R2spec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "RBTools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ServiceReport": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "SoapySDR": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "TurboGears2": { + "blocked_by": [ + "python-repoze-who-plugins-sa", + "python-sqlalchemy", + "python-zope-sqlalchemy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "WALinuxAgent": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "YafaRay": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "Zim": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "aactivator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "abiword": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "abrt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "abrt-server-info-page": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "academic-admin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "accerciser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "adb-enhanced": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "afflib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "aggregate6": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "airnef": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "alacarte": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "almalinux-git-utils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "alot": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "amdsmi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ampy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "anaconda": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ansible": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ansible-bender": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ansible-builder": { + "blocked_by": [ + "bindep", + "python-parsley" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "ansible-collections-openstack": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ansible-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ansible-inventory-grapher": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ansible-lint": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "antlr4-project": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "apbs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "apk-tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "appliance-tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "apx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ara": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "with_docs" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "arandr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "arbor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "argparse-manpage": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "asahi-installer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "asciidoc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "assimp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "astrometry": { + "blocked_by": [ + "python-astropy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "at-spi2-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "atomic-reactor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "aubio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "audiotube": { + "blocked_by": [ + "python-websockets", + "yt-dlp" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "audit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "auditwheel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "autojump": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "autokey": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "autowrap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "avogadro2-libs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "awscli2": { + "blocked_by": [ + "python-awscrt" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "azote": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "azure-cli": { + "blocked_by": [ + "python-azure-mgmt-advisor", + "python-azure-mgmt-billing", + "python-azure-mgmt-datamigration", + "python-azure-mgmt-maps", + "python-azure-mgmt-marketplaceordering" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "b43-tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "babel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "babeltrace": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "babeltrace2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "badchars": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "barman": { + "blocked_by": [ + "python-psycopg2" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "battray": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "bcc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "beaker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "beets": { + "blocked_by": [ + "python-pydata-sphinx-theme", + "python-requests-ratelimiter" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "bids-schema": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "bidscoin": { + "blocked_by": [ + "bids-schema", + "python-Bottleneck", + "python-bids-validator", + "python-citeproc-py", + "python-duecredit", + "python-fslpy", + "python-matplotlib", + "python-nifti-mrs", + "python-pymapvbvd", + "python-pyqt6", + "spec2nii" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "bindep": { + "blocked_by": [ + "python-parsley" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "binwalk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "blender": { + "blocked_by": [ + "pyproj", + "usd" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "blivet-gui": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "bluechi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "bluefish": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "blueman": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "blueprint-compiler": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "bmap-tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "bodhi-client": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "bodhi-messages": { + "blocked_by": [ + "fedora-messaging", + "python-crochet", + "python-pika", + "python-twisted" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "bodhi-server": { + "blocked_by": [ + "bodhi-messages", + "fedora-messaging", + "python-alembic", + "python-celery", + "python-cornice", + "python-crochet", + "python-kombu", + "python-pika", + "python-psycopg2", + "python-pyramid", + "python-pyramid-mako", + "python-sqlalchemy", + "python-twisted", + "python-zope-deprecation" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "boom-boot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "boost": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "borgbackup": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "borgmatic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "botan": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "botan2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "botan3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "bout++": { + "blocked_by": [ + "python-blosc2", + "python-boutdata", + "python-matplotlib", + "python-ndindex", + "python-tables", + "python-zoidberg", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "bpython": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "breezy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "brltty": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "brotli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "btrfs-backup-ng": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "btrfs-progs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "btrfs-sxbackup": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "bubblemail": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "buildbot": { + "blocked_by": [ + "python-alembic", + "python-autobahn", + "python-sqlalchemy", + "python-treq", + "python-twisted", + "python-txaio" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "buildstream": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "buildstream-plugins": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "bumpversion": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "buttermanager": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "calamares": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "calibre": { + "blocked_by": [ + "python-mechanize", + "python-pyqt6", + "python-pyqt6-webengine" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "calypso": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cambalache": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cantor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "capstone": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "capypdf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cargo2rpm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "caribou": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "catfish": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ccsm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cdist": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cekit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "centpkg": { + "blocked_by": [ + "python-gitlab", + "rpkg", + "rpmlint" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "cepces": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ceph": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "certbot": { + "blocked_by": [ + "google-api-python-client", + "python-digitalocean", + "python-dns-lexicon", + "python-google-api-core", + "python-jsonpickle", + "python-proto-plus" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "cffconvert": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "chirp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "classification-banner": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "claws-mail": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "clingo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cloud-init": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "clustershell": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cm_rgb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cmake": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cmakelang": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cobbler": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "coccinelle": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cockpit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "codespell": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "coin-or-HiGHS": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "colin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "collectd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "compizconfig-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "compose-utils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "conan": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "concordance": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "conda": { + "blocked_by": [ + "conda", + "python-conda-sphinx-theme", + "python-menuinst", + "python-pydata-sphinx-theme" + ], + "blocks_count": 7, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "tests" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "conda-build": { + "blocked_by": [ + "conda", + "python-conda-index", + "python-conda-sphinx-theme", + "python-menuinst", + "python-pydata-sphinx-theme" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "condor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "congruity": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "conu": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "copr-backend": { + "blocked_by": [ + "python-alembic", + "python-sqlalchemy", + "resalloc" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "copr-cli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "copr-dist-git": { + "blocked_by": [ + "rpkg", + "rpmlint" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "copr-keygen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "copr-messaging": { + "blocked_by": [ + "fedora-messaging", + "python-crochet", + "python-pika", + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "copr-rpmbuild": { + "blocked_by": [ + "python-specfile", + "subscription-manager" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "cozy": { + "blocked_by": [ + "python-peewee" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "createrepo-agent": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "createrepo_c": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "criu": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cryptlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cryptominisat": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "csdiff": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "csmock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cucumber-messages": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cura": { + "blocked_by": [ + "python-pyqt6", + "python-shapely", + "python-uranium" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "cvc5": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "cxxtest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "d-feet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dblatex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dbus-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dcm2niix": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ddiskit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ddupdate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "debconf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dee": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "deltarpm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "deluge": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "devscripts": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dftd4": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dib-utils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "diceware": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "did": { + "blocked_by": [ + "python-psycopg2" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "diffoscope": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "dionaea": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "diskimage-builder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dist-git-client": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "distcc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "distgen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dnf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dnf-plugin-cow": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dnf-plugin-diff": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dnf-plugin-flunk_dependent_remove": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dnf-plugin-ovl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dnf-plugin-perfmetrics": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dnf-plugins-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dnf-plugins-extras": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dnf5": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dnfdaemon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dnfdragora": { + "blocked_by": [ + "libyui" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "dnsviz": { + "blocked_by": [ + "python-pygraphviz" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "doge": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dogtag-pki": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dogtail": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dot2tex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dt-schema": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "dtc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "duplicity": { + "blocked_by": [ + "google-api-python-client", + "python-debtcollector", + "python-google-api-core", + "python-keystoneauth1", + "python-keystoneclient", + "python-oslo-config", + "python-oslo-serialization", + "python-oslo-utils", + "python-proto-plus", + "python-swiftclient" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "dxf2gcode": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "dynaconf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ec2-hibinit-agent": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "eggdrop": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "electron-cash": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "electrum": { + "blocked_by": [ + "python-qdarkstyle", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "elements": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "elements-alexandria": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "emacs-jedi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "enjarify": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "enki": { + "blocked_by": [ + "python-qt5", + "python-qutepart" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "ephemeral-port-reserve": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "eralchemy": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "eric": { + "blocked_by": [ + "python-pyqt6", + "python-pyqt6-charts", + "python-pyqt6-webengine", + "qscintilla" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "espresso": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "esptool": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "etckeeper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "evemu": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "f3d": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fail2ban": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fapolicy-analyzer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "fastapi-cli": { + "blocked_by": [ + "fastapi-cloud-cli", + "fastapi-new", + "python-fastapi", + "python-pydantic", + "python-pydantic-core", + "python-rich-toolkit", + "python-rignore", + "python-uvicorn", + "python-watchfiles", + "python-websockets" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "fastapi-cloud-cli": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core", + "python-rich-toolkit", + "python-rignore", + "python-time-machine", + "python-uvicorn", + "python-watchfiles", + "python-websockets" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "fastapi-new": { + "blocked_by": [ + "python-rich-toolkit" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "fawltydeps": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "fedfind": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fedora-distro-aliases": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fedora-messaging": { + "blocked_by": [ + "python-crochet", + "python-pika", + "python-twisted" + ], + "blocks_count": 12, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "fedora-repro": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fedora-review": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fedora-third-party": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fedpkg": { + "blocked_by": [ + "rpkg", + "rpmlint" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "fedrq": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "file": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "firewalld": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "firmitas": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "flatbuffers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "flatpak-module-tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "flent": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "flowblade": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fmf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fmf-jinja": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fontforge": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fontmake": { + "blocked_by": [ + "fonttools", + "python-cattrs", + "python-glyphsLib", + "python-orjson", + "python-ufo2ft", + "python-ufoLib2" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "fonts-tweak-tool": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fonttools": { + "blocked_by": [], + "blocks_count": 8, + "buildable_bconds": [ + "graphite_extra-interpolatable_extra-plot_extra-symfont_extra-tests-ufo_extra-woff_extra" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fprettify": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "freecell-solver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "freeipa": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "freeipa-desktop-profile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "freeipa-fas": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "freeipa-healthcheck": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "freeradius": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "frescobaldi": { + "blocked_by": [ + "python-pyqt6", + "python-pyqt6-webengine", + "python-qpageview" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "fts-rest-client": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "fusion-icon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gajim": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gammastep": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ganglia": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gcovr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gdal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gdb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gdcm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gdl": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "gensio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "geopmd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gerrymander": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "getdp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "getmail6": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gherkin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gi-docgen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gi-loadouts": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "ginga": { + "blocked_by": [ + "python-astropy", + "python-astroquery", + "python-matplotlib", + "python-photutils", + "python-pyvo", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "git-archive-all": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "git-cola": { + "blocked_by": [ + "python-pyqt6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "git-fame": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "git-filter-repo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "git-imerge": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "git-pull-request": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "git-review": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "git-up": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gitg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gitlint": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gjots2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "glade": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "glances": { + "blocked_by": [ + "python-fastapi", + "python-orjson", + "python-pydantic", + "python-pydantic-core", + "python-uvicorn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "glaxnimate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "globus-net-manager": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "glusterfs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gmsh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gnofract4d": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gnome-abrt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gnome-browser-connector": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gnome-doc-utils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gnome-feeds": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gnome-music": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gnome-ponytail-daemon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gnome-tweaks": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gns3-gui": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gns3-net-converter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gns3-server": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gnucash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gnulib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gnumeric": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gnuradio": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "go-vendor-tools": { + "blocked_by": [ + "python-beartype", + "python-ftfy", + "python-spdx-tools", + "python-specfile", + "scancode-toolkit" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "go2rpm": { + "blocked_by": [ + "go-vendor-tools" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "gobject-introspection": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gom": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "google-api-python-client": { + "blocked_by": [ + "python-google-api-core", + "python-proto-plus" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "google-auth-httplib2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gpaw": { + "blocked_by": [ + "python-ase", + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "gpgme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gphotoframe": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gplugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gpodder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gpsd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gr-air-modes": { + "blocked_by": [ + "gnuradio", + "python-pyqtgraph", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "gr-funcube": { + "blocked_by": [ + "gnuradio", + "python-pyqtgraph", + "python-qt5" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "gr-hpsdr": { + "blocked_by": [ + "gnuradio", + "python-pyqtgraph", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "gr-iqbal": { + "blocked_by": [ + "gnuradio", + "python-pyqtgraph", + "python-qt5" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "gr-osmosdr": { + "blocked_by": [ + "gnuradio", + "gr-funcube", + "gr-iqbal", + "python-pyqtgraph", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "gr-rds": { + "blocked_by": [ + "gnuradio", + "python-pyqtgraph", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "grammalecte": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gramps": { + "blocked_by": [ + "python-orjson" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "graphviz": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "grin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "grpc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gst": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gst-devtools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gst-editing-services": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gtimelog": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gtts": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gtts-token": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "guake": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gumbo-parser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gwe": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gwebsockets": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "gyp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "h5py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "hamlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "hatch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "hddfancontrol": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "hexchat": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "hgsvn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "hivex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "home-assistant-cli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "hplip": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "hstsparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "httpie": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "hugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "hydrapaper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "i2c-tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ibus": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ibus-cangjie": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ikiwiki": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ilua": { + "blocked_by": [ + "python-twisted", + "python-txzmq" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "imagefactory": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "imagefactory-plugins": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "imath": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "impressive": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ini2toml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "initial-setup": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "inn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "input-remapper": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "insight": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "intelhex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ipsilon": { + "blocked_by": [ + "python-openid-cla", + "python-openid-teams", + "python3-openid" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "ipython": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "irclog2html": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "is-it-in-rhel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "iscsi-initiator-utils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "isomd5sum": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "jack-mixer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "javapackages-tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "jc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "jello": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "joft": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "jrnl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "jsonnet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "jupyterlab": { + "blocked_by": [ + "python-cattrs", + "python-requests-cache" + ], + "blocks_count": 13, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "kalamine": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kea": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kernel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "keycloak-httpd-client-install": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "keylime": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kf6-kapidox": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kf6-kcoreaddons": { + "blocked_by": [ + "python-pyside6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "kf6-kguiaddons": { + "blocked_by": [ + "python-pyside6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "kf6-kjobwidgets": { + "blocked_by": [ + "python-pyside6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "kf6-knotifications": { + "blocked_by": [ + "python-pyside6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "kf6-kstatusnotifieritem": { + "blocked_by": [ + "python-pyside6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "kf6-kunitconversion": { + "blocked_by": [ + "python-pyside6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "kf6-kwidgetsaddons": { + "blocked_by": [ + "python-pyside6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "kf6-kxmlgui": { + "blocked_by": [ + "python-pyside6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "khal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "khard": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kicad": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kig": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kitty": { + "blocked_by": [ + "go-vendor-tools" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "kiwi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kiwi-boxed-plugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kiwi-stackbuild-plugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kmymoney": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "knot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "koan": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kobo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "koji": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "koji-containerbuild": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "koji-flatpak": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "koji-image-builder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "koji-osbuild": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kopeninghours": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "krita": { + "blocked_by": [ + "python-pyqt6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "krop": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kurchu": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "kvirc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lammps": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "langtable": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lasso": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lazygal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ldns": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lector": { + "blocked_by": [ + "python-qt5", + "python3-poppler-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "legendary": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "legofy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lensfun": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lhapdf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libCombine": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "libaccounts-glib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libarcus": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libarrow": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libbatch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libblockdev": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libbytesize": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libcaca": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libcamera": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libcap-ng": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libcec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libchewing": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libcomps": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libcpuid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libdex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libdnet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libdnf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libesedb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libffado": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "libfreenect": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libftdi": { + "blocked_by": [], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "libgexiv2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libgexiv2_0.14": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libgit2-glib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libgpiod": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libguestfs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libiio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libiptcdata": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libixion": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libkdtree++": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libkml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "libkolabxml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "liblc3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "liblinear": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libloc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "liblouis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libmamba": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libmodulemd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libnbd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libnuml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libnvme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libolm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libopenshot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "liborcus": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libpeas": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libpeas1": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libpfm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libpkgmanifest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libplist": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libpoly": { + "blocked_by": [ + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "libpst": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libpwquality": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "librealsense": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libreoffice": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "librepo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libreport": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libsavitar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libsbml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libsearpc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libsedml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libselinux": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libsemanage": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libsigrokdecode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libsmbios": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libsolv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libsonata": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libstoragemgmt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libsvm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libtalloc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libtdb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libtevent": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libucl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libunity": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libuser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libvirt-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libvirt-test-API": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libvoikko": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libxc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libxml2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libxslt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "libyui": { + "blocked_by": [], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "lightdm-gtk-greeter-settings": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lilv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "limnoria": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "link-grammar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "linkchecker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "liquidctl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lirc": { + "blocked_by": [ + "libftdi" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "litecli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "livecd-tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "llvm": { + "blocked_by": [], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "llvm21": { + "blocked_by": [], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "lollypop": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "loook": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lorax": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lrcalc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lttng-tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lttng-ust": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lutris": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "lvm2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mailman3": { + "blocked_by": [ + "python-alembic", + "python-lazr-config", + "python-lazr-delegates", + "python-sqlalchemy", + "python-zope-configuration", + "python-zope-i18nmessageid", + "python-zope-schema" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "mailman3-fedmsg-plugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "mailman3-fedmsg-plugin-schemas": { + "blocked_by": [ + "fedora-messaging", + "python-crochet", + "python-pika", + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "mailnag": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mailprocessing": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "manafirewall": { + "blocked_by": [ + "libyui" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mapserver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "marisa": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "marshalparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mass-prebuild": { + "blocked_by": [ + "fedpkg", + "rpkg", + "rpmlint" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "mat2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mate-menu": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "materialx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mathgl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "matrix-synapse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "maturin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mcomix3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "med": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "meld": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mercurial": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "meson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mgarepo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "micropipenv": { + "blocked_by": [ + "python-flexmock" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "minigalaxy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mininet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "miniupnpc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mirage": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mkdocs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mkdocs-bootstrap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mkdocs-bootswatch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mkdocs-material": { + "blocked_by": [ + "python-backrefs", + "python-hatch-requirements-txt" + ], + "blocks_count": 7, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "mkosi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mlpack": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "mlt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mod_wsgi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "modpoll": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "module-build": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "modulemd-tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mogui": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "monkeytype": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "moose": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "mopidy": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "mopidy-mpd": { + "blocked_by": [ + "mopidy", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "morphio": { + "blocked_by": [], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "mozo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mpi4py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mpich": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mpsolve": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mqtt-randompub": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mrack": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mrchem": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "msoffcrypto-tool": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "mupdf": { + "blocked_by": [ + "llvm21" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "mycli": { + "blocked_by": [ + "python-jiter", + "python-llm", + "python-openai", + "python-pydantic", + "python-pydantic-core", + "python-pyperclip", + "python-python-ulid", + "python-rapidfuzz" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "mysql-connector-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "myst-nb": { + "blocked_by": [ + "jupyterlab", + "python-Bottleneck", + "python-ipywidgets", + "python-jupyter-cache", + "python-jupyterlab-widgets", + "python-jupytext", + "python-matplotlib", + "python-nbdime", + "python-notebook", + "python-pytest-regressions", + "python-sqlalchemy", + "sympy" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "nagios-plugins-systemd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nanopb": { + "blocked_by": [ + "poetry", + "python-CacheControl", + "python-cleo", + "python-rapidfuzz" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "nanovna-saver": { + "blocked_by": [ + "python-pyside6", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "nautilus-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nbdkit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "needrestart": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nemo-extensions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "net-snmp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "netcdf4-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "netgen-mesher": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "netplan": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "newt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nextpnr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nfs-ganesha": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "nfsometer": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "nftables": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nicotine+": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ninja-build": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nmstate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "noggin": { + "blocked_by": [ + "fedora-messaging", + "python-crochet", + "python-noggin-messages", + "python-pika", + "python-translitcodec", + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "nordugrid-arc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nordugrid-arc-nagios-plugins": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "notcurses": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "notmuch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nototools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "novelwriter": { + "blocked_by": [ + "python-pyqt6", + "python-pytest-qt", + "python-zlib-ng" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "nox": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ntpsec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "numpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nut": { + "blocked_by": [ + "python-pyqt6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "nvme-stas": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nvmetcli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nwchem": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nwg-panel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nwg-wrapper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "nyx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "obs-studio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "obsctl": { + "blocked_by": [ + "osc" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "oci-cli": { + "blocked_by": [ + "python-oci" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "ocrmypdf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "oct2spec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "odfpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "offlineimap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ogr2osm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "omniORB": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "omniORBpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "onionshare": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "onnx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "onnxruntime": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "openapi-python-client": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "openbabel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "opencv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "openmeeg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "openmpi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "openms": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "openscap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "openscap-report": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "openshadinglanguage": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "openshot": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "opensips": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "openssh-ldap-authkeys": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "opensuse-distro-aliases": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "opentrep": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "openvdb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "openvino": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "openvswitch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "openwsman": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "orca": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "osbs-client": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "osbuild": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "osc": { + "blocked_by": [], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "osh": { + "blocked_by": [ + "qpid-proton" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "otf2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "oz": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pacemaker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "packit": { + "blocked_by": [ + "osc", + "python-deepdiff", + "python-flexmock", + "python-gitlab", + "python-ogr", + "python-pydantic", + "python-pydantic-core", + "python-pyforgejo", + "python-specfile", + "rpkg", + "rpmlint" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pagure-exporter": { + "blocked_by": [ + "python-gitlab" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pam_wrapper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "paperwork": { + "blocked_by": [ + "python-joblib", + "python-paperwork-backend", + "python-scikit-learn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "paraview": { + "blocked_by": [ + "python-autobahn", + "python-twisted", + "python-txaio" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "partio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pass-audit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "patool": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pcapy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pcp": { + "blocked_by": [ + "python-psycopg2", + "python-pymongo" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pcp2pdf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pcs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pdf-stapler": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pdfarranger": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pepc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "perl-Inline-Python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "persepolis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "petsc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "pew": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pg_activity": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pgcli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "photocollage": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "picard": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "piccata": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "piper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pipx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pitivi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "playitagainsam": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "plplot": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pmbootstrap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pocketsphinx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "podman-compose": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "poetry": { + "blocked_by": [ + "python-CacheControl", + "python-cleo", + "python-deepdiff", + "python-rapidfuzz" + ], + "blocks_count": 8, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "poezio-omemo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "policycoreutils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "porcupine": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "portmidi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "postfix-mta-sts-resolver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "postgresql16": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "postgresql17": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "postgresql18": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "powerline": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pre-commit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "printrun": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "profanity": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "proselint": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "protobuf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "protontricks": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "proxmark3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "prunerepo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pss": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pssh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ptpython": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "puddletag": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pulp-cli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pulp-cli-deb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pulsecaster": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pungi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "py-radix": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "py-spidev": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "py3status": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyOpenSSL": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyatspi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyaudio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pybind11": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pybluez": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pybox2d": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pybugz": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pycairo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pycanberra": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pychess": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pychromecast": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pycmd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pycolumnize": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pydeps": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pydot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyee": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyelftools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyflakes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pygame": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pygobject3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pygrib": { + "blocked_by": [ + "pyproj", + "python-cartopy", + "python-matplotlib", + "python-pytest-mpl", + "python-shapely" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pygsl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyhoca-cli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyhoca-gui": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyhunspell": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyicu": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyinstrument": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyjokes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pykakasi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyke": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pykickstart": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pykka": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pylast": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pylibacl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pylibgamerzilla": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pylint": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pymilia": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pymodbus": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pymol": { + "blocked_by": [ + "python-pyside6", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pyodbc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyosmium": { + "blocked_by": [ + "python-shapely" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pyotherside": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyowm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyp2rpm": { + "blocked_by": [ + "python-flexmock" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pyp2spec": { + "blocked_by": [ + "python-pytest-regressions" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pyparsing": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyparted": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyplane": { + "blocked_by": [ + "python-matplotlib", + "python-qt5", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pypolicyd-spf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyppd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyproj": { + "blocked_by": [], + "blocks_count": 13, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pyqtwebengine": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pyscard": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyserial": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyshp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pysnmp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pystatgrab": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pysvn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pysysbot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pytest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "docs-tests-timeout" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pythia8": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-APScheduler": { + "blocked_by": [ + "python-pymongo", + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-AppTools": { + "blocked_by": [ + "python-Bottleneck", + "python-blosc2", + "python-ndindex", + "python-pyface", + "python-tables", + "python-traitsui" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-Automat": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "doc" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-Bottleneck": { + "blocked_by": [ + "python-numpydoc" + ], + "blocks_count": 84, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-CacheControl": { + "blocked_by": [ + "python-cherrypy", + "python-zc-lockfile" + ], + "blocks_count": 13, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-CommonMark": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-GeoIP": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-IPy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-Levenshtein": { + "blocked_by": [ + "python-rapidfuzz" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-Mastodon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ModulemdTranslationHelpers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-MultipartPostHandler2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-OBD": { + "blocked_by": [ + "python-pint" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-OWSLib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-Pallets-Sphinx-Themes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-PyAVM": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-PyGithub": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-PyMuPDF": { + "blocked_by": [ + "mupdf" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "python-PyMunin3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-PyMySQL": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-PyPDF2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-PyRSS2Gen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-Pympler": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-QtAwesome": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-QtPy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ROPGadget": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-Rtree": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-SALib": { + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib", + "python-multiprocess", + "python-pathos" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-SecretStorage": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-TestSlide": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-Traits": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-WSGIProxy2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-XStatic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-XStatic-Angular-UUID": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-XStatic-Angular-Vis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-XStatic-Bootstrap-SCSS": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-XStatic-DataTables": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-XStatic-FileSaver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-XStatic-JS-Yaml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-XStatic-Json2yaml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-XStatic-Patternfly": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-XStatic-Patternfly-Bootstrap-Treeview": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-a2wsgi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aaargh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-abimap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-absl-py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-accelerate": { + "blocked_by": [ + "python-safetensors", + "python-torch", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-accept-types": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-accessible-pygments": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-acoustid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-acres": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-adafruit-platformdetect": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-adal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-adb-shell": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-admesh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-advisory-parser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aeidon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aenum": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aexpect": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-affine": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ailment": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiodns": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiofiles": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aioftp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiohappyeyeballs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiohttp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiohttp-cors": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiohttp-oauthlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiohttp-retry": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiohttp-socks": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aioitertools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiolimiter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiomysql": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aioodbc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aioquic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aioresponses": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiorpcx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aioruckus": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiosignal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiosmtpd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiosqlite": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiostream": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiounifi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aiounittest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ajsonrpc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-alembic": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 12, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-alembic1.14": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-allpairspy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-alsa": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-amd-debug-tools": { + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib", + "python-numpydoc", + "python-seaborn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-amqp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ana": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-androguard": { + "blocked_by": [ + "python-matplotlib", + "python-pyperclip", + "python-qt5" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-animatplot": { + "blocked_by": [ + "python-matplotlib", + "python-nbsphinx" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-aniso8601": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-annarchy": { + "blocked_by": [ + "python-matplotlib", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-annexremote": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-annotated-doc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-annotated-types": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ansi2html": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ansible-compat": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ansible-pylibssh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ansible-runner": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ansicolor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-anyio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-anyjson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-anykeystore": { + "blocked_by": [ + "python-pymongo", + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-anytree": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aodhclient": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-openstacksdk", + "python-osc-lib", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-reno" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-apipkg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-apkinspector": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-appdirs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-application-properties": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-applicationinsights": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-apprise": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-apsw": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-apt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-apypie": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-archinfo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-archspec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-argcomplete": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-argon2-cffi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-argon2-cffi-bindings": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-argopt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-argparse-dataclass": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-arpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-array-api-strict": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-arrow": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-arviz": { + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib", + "python-xarray", + "python-xarray-einstats" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-asciitree": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ase": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-asgi-lifespan": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-asgiref": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-asn1": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-asn1crypto": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-asn1tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aspy.yaml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-assertpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ast-monitor": { + "blocked_by": [ + "python-Bottleneck", + "python-cytoolz", + "python-joblib", + "python-matplotlib", + "python-niaaml", + "python-niapy", + "python-pyqt-feedback-flow", + "python-pyqt6", + "python-pyqt6-webengine", + "python-pytest-qt", + "python-scikit-learn", + "python-sport-activities-features" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-astdoc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-asteval": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-astroML": { + "blocked_by": [ + "python-astropy", + "python-joblib", + "python-matplotlib", + "python-scikit-learn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-astroid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-astroplan": { + "blocked_by": [ + "python-astropy", + "python-matplotlib", + "python-pytest-arraydiff", + "python-pytest-astropy", + "python-pytest-mpl" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-astropy": { + "blocked_by": [ + "python-matplotlib", + "python-scikit-image" + ], + "blocks_count": 18, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "check" + ], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "python-astropy-healpix": { + "blocked_by": [ + "python-astropy", + "python-pytest-arraydiff", + "python-pytest-astropy" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-astropy-iers-data": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-astroquery": { + "blocked_by": [ + "python-astropy", + "python-pyvo" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-astroscrappy": { + "blocked_by": [ + "python-astropy", + "python-pytest-arraydiff", + "python-pytest-astropy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-asttokens": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-async-lru": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-async-timeout": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-asyncmy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-asyncpg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-asyncssh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-asysocks": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-atlassian-python-api": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-atpublic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-attrs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-audioread": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-augeas": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-authheaders": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-authlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-authres": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-autobahn": { + "blocked_by": [ + "python-matplotlib", + "python-twisted", + "python-txaio" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-autocommand": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-automaton": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-autopage": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-autopep8": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-avalara": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-avocado": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-avro": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-aw-client": { + "blocked_by": [ + "python-aw-core", + "python-peewee" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-aw-core": { + "blocked_by": [ + "python-peewee" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-aw-qt": { + "blocked_by": [ + "python-aw-core", + "python-peewee", + "python-pyqt6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-awesomeversion": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-awscrt": { + "blocked_by": [ + "python-websockets" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "python-axolotl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-axolotl-curve25519": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-ai-agents": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-ai-formrecognizer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-ai-projects": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-ai-textanalytics": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-appconfiguration": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-batch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-common": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-cosmos": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-data-tables": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-datalake-store": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-devtools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-functions-devops-build": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-graphrbac": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-identity": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-keyvault": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-keyvault-administration": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-keyvault-certificates": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-keyvault-keys": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-keyvault-secrets": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-keyvault-securitydomain": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-loganalytics": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-azure-mgmt-advisor": { + "blocked_by": [], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-azure-mgmt-apimanagement": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-appconfiguration": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-appcontainers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-applicationinsights": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-authorization": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-batch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-batchai": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-billing": { + "blocked_by": [], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-azure-mgmt-botservice": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-cdn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-cognitiveservices": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-compute": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-consumption": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-azure-mgmt-containerinstance": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-containerregistry": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-containerservice": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-cosmosdb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-databoxedge": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-azure-mgmt-datalake-analytics": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-datalake-store": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-datamigration": { + "blocked_by": [], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-azure-mgmt-devtestlabs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-azure-mgmt-dns": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-azure-mgmt-eventgrid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-eventhub": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-extendedlocation": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-hdinsight": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-imagebuilder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-iotcentral": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-iothub": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-iothubprovisioningservices": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-keyvault": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-kusto": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-loganalytics": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-managedservices": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-azure-mgmt-managementgroups": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-maps": { + "blocked_by": [], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-azure-mgmt-marketplaceordering": { + "blocked_by": [], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-azure-mgmt-media": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-monitor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-msi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-mysqlflexibleservers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-netapp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-network": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-policyinsights": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-postgresqlflexibleservers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-privatedns": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-quota": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-rdbms": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-recoveryservices": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-recoveryservicesbackup": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-redhatopenshift": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-redis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-relay": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-resource": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-resource-deployments": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-resource-deploymentscripts": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-resource-deploymentstacks": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-resource-templatespecs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-search": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-security": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-servicebus": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-servicefabric": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-servicefabricmanagedclusters": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-servicelinker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-signalr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-sql": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-sqlvirtualmachine": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-storage": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-subscription": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-support": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-synapse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-trafficmanager": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-mgmt-web": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-monitor-query": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-multiapi-storage": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-sdk-tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-servicebus": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-storage-blob": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-storage-common": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-storage-file-datalake": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-storage-file-share": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-storage-queue": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-synapse-accesscontrol": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-synapse-artifacts": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-synapse-managedprivateendpoints": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-azure-synapse-spark": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-b2sdk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-b4": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-babelfish": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-backcall": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-backlash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-backoff": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-backrefs": { + "blocked_by": [], + "blocks_count": 9, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-banal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-base58": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-baseconv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-basemap": { + "blocked_by": [ + "pyproj", + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-bashate": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-basis_set_exchange": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-batalgorithm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-batinfo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bcrypt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-beaker": { + "blocked_by": [ + "python-paste", + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-beanbag": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-beancount": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-beangulp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-beanprice": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-beartype": { + "blocked_by": [], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-beautifulsoup4": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-beautifultable": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-behave": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-beniget": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-berkeleydb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-betamax": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bibtexparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bidict": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bids-validator": { + "blocked_by": [ + "bids-schema" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-billiard": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-binary-manager": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-binary-memcached": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-binaryornot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-binstruct": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-biopython": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bioread": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-biscuits": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bitarray": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bitcoinlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bitmath": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bitstring": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bitstruct": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-black": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bleach": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-blessed": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-blessings": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-blinker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-blivet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-blobfile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-blosc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-blosc2": { + "blocked_by": [ + "python-ndindex" + ], + "blocks_count": 9, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-blowfish": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bluebell-akn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-blurb": { + "blocked_by": [ + "python-time-machine" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-blurhash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bokeh": { + "blocked_by": [ + "python-Bottleneck", + "python-xyzservices" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-boltons": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-boolean.py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-booleanoperations": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-boto": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-boto3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-botocore": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bottle": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bottle-sqlite": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-boutdata": { + "blocked_by": [ + "python-matplotlib", + "sympy" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-boxsdk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bracex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-branca": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bravado": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bravado-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-breathe": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-brukerapi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bsddb3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-btchip": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-btrfs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bucky": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bugzilla": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-build": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-buildman": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-bytecode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cached_property": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cachelib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cachetools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cairocffi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cairosvg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-caja": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-calcephpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-call-graph": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-can": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-canonicaljson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-capturer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-carbon": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cart": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cartopy": { + "blocked_by": [ + "pyproj", + "python-fiona", + "python-matplotlib", + "python-pytest-mpl", + "python-shapely" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cascadio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-casttube": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-catkin-sphinx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-catkin_pkg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-catkin_tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cattrs": { + "blocked_by": [ + "python-orjson", + "python-pymongo" + ], + "blocks_count": 12, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cbor2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cccolutils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ccdproc": { + "blocked_by": [ + "python-astropy", + "python-astropy-healpix", + "python-astroscrappy", + "python-dask", + "python-numcodecs", + "python-partd", + "python-reproject", + "python-scikit-image", + "python-zarr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cclib": { + "blocked_by": [ + "python-versioningit" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-celery": { + "blocked_by": [ + "python-kombu", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cerberus": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cerealizer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-certbot-dns-plesk": { + "blocked_by": [ + "certbot", + "python-dns-lexicon" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-certifi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cffi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cffsubr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cfgv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cftime": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-chai": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-chameleon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-chaospy": { + "blocked_by": [ + "python-joblib", + "python-numpoly", + "python-scikit-learn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-chardet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-charset-normalizer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cheetah": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cheroot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cherrypy": { + "blocked_by": [ + "python-zc-lockfile" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "tests" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-chevron": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-chm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cinderclient": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 11, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-circuitbreaker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ciso8601": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-citeproc-py": { + "blocked_by": [], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ckzg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-claripy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cleo": { + "blocked_by": [ + "python-rapidfuzz" + ], + "blocks_count": 9, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cli-helpers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-click": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-click-completion": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-click-default-group": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-click-didyoumean": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-click-log": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-click-man": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-click-option-group": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-click-plugins": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-click-repl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-click-spinner": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-click-threading": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cliff": { + "blocked_by": [ + "python-cmd2", + "python-pyperclip" + ], + "blocks_count": 54, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cligj": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cloud-sptheme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cloudflare": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cloudpickle": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cloudscraper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cloup": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cma": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cmake-build-extension": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cmap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cmarkgfm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cmd2": { + "blocked_by": [ + "python-pyperclip" + ], + "blocks_count": 55, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cmdkit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cobalt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-codecov": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cogapp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-coherent-licensed": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-coincidence": { + "blocked_by": [ + "python-pytest-regressions" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-coincurve": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colander": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-alias": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-argcomplete": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-bash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-bazel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-bundle": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-cd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-cmake": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-common-extensions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-coveragepy-result": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-defaults": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-devtools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-ed": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-installed-package-information": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-lcov-result": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-library-path": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-meson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-metadata": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-mixin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-notification": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-output": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-override-check": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-package-information": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-package-selection": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-parallel-executor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-pkg-config": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-powershell": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-python-setup-py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-recursive-crawl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-rerun": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-ros": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-ros-bazel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-ros-bundle": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-ros-domain-id-coordinator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colcon-spawn-shell": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-test-result": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colcon-zsh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-collada": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-collectd_cvmfs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-collectd_puppet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-collectd_systemd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colorama": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colorclass": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colored": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colored-traceback": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-coloredlogs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colorful": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colorlog": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colormath2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colorspacious": { + "blocked_by": [ + "python-matplotlib", + "python-sphinxcontrib-bibtex" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-colorzero": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-colour": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-columnar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-comm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-commoncode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-compreffor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-conda-content-trust": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-conda-index": { + "blocked_by": [ + "conda", + "conda-build", + "python-menuinst" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-conda-inject": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-conda-libmamba-solver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-conda-package-handling": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-conda-package-streaming": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-conda-sphinx-theme": { + "blocked_by": [ + "python-pydata-sphinx-theme" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-condense-json": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-configargparse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-configobj": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-configshell": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-configupdater": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-confluent-kafka": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-confuse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-connection_pool": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-constantly": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-construct": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-construct-classes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-container-inspector": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-contextily": { + "blocked_by": [ + "python-joblib", + "python-matplotlib", + "python-mercantile", + "python-rasterio", + "python-xyzservices" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-contextualbandits": { + "blocked_by": [ + "python-Bottleneck", + "python-joblib", + "python-scikit-learn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-contourpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-convertdate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cookiecutter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cooldict": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-copr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-copr-common": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cornice": { + "blocked_by": [ + "python-pyramid", + "python-zope-deprecation" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cotyledon": { + "blocked_by": [ + "python-oslo-config" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cov-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-covdefaults": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-coverage": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-coverage_pth": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-coveralls": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cpio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cppheaderparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cppy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cpuinfo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cram": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cramjam": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-crank": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-crashtest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-crayons": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-crc32c": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-crcmod": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-crick": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cro": { + "blocked_by": [ + "python-Bottleneck", + "python-joblib", + "python-matplotlib", + "python-multiprocess", + "python-scikit-learn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-crochet": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 13, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cron-converter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-croniter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-crossword": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-crypt-r": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-crypto": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cryptography": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-css-parser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-csscompressor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cssmin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cssselect": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cssselect2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cssutils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cucumber-expressions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cucumber-tag-expressions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cups": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-curio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-curtsies": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cvdupdate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cvelib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cvss": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cvxopt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cwcwidth": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cycler": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cyclopts": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-cymruwhois": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cyseq": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-cytoolz": { + "blocked_by": [], + "blocks_count": 18, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "python-d2to1": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-daemon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-daemonize": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-daiquiri": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-damo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dandischema": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core", + "python-versioningit", + "python-zarr-checksum" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-daphne": { + "blocked_by": [ + "python-autobahn", + "python-twisted", + "python-txaio" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-dasbus": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dask": { + "blocked_by": [ + "python-Bottleneck", + "python-blosc2", + "python-fastavro", + "python-matplotlib", + "python-ndindex", + "python-numcodecs", + "python-partd", + "python-sqlalchemy", + "python-tables", + "python-zarr" + ], + "blocks_count": 10, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-datalad": { + "blocked_by": [ + "python-gitlab" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-datanommer-commands": { + "blocked_by": [ + "fedora-messaging", + "python-alembic", + "python-crochet", + "python-datanommer-models", + "python-pika", + "python-psycopg2", + "python-sqlalchemy", + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-datanommer-models": { + "blocked_by": [ + "fedora-messaging", + "python-alembic", + "python-crochet", + "python-pika", + "python-psycopg2", + "python-sqlalchemy", + "python-twisted" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-datasets": { + "blocked_by": [ + "python-Bottleneck", + "python-multiprocess", + "python-torch", + "sympy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-dateparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-datetimerange": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dateutil": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dbf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dbfread": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dbus-client-gen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dbus-fast": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dbus-next": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dbus-python-client-gen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dbus-signature-pyparsing": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dbusmock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ddt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-deap": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-debian": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-debian-inspector": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-debianbts": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-debrepo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-debtcollector": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 32, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-decopatch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-decorator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-deepdiff": { + "blocked_by": [ + "python-orjson" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "tests" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-deepl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-deepmerge": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-defcon": { + "blocked_by": [ + "fonttools" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-defusedxml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-demjson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dependency-groups": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-deprecated": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-deprecation": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-desktop-entry-lib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-detect-secrets": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-diagnostic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dialog": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dict-sorted": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dictdiffer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dicttoxml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-diff-cover": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-diff-match-patch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-digitalocean": { + "blocked_by": [ + "python-jsonpickle" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-dijitso": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dill": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dirhash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dirq": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dirty-equals": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 9, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-discovery": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-diskcache": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-distlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-distributed": { + "blocked_by": [ + "jupyterlab", + "python-Bottleneck", + "python-dask", + "python-ipywidgets", + "python-joblib", + "python-jupyterlab-widgets", + "python-matplotlib", + "python-notebook", + "python-partd", + "python-tblib" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-distro": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-distroinfo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-distutils-extra": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-ajax-selects": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-allauth": { + "blocked_by": [ + "python-psycopg2", + "python3-openid" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-django-angular": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-annoying": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-appconf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-authority": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-cache-url": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-cacheops": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-clacks": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-compressor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-configurations": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-cors-headers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-crispy-forms": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-database-url": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-debreach": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-debug-toolbar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-email-url": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-extensions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-filter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-formtools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-gravatar2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-haystack": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-health-check": { + "blocked_by": [ + "python-celery", + "python-kombu" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-js-asset": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-macros": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-mailman3": { + "blocked_by": [ + "python-django-allauth", + "python3-openid" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-django-markdownx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-mptt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-pdb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-pglocks": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-picklefield": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-pipeline": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-pytest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-q": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-q2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-redis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-rest-framework": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-reversion": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-rq": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-search-url": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-storages": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-tables2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-tagging": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-taggit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-taggit-serializer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-tastypie": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-timezone-field": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django-uuslug": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django5": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-django6": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-djangoql": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dkimpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dmidecode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dns": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dns-lexicon": { + "blocked_by": [ + "python-oci" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-dnslib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-docker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-docker-pycreds": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-docker-squash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dockerfile-parse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dockerpty": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-docopt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-docopt-ng": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-docs-theme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-docstring-parser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-docstring-to-markdown": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-docutils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dogpile-cache": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-doit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-domdf-python-tools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dotenv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dotmap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-doubleratchet": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-doxypypy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-doxyqml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-doxytag2zealdb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dparse2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dpath": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dpkt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dragonmapper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-drain3": { + "blocked_by": [ + "python-jsonpickle" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-drgn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dropbox": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dtoc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dtopt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ducc0": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-duecredit": { + "blocked_by": [ + "python-Bottleneck", + "python-citeproc-py", + "python-joblib", + "python-matplotlib", + "python-patsy", + "python-scikit-learn", + "python-statsmodels" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-dulwich": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-dunamai": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-durationpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-easyargs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-easydict": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-easygui": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-easyprocess": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ebooklib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ebranch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-eccodes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ecdsa": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-edgegrid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-editables": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-editor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-editorconfig": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-einops": { + "blocked_by": [ + "jupyterlab", + "python-ipywidgets", + "python-jupyterlab-widgets", + "python-notebook", + "python-torch", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-eip712": { + "blocked_by": [ + "python-cytoolz", + "python-eth-abi", + "python-eth-account", + "python-eth-keyfile", + "python-eth-keys", + "python-eth-pydantic-types", + "python-eth-rlp", + "python-eth-utils", + "python-hexbytes", + "python-py_ecc", + "python-pydantic", + "python-pydantic-core", + "python-rlp" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-elastic-transport": { + "blocked_by": [ + "python-orjson" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-elasticsearch": { + "blocked_by": [ + "python-Bottleneck", + "python-elastic-transport", + "python-joblib", + "python-orjson", + "python-readme-renderer", + "python-twine" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-elementpath": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-email-validator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-emcee": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-emoji": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-empy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-enchant": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-engineio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-enlighten": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-enthought-sphinx-theme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-entrypoints": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-environs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-envisage": { + "blocked_by": [ + "python-AppTools", + "python-pyface", + "python-traitsui" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-enzyme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-epc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ephem": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ephyviewer": { + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib", + "python-neo", + "python-pyqtgraph", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-esbonio": { + "blocked_by": [ + "python-cattrs", + "python-lsprotocol", + "python-pygls", + "python-websockets" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-et_xmlfile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-etcd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-etcd3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-etcd3gw": { + "blocked_by": [ + "python-futurist" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-eth-abi": { + "blocked_by": [ + "python-cytoolz", + "python-eth-utils", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-eth-account": { + "blocked_by": [ + "python-cytoolz", + "python-eth-abi", + "python-eth-keyfile", + "python-eth-keys", + "python-eth-rlp", + "python-eth-utils", + "python-hexbytes", + "python-py_ecc", + "python-pydantic", + "python-pydantic-core", + "python-rlp" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-eth-bloom": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-eth-event": { + "blocked_by": [ + "python-cytoolz", + "python-eth-abi", + "python-eth-utils", + "python-hexbytes", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-eth-hash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-eth-keyfile": { + "blocked_by": [ + "python-cytoolz", + "python-eth-keys", + "python-eth-utils", + "python-py_ecc", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-eth-keys": { + "blocked_by": [ + "python-cytoolz", + "python-eth-utils", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-eth-pydantic-types": { + "blocked_by": [ + "python-cytoolz", + "python-eth-utils", + "python-hexbytes", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-eth-rlp": { + "blocked_by": [ + "python-cytoolz", + "python-eth-utils", + "python-hexbytes", + "python-pydantic", + "python-pydantic-core", + "python-rlp" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-eth-stdlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-eth-tester": { + "blocked_by": [ + "python-cytoolz", + "python-eth-abi", + "python-eth-account", + "python-eth-keyfile", + "python-eth-keys", + "python-eth-rlp", + "python-eth-utils", + "python-hexbytes", + "python-py_ecc", + "python-pydantic", + "python-pydantic-core", + "python-rlp", + "python-sphinx-autobuild", + "python-towncrier", + "python-uvicorn", + "python-watchfiles", + "python-websockets" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-eth-typing": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-eth-utils": { + "blocked_by": [ + "python-cytoolz", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 14, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ethtool": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-evalidate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-evdev": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-eventlet": { + "blocked_by": [ + "python-psycopg2" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-events": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-exabgp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-exceptiongroup": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-exdir": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-execnet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-executing": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-exif": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-exiv2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-exoscale": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-expandvars": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-expecttest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-exrex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-extension-helpers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-extractcode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-extractcode-7z": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-extractcode-libarchive": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-extras": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-extruct": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-eyed3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ezdxf": { + "blocked_by": [ + "mupdf", + "python-PyMuPDF", + "python-matplotlib", + "python-pyside6", + "python-qt5" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fabric": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-factory-boy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-faker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fakeredis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-falcon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fasjson-client": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fast-simplification": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fastapi": { + "blocked_by": [ + "fastapi-cli", + "fastapi-cloud-cli", + "python-dirty-equals", + "python-inline-snapshot", + "python-orjson", + "python-pydantic", + "python-pydantic-core", + "python-pydantic-extra-types", + "python-pydantic-settings", + "python-rich-toolkit", + "python-rignore", + "python-sqlalchemy", + "python-uvicorn", + "python-watchfiles", + "python-websockets" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fastar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fastavro": { + "blocked_by": [ + "python-Bottleneck", + "python-zlib-ng" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fastbencode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fasteners": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fastjsonschema": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fastmcp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fastprogress": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fastpurge": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fastrand": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fastrlock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fastuuid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fauxquests": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fedora-image-uploader-messages": { + "blocked_by": [ + "fedora-messaging", + "python-crochet", + "python-pika", + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fedora-sig-onboard": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-feedgen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-feedgenerator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-feedparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fido2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fields": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-filecheck": { + "blocked_by": [ + "llvm" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-filelock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-filetype": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-findpython": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fingerprints": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fiona": { + "blocked_by": [ + "python-shapely" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fireflyalgorithm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-firehose": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fisx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fitdecode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fitsio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fixit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fixtures": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flake8": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flake8-blind-except": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flake8-builtins": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flake8-class-newline": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flake8-comprehensions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flake8-deprecated": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flake8-import-order": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flake8-polyfill": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flake8-quotes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flaky": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-admin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-babel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-caching": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-compress": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-cors": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-gravatar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-healthz": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-httpauth": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-login": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-mail": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-mailman": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-mako": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-migrate": { + "blocked_by": [ + "python-alembic", + "python-flask-sqlalchemy", + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-flask-mongoengine": { + "blocked_by": [ + "python-mongoengine", + "python-pymongo" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-flask-multistatic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-oidc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-openid": { + "blocked_by": [ + "python3-openid" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-flask-paranoid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-principal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-restx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-security-too": { + "blocked_by": [ + "python-flask-sqlalchemy", + "python-flask-sqlalchemy-lite", + "python-mongoengine", + "python-peewee", + "python-pymongo", + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-flask-session": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-socketio": { + "blocked_by": [ + "python-socketio" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-flask-sqlalchemy": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-flask-sqlalchemy-lite": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-flask-talisman": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-whooshee": { + "blocked_by": [ + "python-flask-sqlalchemy", + "python-flexmock", + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-flask-wtf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flask-wtf-decorators": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flexcache": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flexmock": { + "blocked_by": [ + "python-twisted", + "python-zope-testrunner" + ], + "blocks_count": 9, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-flexparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flit-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flit-scm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flufl-bounce": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flufl-i18n": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flufl-lock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-flufl-testing": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fluidity-sm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-folium": { + "blocked_by": [ + "python-xyzservices" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fontMath": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fontconfig": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fontname": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fontquery": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fontrpmspec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-formencode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fortranformat": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fqdn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-freecell_solver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-freeipa": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-freeqdsk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-freetype": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-freezegun": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-frozendict": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-frozenlist": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fsleyes": { + "blocked_by": [ + "python-fsleyes-props", + "python-fsleyes-widgets", + "python-fslpy", + "python-matplotlib", + "python-trimesh", + "python-wxnatpy", + "python-xnat" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fsleyes-props": { + "blocked_by": [ + "python-fsleyes-widgets", + "python-fslpy", + "python-matplotlib" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fsleyes-widgets": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fslpy": { + "blocked_by": [ + "python-trimesh" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fspath": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fsspec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ftfy": { + "blocked_by": [ + "poetry", + "python-CacheControl", + "python-cleo", + "python-rapidfuzz" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ftputil": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fuckit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-funcparserlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-funcsigs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-funcy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-furo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fuse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-futurist": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fuzzyfinder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-fvs": { + "blocked_by": [ + "python-orjson" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-fypp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gast": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gatspy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gattlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gbinder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gbulb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gearbox": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gelidum": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gemfileparser2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-genshi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-geodatasets": { + "blocked_by": [ + "pyproj", + "python-Bottleneck", + "python-geopandas", + "python-shapely" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-geographiclib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-geoip2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-geojson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-geomdl": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-geopandas": { + "blocked_by": [ + "pyproj", + "python-Bottleneck", + "python-shapely" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-geopmpy": { + "blocked_by": [ + "python-Bottleneck", + "python-blosc2", + "python-ndindex", + "python-tables" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-geopy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-geotiler": { + "blocked_by": [ + "python-cytoolz" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gerritlib": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-hacking", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-gertty": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-getmac": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gettext": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gevent": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gevent-eventemitter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ghp-import": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-giacpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-git-changelog": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-git-revise": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gitapi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gitdb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-github3py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gitlab": { + "blocked_by": [ + "python-gql" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-glad": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-glad2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-glanceclient": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-openstacksdk", + "python-oslo-utils", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "with_doc" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-glfw": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-glob2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-glymur": { + "blocked_by": [ + "python-scikit-image" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-glyphsLib": { + "blocked_by": [ + "fonttools", + "python-defcon", + "python-ufo2ft", + "python-ufoLib2" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-gmpy2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gmqtt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gnocchiclient": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-futurist", + "python-keystoneauth1", + "python-pyperclip" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-gnupg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-goocalendar": { + "blocked_by": [ + "python-pydata-sphinx-theme", + "python-sphinx-book-theme" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-google-api-core": { + "blocked_by": [ + "python-proto-plus" + ], + "blocks_count": 12, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "tests" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-google-auth": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-google-auth-oauthlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-google-cloud-core": { + "blocked_by": [ + "python-google-api-core", + "python-proto-plus" + ], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-google-cloud-dns": { + "blocked_by": [ + "python-google-api-core", + "python-google-cloud-core", + "python-proto-plus" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-google-cloud-storage": { + "blocked_by": [ + "python-google-api-core", + "python-google-cloud-core", + "python-proto-plus" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-google-cloud-testutils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-google-crc32c": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-google-genai": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-google-i18n-address": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-google-resumable-media": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-googleapis-common-protos": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gpiozero": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gpxpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gql": { + "blocked_by": [ + "python-websockets" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-grabserial": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gradunwarp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-graph-tool": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-graphql-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-graphviz": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-greenlet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-grokmirror": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-grpc-google-iam-v1": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-grpcio-gcp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gsd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gssapi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gstreamer1": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gsw": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-guessit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-gunicorn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-h11": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-h2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-h5io": { + "blocked_by": [ + "python-blosc2", + "python-ndindex", + "python-tables" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-h5netcdf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hacking": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-hamcrest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hanzidentifier": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hatch-fancy-pypi-readme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hatch-jupyter-builder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hatch-nodejs-version": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hatch-requirements-txt": { + "blocked_by": [ + "python-coincidence", + "python-pytest-regressions" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-hatch-vcs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hatchling": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hdfs": { + "blocked_by": [ + "python-Bottleneck", + "python-fastavro" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-hdmf": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-healpy": { + "blocked_by": [ + "python-astropy", + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-heapdict": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-heatclient": { + "blocked_by": [ + "python-cinderclient", + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-keystoneclient", + "python-openstackclient", + "python-openstacksdk", + "python-osc-lib", + "python-oslo-config", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr", + "python-swiftclient" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-helpdev": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hexbytes": { + "blocked_by": [ + "python-cytoolz", + "python-eth-utils", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 7, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-hexdump": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hgapi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hglib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hid-parser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hidapi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hiredis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hjson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-holidays": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-housekeeping": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-howdoi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hpack": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hpilo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hsluv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-html-text": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-html2text": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-html5-parser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-html5lib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-htmlmin2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-httmock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-http-client": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-http-ece": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-http-server-mock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-httpagentparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-httpbin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-httpcore": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-httplib2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-httpretty": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-httpsig-cffi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-httptools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-httpx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-httpx-socks": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-httpx-sse": { + "blocked_by": [ + "python-sse-starlette" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-huami-token": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-huggingface-hub": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-humanfriendly": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-humanize": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-humblewx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hupper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-husl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hvac": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hwdata": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hypercorn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hyperframe": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hyperkitty": { + "blocked_by": [ + "python-django-allauth", + "python-django-mailman3", + "python3-openid" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-hyperlink": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hypothesis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "doc-tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-hypothesmith": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-i3ipc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ibm-cloud-sdk-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ibm-vpc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-icalendar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-icmplib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-icoextract": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-id": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-identify": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-idna": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-idstools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ifaddr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ifcfg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-igraph": { + "blocked_by": [ + "python-Bottleneck", + "python-graph-tool" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ijson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-imagecodecs": { + "blocked_by": [ + "python-blosc2", + "python-ndindex", + "python-numcodecs", + "python-zarr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-imageio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-imagesize": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-imapclient": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-imbalanced-learn": { + "blocked_by": [ + "python-Bottleneck", + "python-joblib", + "python-scikit-learn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-img2pdf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-immutabledict": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-immutables": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-impacket": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-importlib-metadata": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-importlib-resources": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-incremental": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-indexed_gzip": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-inema": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-inflect": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-inflection": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-influxdb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-influxdb-client": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-iniconfig": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-iniparse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-inject": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-injector": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-inkex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-inline-snapshot": { + "blocked_by": [ + "python-dirty-equals", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-inotify": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-inotify_simple": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-inquirer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-inspyred": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-installer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-intbitset": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-interface-meta": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-interrogate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-intervaltree": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-into-dbus-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-invoke": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-iowait": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ipcqueue": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ipfshttpclient": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-iplotx": { + "blocked_by": [ + "python-Bottleneck", + "python-igraph", + "python-matplotlib" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ipmi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ipuz": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ipykernel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ipyparallel": { + "blocked_by": [ + "jupyterlab" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ipython-pygments-lexers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ipython_genutils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ipywidgets": { + "blocked_by": [ + "jupyterlab", + "python-jupyterlab-widgets", + "python-notebook" + ], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-irc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-irodsclient": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ironicclient": { + "blocked_by": [ + "python-cinderclient", + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-keystoneclient", + "python-openstackclient", + "python-openstacksdk", + "python-osc-lib", + "python-oslo-config", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-isal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-iso3166": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-iso639": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-iso8601": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-isodate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-isoduration": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-isort": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-itemadapter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-itemloaders": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-itsdangerous": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jack-client": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jaconv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-janus-swi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jaraco-classes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jaraco-collections": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jaraco-context": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jaraco-envs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jaraco-functools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jaraco-logging": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jaraco-packaging": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jaraco-path": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jaraco-stream": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jaraco-test": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jaraco-text": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-javaproperties": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jcconv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jdcal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jedi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jeepney": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jellyfish": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jenkins": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-multiprocess", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-jenkins-job-builder": { + "blocked_by": [ + "python-jenkins" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-jinja2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jinja2-cli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jinja2-time": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jinja2_pluralize": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jira": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jiter": { + "blocked_by": [ + "python-dirty-equals" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-jmespath": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jnius": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-joblib": { + "blocked_by": [], + "blocks_count": 30, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-josepy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-journal-brief": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsmin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-json-logger": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-json-minify": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-json-repair": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-json5": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsondiff": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsonfeed-util": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsonformatter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsonpatch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsonpath-ng": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsonpickle": { + "blocked_by": [ + "python-Bottleneck", + "python-joblib", + "python-scikit-learn", + "python-sqlalchemy" + ], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-jsonpointer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsonref": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsonrpclib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsonschema": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsonschema-path": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsonschema-specifications": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jsonstreams": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jstyleson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-junitparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-junitxml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupymake": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyter-cache": { + "blocked_by": [ + "python-Bottleneck", + "python-jupytext", + "python-matplotlib", + "python-nbdime", + "python-pytest-regressions", + "python-sqlalchemy", + "sympy" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-jupyter-client": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyter-console": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyter-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyter-events": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyter-kernel-singular": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyter-kernel-test": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyter-lsp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyter-packaging": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyter-polymake": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyter-server": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyter-server-terminals": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyterlab-server": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupyterlab-widgets": { + "blocked_by": [ + "jupyterlab" + ], + "blocks_count": 7, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-jupyterlab_pygments": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jupytext": { + "blocked_by": [ + "jupyterlab" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-justbases": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-justbytes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jwcrypto": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-jwt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-k5test": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-kadmin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-kafka": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-kajiki": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-kanboard": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-kaptan": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-kazoo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-kdcproxy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-keep": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-kerberos": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-keyring": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-keyrings-alt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-keystoneauth1": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-oslo-config", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 27, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-keystoneclient": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-openstacksdk", + "python-os-client-config", + "python-oslo-config", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 14, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-kgb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-kiss-headers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-kitchen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-kiwisolver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-klein": { + "blocked_by": [ + "python-tubes", + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-kmod": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-knack": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-koji-fedoramessaging-messages": { + "blocked_by": [ + "fedora-messaging", + "python-crochet", + "python-pika", + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-kombu": { + "blocked_by": [ + "python-pymongo", + "python-sqlalchemy" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-krb5": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-kubernetes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-landslide": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-langdetect": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lark": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-latexcodec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-launchpadlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lazr-config": { + "blocked_by": [ + "python-lazr-delegates", + "python-zope-testrunner" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-lazr-delegates": { + "blocked_by": [ + "python-zope-testrunner" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-lazr-restfulclient": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lazr-uri": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lazy-loader": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lazy-object-proxy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lazy_load": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ldap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ldap3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-leather": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-legacy-cgi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lesscpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lexicon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lfpykit": { + "blocked_by": [ + "python-matplotlib", + "python-meautility", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-libarchive-c": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-libcloud": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-libcst": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-libdiscid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-libevdev": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-libgravatar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-libnacl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-libpagure": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-libpysal": { + "blocked_by": [ + "pyproj", + "python-Bottleneck", + "python-geodatasets", + "python-geopandas", + "python-joblib", + "python-matplotlib", + "python-nbsphinx", + "python-numpydoc", + "python-pytest-mpl", + "python-scikit-learn", + "python-shapely", + "python-sphinxcontrib-bibtex", + "python-sqlalchemy", + "python-xarray" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-libsass": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-libtmux": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-libusb1": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-license-expression": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-linecache2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-linetable": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-linkify-it-py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-linux-procfs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-linuxdoc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lion-pytorch": { + "blocked_by": [ + "python-torch", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-listparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-litellm-proxy-extras": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-littleutils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-livereload": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-llama-cpp-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-llfuse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-llm": { + "blocked_by": [ + "python-jiter", + "python-openai", + "python-pydantic", + "python-pydantic-core", + "python-python-ulid" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "tests" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-llm-echo": { + "blocked_by": [ + "python-jiter", + "python-llm", + "python-openai", + "python-pydantic", + "python-pydantic-core", + "python-python-ulid" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-llvmlite": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lmdb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lmfit": { + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-localzone": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-locket": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lockfile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-logbook": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-logdetective": { + "blocked_by": [ + "python-drain3", + "python-jsonpickle", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-logfury": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-loguru": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-logutils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-logzero": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-looseversion": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lru-dict": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lsp-black": { + "blocked_by": [ + "python-lsp-server" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-lsp-jsonrpc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lsp-ruff": { + "blocked_by": [ + "python-cattrs", + "python-lsp-server", + "python-lsprotocol" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-lsp-server": { + "blocked_by": [], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-lsprotocol": { + "blocked_by": [ + "python-cattrs" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-lunr": { + "blocked_by": [ + "python-joblib" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-lupa": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lxml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lxml-html-clean": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ly": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-lz4": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-m3u8": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mackup": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-magic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mailer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mailman-hyperkitty": { + "blocked_by": [ + "mailman3", + "python-alembic", + "python-lazr-config", + "python-lazr-delegates", + "python-sqlalchemy", + "python-zope-configuration", + "python-zope-i18nmessageid", + "python-zope-schema" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mailman-web": { + "blocked_by": [ + "python-django-allauth", + "python-django-mailman3", + "python-hyperkitty", + "python-postorius", + "python-readme-renderer", + "python3-openid" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mailmanclient": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mailmerge": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-makefun": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mako": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-managesieve": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-manatools": { + "blocked_by": [ + "libyui" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-manilaclient": { + "blocked_by": [ + "python-cinderclient", + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-keystoneclient", + "python-openstackclient", + "python-openstacksdk", + "python-osc-lib", + "python-oslo-config", + "python-oslo-context", + "python-oslo-log", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-manuel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mapbox-earcut": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mapclassify": { + "blocked_by": [ + "pyproj", + "python-Bottleneck", + "python-geopandas", + "python-joblib", + "python-libpysal", + "python-matplotlib", + "python-pytest-mpl", + "python-scikit-learn", + "python-shapely" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mapnik": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-maps": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-marathon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-markdown": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-markdown-callouts": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-markdown-exec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-markdown-include": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-markdown-it-py": { + "blocked_by": [ + "python-pytest-regressions" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "plugins" + ], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-markdown-math": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-markdown2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-markupsafe": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-marshmallow": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mathics-pygments": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mathics-scanner": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-matplotlib": { + "blocked_by": [], + "blocks_count": 109, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-matplotlib-inline": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-matplotlib-scalebar": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-matrix-common": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-matrix-nio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-matrix-synapse-ldap3": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-maxminddb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mbstrdecoder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mccabe": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mcp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mdit-py-plugins": { + "blocked_by": [ + "python-pytest-regressions" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mdurl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mdx_gh_links": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-meautility": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mechanicalsoup": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mechanize": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mediafile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-medimages4tests": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-meh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-memcached": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-memray": { + "blocked_by": [ + "python-textual", + "python-towncrier" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-menuinst": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 7, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mercantile": { + "blocked_by": [ + "python-numpydoc" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-merge3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mergedeep": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-meshio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-meson-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-metakernel": { + "blocked_by": [ + "jupyterlab", + "python-ipyparallel", + "python-ipywidgets", + "python-jupyterlab-widgets", + "python-matplotlib", + "python-notebook", + "python-numpydoc" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-metar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mf2py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-micawber": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-microsoft-security-utilities-secret-masker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-migen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mimeparse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mimerender": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-minidb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-minikerberos": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-minimock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mirakuru": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mirrors-countme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-missingno": { + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib", + "python-numpydoc", + "python-pytest-mpl", + "python-seaborn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mistralclient": { + "blocked_by": [ + "python-cinderclient", + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-keystoneclient", + "python-openstackclient", + "python-openstacksdk", + "python-osc-lib", + "python-oslo-config", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mistune": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mitogen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkapi": { + "blocked_by": [ + "mkdocs-material", + "python-backrefs" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mkdocs-autorefs": { + "blocked_by": [ + "mkdocs-material", + "python-backrefs" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-click": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-d2-plugin": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mkdocs-gen-files": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-get-deps": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-git-authors-plugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-git-committers-plugin-2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-git-revision-date-localized-plugin": { + "blocked_by": [ + "mkdocs-material", + "python-backrefs", + "python-mkdocs-static-i18n" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mkdocs-include-markdown-plugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-literate-nav": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-macros-plugin": { + "blocked_by": [ + "mkdocs-material", + "python-Bottleneck", + "python-backrefs", + "python-mkdocs-d2-plugin", + "python-mkdocs-test", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mkdocs-macros-test": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-material-extensions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-minify-plugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-monorepo-plugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-redirects": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mkdocs-rss-plugin": { + "blocked_by": [ + "mkdocs-material", + "python-CacheControl", + "python-backrefs" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mkdocs-static-i18n": { + "blocked_by": [ + "mkdocs-material", + "python-backrefs" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mkdocs-test": { + "blocked_by": [ + "python-Bottleneck", + "python-toml-cli" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mmtf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mnemonic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mock-ssh-server": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mockito": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-moddb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-modernize": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-modestmaps": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-molmass": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mongoengine": { + "blocked_by": [ + "python-pymongo" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mongomock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-more-executors": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-more-itertools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-moreorless": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-morphys": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mozilla-django-oidc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mpd2": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mplcairo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mplcursors": { + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib", + "python-pydata-sphinx-theme", + "python-sphinx-gallery" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-mpmath": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mrtparse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-msal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-msal-extensions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-msgpack": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-msgspec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-msrest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-msrestazure": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mujson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mulpyplexer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-multi_key_dict": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-multiaddr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-multibase": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-multicodec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-multidict": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-multiecho": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-multihash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-multilib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-multipart": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-multiprocess": { + "blocked_by": [], + "blocks_count": 7, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-multiregex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-multitasking": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-munch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-munkres": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-murmurhash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-music21": { + "blocked_by": [ + "python-Levenshtein", + "python-joblib", + "python-jsonpickle", + "python-matplotlib", + "python-rapidfuzz" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-musicbrainzngs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mutagen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mutf8": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mwclient": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mwparserfromhell": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mygpoclient": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-myhdl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mypy_extensions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-myrepos-utils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-mysqlclient": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-myst-parser": { + "blocked_by": [ + "python-pytest-regressions" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nagiosplugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-name-that-hash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nanobind": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nashpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-natsort": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nbclassic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nbclient": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "check" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nbconvert": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "check-doc" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nbdime": { + "blocked_by": [ + "jupyterlab", + "python-notebook" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-nbformat": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nbsphinx": { + "blocked_by": [ + "python-matplotlib", + "python-sphinx-gallery", + "python-sphinxcontrib-bibtex" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-nbxmpp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ndindex": { + "blocked_by": [ + "sympy" + ], + "blocks_count": 10, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ndjson-testrunner": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-neo": { + "blocked_by": [], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-neovim": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nest-asyncio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-netaddr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-netapp-lib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-netdisco": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-netifaces": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-netmiko": { + "blocked_by": [ + "poetry", + "python-CacheControl", + "python-cleo", + "python-rapidfuzz" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-networkx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-neutronclient": { + "blocked_by": [ + "python-cinderclient", + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-keystoneclient", + "python-openstackclient", + "python-openstacksdk", + "python-os-client-config", + "python-osc-lib", + "python-oslo-config", + "python-oslo-context", + "python-oslo-log", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "with_doc" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-nh3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-niaaml": { + "blocked_by": [ + "python-Bottleneck", + "python-joblib", + "python-matplotlib", + "python-niapy", + "python-scikit-learn" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-niaclass": { + "blocked_by": [ + "python-Bottleneck", + "python-joblib", + "python-matplotlib", + "python-niapy", + "python-scikit-learn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-niapy": { + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib" + ], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-nibabel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nifti-mrs": { + "blocked_by": [ + "python-fslpy" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-nihtest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nine": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nitime": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-nitrate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nixio": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-nltk": { + "blocked_by": [ + "python-joblib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nmap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nmrglue": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-node-semver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nodeenv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-noggin-messages": { + "blocked_by": [ + "fedora-messaging", + "python-crochet", + "python-pika", + "python-twisted" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-noiseprotocol": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-normality": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-norpm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-nose2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-notebook": { + "blocked_by": [ + "jupyterlab" + ], + "blocks_count": 9, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-notebook-shim": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-notify2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-novaclient": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-openstacksdk", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-novaclient-os-virtual-interfaces": { + "blocked_by": [ + "python-debtcollector", + "python-keystoneauth1", + "python-novaclient", + "python-oslo-serialization", + "python-oslo-utils" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-npyscreen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ns1-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ntlm-auth": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ntplib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-num2words": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-numcodecs": { + "blocked_by": [ + "python-numpydoc", + "python-pydata-sphinx-theme" + ], + "blocks_count": 10, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-numexpr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-numpoly": { + "blocked_by": [ + "sympy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-numpy-stl": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-numpydoc": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 18, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-oauth": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-oauth2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-oauth2client": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-oauthlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-oci": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-octaviaclient": { + "blocked_by": [ + "python-cinderclient", + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-keystoneclient", + "python-neutronclient", + "python-openstackclient", + "python-openstacksdk", + "python-os-client-config", + "python-osc-lib", + "python-oslo-config", + "python-oslo-context", + "python-oslo-log", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-odata-query": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ofxparse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ogr": { + "blocked_by": [ + "python-gitlab", + "python-pydantic", + "python-pydantic-core", + "python-pyforgejo" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-oldmemo": { + "blocked_by": [ + "python-doubleratchet", + "python-pydantic", + "python-pydantic-core", + "python-x3dh" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-olefile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-oletools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ollama": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-omemo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-omlmd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-omsdk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-onionbalance": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-op1repacker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-op1svg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-opcodes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openai": { + "blocked_by": [ + "python-jiter", + "python-pydantic", + "python-pydantic-core", + "python-websockets" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-openant": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openapi-core": { + "blocked_by": [ + "python-fastapi", + "python-pydantic", + "python-pydantic-core", + "python-pydantic-settings" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-openapi-pydantic": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core", + "python-pydantic-settings" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-openapi-schema-validator": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core", + "python-pydantic-settings" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openapi-spec-validator": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core", + "python-pydantic-settings" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-opencensus-proto": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openid-cla": { + "blocked_by": [ + "python3-openid" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-openid-teams": { + "blocked_by": [ + "python3-openid" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-openidc-client": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openneuro": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openoffice": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openpaperwork-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openpaperwork-gtk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openpyxl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openqa_client": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-opensearch-py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openshift": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openslide": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openstackclient": { + "blocked_by": [ + "python-cinderclient", + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-keystoneclient", + "python-openstacksdk", + "python-osc-lib", + "python-oslo-config", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 10, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "with_doc" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-openstackdocstheme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-openstacksdk": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-keystoneauth1", + "python-oslo-config", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 21, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-openstep-plist": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-opentelemetry-api": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-opentypesvg": { + "blocked_by": [ + "fonttools" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-opfunu": { + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-opnsense": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-optuna": { + "blocked_by": [ + "python-alembic", + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-opytimark": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-opytimizer": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-oracledb": { + "blocked_by": [ + "python-oci" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-oras": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ordered-set": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-orderly-set": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-orjson": { + "blocked_by": [ + "python-pendulum" + ], + "blocks_count": 11, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-os-client-config": { + "blocked_by": [ + "python-keystoneauth1", + "python-openstacksdk" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-os-service-types": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-keystoneauth1", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-osa": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-osc-lib": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-openstacksdk", + "python-oslo-utils", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 14, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-oscrypto": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-oslo-concurrency": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-oslo-config", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-oslo-config": { + "blocked_by": [], + "blocks_count": 26, + "buildable_bconds": [ + "repo_bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-oslo-context": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-hacking", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 11, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-oslo-i18n": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "with_doc" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-oslo-log": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-eventlet", + "python-oslo-config", + "python-oslo-context", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 10, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-oslo-metrics": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-oslo-config", + "python-oslo-context", + "python-oslo-log", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-oslo-serialization": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 23, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-oslo-utils": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-oslo-config", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 29, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-oslotest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "repo_bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-osrf-pycommon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-outcome": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-overpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ovh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ovirt-engine-sdk4": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-owl_rl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-packageurl-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-packaging": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-packbits": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-packvers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-paginate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pagure-messages": { + "blocked_by": [ + "fedora-messaging", + "python-crochet", + "python-pika", + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-paho-mqtt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-palettable": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pam": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pamqp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pandas": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pandas-datareader": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pandocfilters": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-paperwork-backend": { + "blocked_by": [ + "python-joblib", + "python-scikit-learn" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-parameter-expansion-patched": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-paramiko": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pari-jupyter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-parse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-parse_type": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-parsedatetime": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-parsel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-parsimonious": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-parsley": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-parso": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-partd": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 11, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pass-import": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-passlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-paste": { + "blocked_by": [ + "python3-openid" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-paste-deploy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-paste-script": { + "blocked_by": [ + "python-paste" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-patatt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-patch-manager": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-patch-ng": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-path": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pathable": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pathlib-abc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pathos": { + "blocked_by": [ + "python-multiprocess" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pathspec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pathtools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pathvalidate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-patiencediff": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-patsy": { + "blocked_by": [], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pbkdf2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pbr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pbs-installer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pcicrawler": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pcodedmp": { + "blocked_by": [ + "python-pcodedmp" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pdf2image": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pdfkit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pdfminer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pdfrw": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pdm-backend": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-peachpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pebble": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pecan": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-peewee": { + "blocked_by": [ + "python-psycopg2" + ], + "blocks_count": 9, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pefile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pelican": { + "blocked_by": [ + "python-watchfiles" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pem": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pendulum": { + "blocked_by": [ + "python-time-machine" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pep8-naming": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-periodictable": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-perky": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-persist-queue": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pexpect": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pg8000": { + "blocked_by": [ + "python-scramp", + "python-versioningit" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pgspecial": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-phonenumbers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-photutils": { + "blocked_by": [ + "python-astropy", + "python-pytest-arraydiff", + "python-pytest-astropy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-phply": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-phpserialize": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-phyghtmap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pickleshare": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pidfile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-piexif": { + "blocked_by": [ + "python-sphinxcontrib-websupport" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pigpio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pika": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 15, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pikepdf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pillow": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pillow-jxl-plugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pint": { + "blocked_by": [ + "python-matplotlib", + "python-pytest-mpl" + ], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "xarray" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pip": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pip-requirements-parser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pipdeptree": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pivy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pkg-depgraph": { + "blocked_by": [ + "fedrq", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pkgconfig": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pkginfo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-plaster": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-plaster-pastedeploy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-platformdirs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-platformio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-playsound3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pluggy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pluginbase": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-plugincode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pluginlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-plumbum": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ply": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pmw": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pocketlint": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-podcastparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-podman": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-poetry-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-poetry-dynamic-versioning": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-poetry-plugin-export": { + "blocked_by": [ + "poetry", + "python-CacheControl", + "python-cleo", + "python-rapidfuzz" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-poi-tracker": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-polib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pooch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-port-for": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-portalocker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-portend": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-posix-ipc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-postorius": { + "blocked_by": [ + "python-django-allauth", + "python-django-mailman3", + "python-readme-renderer", + "python3-openid" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pox": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ppft": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-precis_i18n": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-prefixed": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-presets": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pretend": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pretty-yaml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-prettyprinter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-prettytable": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-priority": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-process-tests": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-productmd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-progress": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-progressbar2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-prometheus_client": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-prompt-toolkit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-promptml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-propcache": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-protego": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-proto-plus": { + "blocked_by": [ + "python-google-api-core", + "python-proto-plus" + ], + "blocks_count": 14, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "tests" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-proton-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-proton-vpn-api-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-proton-vpn-network-manager": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-prov": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pskc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-psutil": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-psycopg2": { + "blocked_by": [], + "blocks_count": 14, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-psycopg3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-psygnal": { + "blocked_by": [ + "python-dask", + "python-partd", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ptrace": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ptyprocess": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-publicsuffix2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pudb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pulp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pulp-glue": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pulp-glue-deb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pulsectl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pulsectl-asyncio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pure-eval": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pure-protobuf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-puremagic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-puzpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pwntools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-py-key-value": { + "blocked_by": [ + "python-beartype", + "python-dirty-equals", + "python-elastic-transport", + "python-elasticsearch", + "python-inline-snapshot", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-py-tes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-py-walk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-py3nvml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyModbusTCP": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-py_ecc": { + "blocked_by": [ + "python-cytoolz", + "python-eth-utils", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyaes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyahocorasick": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyaib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyasn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyasn1": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyasynchat": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyasyncore": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pybbi": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pybeam": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pybtex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pybtex-docutils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycares": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycdio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycdlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyclip": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyclipper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycodestyle": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycomposefile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyconify": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycosat": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycotap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycountry": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycparserext": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycryptodomex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycurl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pycxx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pydantic": { + "blocked_by": [ + "python-dirty-equals", + "python-pydantic-core" + ], + "blocks_count": 78, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pydantic-core": { + "blocked_by": [ + "python-dirty-equals" + ], + "blocks_count": 79, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "inline_snapshot_tests" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pydantic-extra-types": { + "blocked_by": [ + "python-dirty-equals", + "python-pendulum", + "python-pydantic", + "python-pydantic-core", + "python-pymongo", + "python-python-ulid" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pydantic-settings": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pydapsys": { + "blocked_by": [ + "python-neo" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pydaraja": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pydata-sphinx-theme": { + "blocked_by": [ + "python-pytest-regressions" + ], + "blocks_count": 14, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pydbus": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pydepsdev": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pydicom": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pydicom-data": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pydiffx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pydispatcher": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pydo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pydocket": { + "blocked_by": [ + "python-beartype", + "python-py-key-value" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pydocstyle": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pydoctor": { + "blocked_by": [ + "python-CacheControl", + "python-lunr", + "python-twisted" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pydyf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyembroidery": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyerfa": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyev": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyface": { + "blocked_by": [ + "python-pyqt6", + "python-qt5" + ], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyfakefs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyfiglet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyflame": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyforgejo": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyformlang": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyftdi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyftpdlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyfzf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygdbmi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygeoif": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyghmi": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pygiftiio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygit2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyglet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygls": { + "blocked_by": [ + "python-cattrs", + "python-lsprotocol", + "python-websockets" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pygmars": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygments": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygments-ansi-color": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygments-better-html": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygments-git": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygments-lexer-solidity": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygments-markdown-lexer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygments-pytest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygments-style-solarized": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygmtools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pygraphviz": { + "blocked_by": [ + "python-matplotlib", + "python-numpydoc", + "python-pydata-sphinx-theme", + "python-sphinx-gallery" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pygtkspellcheck": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyhcl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyinfra": { + "blocked_by": [ + "python-pytest-testinfra" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyjson5": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyjwkest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pykcs11": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pykdtree": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pykdumpfile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pykeepass": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pykmip": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pykwalify": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pylero": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pylev": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyliblo3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyliblzfse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pylibmc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pylibravatar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pylint-venv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pylons-sphinx-themes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyls-spyder": { + "blocked_by": [ + "python-lsp-server" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pylsqpack": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pymacaroons-pynacl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pymapvbvd": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pymatreader": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pymaven-patch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pymdown-extensions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pymediainfo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pymediawiki": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pymeeus": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pymemcache": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pymilter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pymongo": { + "blocked_by": [ + "python-hatch-requirements-txt" + ], + "blocks_count": 10, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pymssql": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pynacl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pynest2d": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pynetbox": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pynetdicom": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyngus": { + "blocked_by": [ + "qpid-proton" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pynsgr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pynwb": { + "blocked_by": [ + "python-Bottleneck", + "python-hdmf", + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyobd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyocr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyogrio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyone": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyongc": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyopencl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyopengl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyopengltk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyotp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyownet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pypandoc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pypdf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyperclip": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 59, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyphen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pypillowfight": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pypng": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pypresence": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyproject-api": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyproject-hooks": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyproject-metadata": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pypubsub": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyqt-feedback-flow": { + "blocked_by": [ + "python-pyqt6", + "python-pytest-qt" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyqt5-sip": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyqt6": { + "blocked_by": [], + "blocks_count": 30, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyqt6-charts": { + "blocked_by": [ + "python-pyqt6" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyqt6-sip": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyqt6-webengine": { + "blocked_by": [ + "python-pyqt6" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyqtgraph": { + "blocked_by": [ + "python-pydata-sphinx-theme", + "python-qt5" + ], + "blocks_count": 7, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyquery": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyrad": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyramid": { + "blocked_by": [ + "python-zope-deprecation" + ], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyramid-fas-openid": { + "blocked_by": [ + "python-openid-cla", + "python-openid-teams", + "python-pyramid", + "python-zope-deprecation", + "python3-openid" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyramid-mako": { + "blocked_by": [ + "python-pyramid", + "python-zope-deprecation" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyramid-tm": { + "blocked_by": [ + "python-pyramid", + "python-zope-deprecation" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyrankvote": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyrate-limiter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyrdfa3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyregion": { + "blocked_by": [ + "python-astropy", + "python-pytest-arraydiff", + "python-pytest-astropy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyrfc3339": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyro": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyroaring": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyroute2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyrpm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyrpmmd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyrtlsdr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pysam": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pysb": { + "blocked_by": [ + "python-numpydoc" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyscaffold": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyscf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyscipopt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pysdl2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyshacl": { + "blocked_by": [ + "poetry", + "python-CacheControl", + "python-cleo", + "python-rapidfuzz" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyshark": { + "blocked_by": [ + "python-logbook" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyshtools": { + "blocked_by": [ + "pyproj", + "python-Bottleneck", + "python-astropy", + "python-cartopy", + "python-matplotlib", + "python-shapely", + "python-xarray" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyside6": { + "blocked_by": [], + "blocks_count": 15, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "python-pysimplesoap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pysingular": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pysnmp-mibs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pysnooper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pysocks": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pysodium": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pysol-cards": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyspellchecker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyspf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyspiflash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyspike": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pysrt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pystemd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pystitch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pystray": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pysubnettree": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyswip": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pysword": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytaglib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyte": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytesseract": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-aiohttp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-arraydiff": { + "blocked_by": [ + "python-Bottleneck", + "python-astropy", + "python-blosc2", + "python-ndindex", + "python-tables" + ], + "blocks_count": 10, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytest-astropy": { + "blocked_by": [ + "python-pytest-arraydiff" + ], + "blocks_count": 9, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytest-astropy-header": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-asyncio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-bdd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-benchmark": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-cache": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-cases": { + "blocked_by": [ + "python-pytest-harvest", + "python-pytest-steps" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytest-check": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-cid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-click": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-console-scripts": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-cov": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-datadir": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-datafiles": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-dependency": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-django": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-doctestplus": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-env": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-expect": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-filter-subpackage": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-fixture-config": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-flake8-path": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-flakes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-forked": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-freezegun": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-freezer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-gitconfig": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-github-actions-annotate-failures": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-golden": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-harvest": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytest-home": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-httpbin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-httpserver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-httpx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-isort": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-jupyter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-lazy-fixture": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-lazy-fixtures": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-localftpserver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-localserver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-lsp": { + "blocked_by": [ + "python-cattrs", + "python-lsprotocol", + "python-pygls" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytest-metadata": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-mock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-mpi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-mpl": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 10, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytest-multihost": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-openfiles": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-ordering": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-param-files": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-postgresql": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-qt": { + "blocked_by": [ + "python-pyqt6", + "python-pyside6", + "python-qt5" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytest-randomly": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-recording": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-regressions": { + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib" + ], + "blocks_count": 16, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytest-relaxed": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-remotedata": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-repeat": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-rerunfailures": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-services": { + "blocked_by": [ + "python-zc-lockfile" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytest-shutil": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-smartcov": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-sourceorder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-spec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-split": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-steps": { + "blocked_by": [ + "python-Bottleneck", + "python-pytest-harvest" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytest-subprocess": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-subtests": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-sugar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-testinfra": { + "blocked_by": [ + "python-cherrypy", + "python-zc-lockfile" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytest-testmon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-timeout": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-tldr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-tornado": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-trio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-vcr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-venv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-watch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-xdist": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-xprocess": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytest-xvfb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-python-fcl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-python-multipart": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-python-ulid": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytn3270": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytoolconfig": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pytools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pytzdata": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyuca": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyudev": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyunormalize": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyvat": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyvirtualdisplay": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyvlx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyvmomi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyvo": { + "blocked_by": [ + "python-astropy", + "python-pytest-arraydiff", + "python-pytest-astropy" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pywayland": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pywizlight": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pywt": { + "blocked_by": [ + "python-matplotlib", + "python-numpydoc", + "python-pydata-sphinx-theme" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-pyxdameraulevenshtein": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyxlsb2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyxs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyyaml-env-tag": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyzabbix": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyzolib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-pyzstd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-qcelemental": { + "blocked_by": [ + "python-pint", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-qcustomplot-pyqt": { + "blocked_by": [ + "python-pyqt6", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-qdarkstyle": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-qemu-qmp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-qpageview": { + "blocked_by": [ + "python-pyqt6" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-qrcode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-qstylizer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-qt5": { + "blocked_by": [], + "blocks_count": 54, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-qtconsole": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-qtsass": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-quantities": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-quart": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-quart-trio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-qudida": { + "blocked_by": [ + "python-joblib", + "python-scikit-learn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-questionary": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-queuelib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-qutepart": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-radexreader": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-railroad-diagrams": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rangehttpserver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rapidfuzz": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 16, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-rarfile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rasterio": { + "blocked_by": [ + "python-matplotlib", + "python-shapely" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-raven": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rcssmin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rdflib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-re-assert": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-readability": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-readability-lxml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-readchar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-readme-renderer": { + "blocked_by": [], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-rebulk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-recipe-scrapers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-recommonmark": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-redis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-reedsolo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-referencing": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-reflink": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-regex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-relatorio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rencode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-reno": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 25, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-repomd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-reportlab": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-repoze-lru": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-repoze-sphinx-autointerface": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-repoze-tm2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-repoze-who": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-repoze-who-plugins-sa": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-represent": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-reproject": { + "blocked_by": [ + "python-astropy", + "python-astropy-healpix", + "python-dask", + "python-numcodecs", + "python-partd", + "python-pytest-arraydiff", + "python-pytest-astropy", + "python-zarr" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-requests": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests-cache": { + "blocked_by": [ + "python-cattrs" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-requests-download": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests-exoscale-auth": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests-file": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests-ftp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests-futures": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests-gssapi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests-kerberos": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests-mock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests-oauthlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests-pkcs12": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests-ratelimiter": { + "blocked_by": [ + "python-cattrs", + "python-requests-cache" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-requests-toolbelt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests-unixsocket": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requests_ntlm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requestsexceptions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requirements-parser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-requre": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-reretry": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-resend": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-resolvelib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-responses": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-respx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-restructuredtext-lint": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-result": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-resultsdb_api": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-resumable-urlretrieve": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-retask": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-retry": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-retryz": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rfc3339-validator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rfc3986": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rfc3986-validator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rfc3987": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rfc3987-syntax": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rich": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rich-click": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rich-rst": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rich-toolkit": { + "blocked_by": [ + "python-inline-snapshot", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-rignore": { + "blocked_by": [ + "python-inline-snapshot" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-rjsmin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rlp": { + "blocked_by": [ + "python-cytoolz", + "python-eth-utils", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-rmtest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-robosignatory": { + "blocked_by": [ + "fedora-messaging", + "python-crochet", + "python-pika", + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-robot-detection": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-robotframework": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-roman": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-roman-numerals": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rope": { + "blocked_by": [ + "python-pytoolconfig" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-rosdep": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rosdistro": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rosinstall_generator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rospkg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-roundrobin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-routes": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rpdb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rpds-py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rpi-gpio2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rply": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rpmautospec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rpmautospec-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rpmfluff": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rpyc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rq": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rsa": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rsd-lib": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-stestr", + "python-sushy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-rsdclient": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rst-linker": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rstcheck": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core", + "python-rstcheck-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-rstcheck-core": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-rstr": { + "blocked_by": [], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-rtslib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ruamel-yaml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ruamel-yaml-clib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rust-update-set": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rustcfg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-rxjson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-s3transfer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-safetensors": { + "blocked_by": [ + "python-torch", + "sympy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-saharaclient": { + "blocked_by": [ + "python-cinderclient", + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-keystoneclient", + "python-openstackclient", + "python-openstacksdk", + "python-osc-lib", + "python-oslo-config", + "python-oslo-context", + "python-oslo-log", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-samloader": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sanction": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sane": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-saneyaml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-scales": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-scantree": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-schedutils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-schema": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-scikit-build-core": { + "blocked_by": [ + "python-cattrs" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-scikit-image": { + "blocked_by": [ + "python-matplotlib", + "python-numpydoc", + "python-pywt", + "pythran" + ], + "blocks_count": 7, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-scikit-learn": { + "blocked_by": [ + "python-joblib" + ], + "blocks_count": 22, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-scikit-uplift": { + "blocked_by": [ + "python-Bottleneck", + "python-joblib", + "python-scikit-learn", + "python-sphinxcontrib-bibtex" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-scipy-doctest": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-scitokens": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-scooby": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-scour": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-scp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-scramp": { + "blocked_by": [ + "python-versioningit" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-scrape-schema-recipe": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-scrapy": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-scripttest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-scrypt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sdkmanager": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sdnotify": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-seaborn": { + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib", + "python-numpydoc", + "python-patsy", + "python-statsmodels" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-secure_cookie": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-selenium": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-semantic_version": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-semver": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-send2trash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sentinels": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sentry-sdk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sep": { + "blocked_by": [ + "python-astropy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "python-serpent": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-service-identity": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-setproctitle": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-setupmeta": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-setuptools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-setuptools-gettext": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-setuptools-git-versioning": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-setuptools-rust": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-setuptools_scm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sexpdata": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sgmllib3k": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sgp4": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sgqlc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-shamir-mnemonic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-shapely": { + "blocked_by": [ + "pyproj", + "python-matplotlib", + "python-scipy-doctest" + ], + "blocks_count": 18, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-shellingham": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-shortuuid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-should_dsl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-show-in-file-manager": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-shtab": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sieve": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sievelib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-signedjson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-simple-pid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-simple-rlp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-simple-salesforce": { + "blocked_by": [ + "python-pendulum" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-simple-websocket": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-simpleaudio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-simpleeval": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-simplejson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-simpleline": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-single-version": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-siphash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-six": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sklearn-genetic": { + "blocked_by": [ + "python-deap", + "python-joblib", + "python-multiprocess", + "python-scikit-learn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sklearn-nature-inspired-algorithms": { + "blocked_by": [ + "poetry", + "python-Bottleneck", + "python-CacheControl", + "python-cleo", + "python-joblib", + "python-matplotlib", + "python-niapy", + "python-numpydoc", + "python-rapidfuzz", + "python-scikit-learn", + "python-seaborn" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-slackclient": { + "blocked_by": [ + "python-sqlalchemy", + "python-websockets" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-slip10": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-slixmpp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-slixmpp-omemo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-slugify": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sly": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-smart_open": { + "blocked_by": [ + "python-google-api-core", + "python-google-cloud-core", + "python-google-cloud-storage", + "python-proto-plus" + ], + "blocks_count": 24, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-smartypants": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-smbc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-smbpasswd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-smbprotocol": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-smmap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-snakemake-executor-plugin-cluster-generic": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-executor-plugin-cluster-sync": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-executor-plugin-flux": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-executor-plugin-kubernetes": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-executor-plugin-slurm": { + "blocked_by": [ + "python-Bottleneck", + "python-smart_open", + "python-snakemake-executor-plugin-slurm-jobstep", + "snakemake" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-executor-plugin-slurm-jobstep": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-executor-plugin-tes": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-interface-common": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-snakemake-interface-executor-plugins": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-snakemake-interface-logger-plugins": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-snakemake-interface-report-plugins": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-snakemake-interface-scheduler-plugins": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-snakemake-interface-storage-plugins": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-snakemake-logger-plugin-rich": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core", + "python-smart_open", + "snakemake" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-storage-plugin-azure": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-storage-plugin-fs": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-storage-plugin-ftp": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-storage-plugin-gcs": { + "blocked_by": [ + "python-google-api-core", + "python-google-cloud-core", + "python-google-cloud-storage", + "python-proto-plus", + "python-smart_open", + "snakemake" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-storage-plugin-http": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-storage-plugin-s3": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-storage-plugin-webdav": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-storage-plugin-xrootd": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snakemake-storage-plugin-zenodo": { + "blocked_by": [ + "python-smart_open", + "snakemake" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-snappy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-snaptime": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sniffio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-social-auth-core": { + "blocked_by": [ + "python3-openid" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-socketio": { + "blocked_by": [ + "python-uvicorn" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-socks": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-socksio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-solc-ast": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-solcx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sortedcontainers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "docs-tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sounddevice": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-soundfile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-soupsieve": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-spdx-license-list": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-spdx-tools": { + "blocked_by": [ + "python-beartype", + "python-pyshacl" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-speaklater": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-specfile": { + "blocked_by": [ + "python-flexmock" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-speedtest-cli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-speg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "sphinxcontrib-tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-argparse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-argparse-cli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-autoapi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-autobuild": { + "blocked_by": [ + "python-uvicorn", + "python-watchfiles", + "python-websockets" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sphinx-autodoc-typehints": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-basic-ng": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-book-theme": { + "blocked_by": [ + "myst-nb", + "python-jupyter-cache", + "python-pydata-sphinx-theme", + "python-pytest-regressions", + "python-sphinx-thebe", + "python-sqlalchemy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sphinx-bootstrap-theme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-click": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-copybutton": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-design": { + "blocked_by": [ + "python-pytest-regressions" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-epytext": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-favicon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-gallery": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sphinx-inline-tabs": { + "blocked_by": [ + "python-pytest-regressions" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-intl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-issues": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-jsonschema": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-kr-theme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-last-updated-by-git": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-lint": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-markdown-builder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-markdown-tables": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-math-dollar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-mdinclude": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-multiversion": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-notfound-page": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-press-theme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-pytest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-removed-in": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-reredirects": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-tabs": { + "blocked_by": [ + "python-pytest-regressions" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-thebe": { + "blocked_by": [ + "myst-nb", + "python-jupyter-cache", + "python-matplotlib", + "python-pytest-regressions", + "python-sqlalchemy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sphinx-theme-alabaster": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-theme-builder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-theme-py3doc-enhanced": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx-typlog-theme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx_lv2_theme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx_rtd_theme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinx_selective_exclude": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-apidoc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-autoprogram": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-bibtex": { + "blocked_by": [ + "python-numpydoc" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sphinxcontrib-chapeldomain": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-devhelp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-doxylink": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-globalsubs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-htmlhelp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-httpdomain": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-jquery": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-log-cabinet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-pecanwsme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-programoutput": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-qthelp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-serializinghtml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-spelling": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-svg2pdfconverter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-trio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxcontrib-websupport": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "optional_tests" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sphinxemoji": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxext-opengraph": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sphinxtesters": { + "blocked_by": [ + "python-numpydoc" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sphinxygen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-spnego": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sport-activities-features": { + "blocked_by": [ + "python-Bottleneck", + "python-cytoolz", + "python-joblib", + "python-matplotlib", + "python-niaaml", + "python-niapy", + "python-scikit-learn" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-spotipy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-spur": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-spyder-kernels": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-spyking-circus": { + "blocked_by": [ + "python-Bottleneck", + "python-matplotlib", + "python-patsy", + "python-statsmodels" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sql": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sqlacodegen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sqlalchemy": { + "blocked_by": [ + "python-pg8000", + "python-psycopg2", + "python-scramp" + ], + "blocks_count": 50, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sqlalchemy-collectd": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sqlalchemy-filters": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sqlalchemy-helpers": { + "blocked_by": [ + "python-alembic", + "python-pydantic", + "python-pydantic-core", + "python-pydantic-settings", + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sqlalchemy-utils": { + "blocked_by": [ + "python-flexmock", + "python-pg8000", + "python-psycopg2", + "python-scramp" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sqlalchemy1.3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sqlalchemy1.4": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sqlalchemy_schemadisplay": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sqlglot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sqlite-fts4": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sqlite-migrate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sqlite-utils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sqlparse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ssdeep": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sse-starlette": { + "blocked_by": [ + "python-autobahn", + "python-daphne", + "python-fastapi", + "python-pydantic", + "python-pydantic-core", + "python-sqlalchemy", + "python-twisted", + "python-txaio", + "python-uvicorn" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ssh-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sshtunnel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-stack-data": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-standard-mailcap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-standard-nntplib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-starlette": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-statsmodels": { + "blocked_by": [ + "python-Bottleneck", + "python-patsy" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-stdlib-list": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-stdlibs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-stdnum": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-steam": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-steampunk-spotter": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-stem": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-steps": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-stestr": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip" + ], + "blocks_count": 49, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-stevedore": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-stone": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-straight-plugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-stravalib": { + "blocked_by": [ + "python-pint", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-streamlink": { + "blocked_by": [ + "python-versioningit" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-strict-rfc3339": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-string_utils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-stripe": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-stuf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-subliminal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-subprocess-tee": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-succulent": { + "blocked_by": [ + "python-Bottleneck", + "python-sphinxcontrib-bibtex" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-suds": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-super-collections": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-superqt": { + "blocked_by": [ + "python-pint", + "python-pyqt6", + "python-pyside6", + "python-pytest-qt", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-supersmoother": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sure": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-surt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sushy": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-svg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-svg-path": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-svg2tikz": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-svgelements": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-svgwrite": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-swagger-spec-validator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-swiftclient": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-keystoneclient", + "python-openstacksdk", + "python-oslo-config", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-sybil": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-symengine": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "python-syrupy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-syslog-rfc5424-formatter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sysrsync": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-systemd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-sysv_ipc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tables": { + "blocked_by": [ + "python-blosc2", + "python-ndindex" + ], + "blocks_count": 7, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-tablib": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-tabulate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tackerclient": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-keystoneclient", + "python-openstacksdk", + "python-osc-lib", + "python-oslo-config", + "python-oslo-context", + "python-oslo-log", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-tamilstring": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tasklib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tatsu": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tblib": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-tcolorpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tcx2gpx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tcxparser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tcxreader": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-teamcity-messages": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-teletype": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-telnetlib3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tempdir": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tempita": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-templated-dictionary": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tempora": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tenacity": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tensile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-term-background": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-termcolor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-terminado": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-terminaltables": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-terminaltables3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-testfixtures": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-testpath": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-testrepository": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-testresources": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-testscenarios": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-testtools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-texext": { + "blocked_by": [ + "python-matplotlib", + "python-sphinxtesters", + "sympy" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-text-unidecode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-textdistance": { + "blocked_by": [ + "python-Levenshtein", + "python-rapidfuzz" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-textfsm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-textile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-texttable": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-textual": { + "blocked_by": [ + "python-time-machine" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-tftpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tgext-tw2": { + "blocked_by": [ + "TurboGears2", + "python-repoze-who-plugins-sa", + "python-sqlalchemy", + "python-zope-sqlalchemy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-threadpoolctl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-three_merge": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-throttler": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tidy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tifffile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tiktoken": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tilestache": { + "blocked_by": [ + "python-shapely" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-time-machine": { + "blocked_by": [], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-timelib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-timeout-decorator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-timeslot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tiny-proxy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tinycss2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tinydb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tinygrad": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tinyhtml5": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tinyrpc": { + "blocked_by": [ + "python-pika" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-tkrzw": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tld": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tldextract": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tmuxp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-token-bucket": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tokenize-rt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tokenizers": { + "blocked_by": [ + "python-Bottleneck", + "python-datasets", + "python-multiprocess" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-toml-cli": { + "blocked_by": [ + "poetry", + "python-CacheControl", + "python-cleo", + "python-rapidfuzz" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-tomli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tomli-w": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tomlkit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-toolz": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-torch": { + "blocked_by": [ + "sympy" + ], + "blocks_count": 11, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-torchaudio": { + "blocked_by": [ + "python-torch", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-torchdata": { + "blocked_by": [ + "python-torch", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-torchdiffeq": { + "blocked_by": [ + "python-torch", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-torchsde": { + "blocked_by": [ + "python-torch", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-torchtext": { + "blocked_by": [ + "python-joblib", + "python-torch", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-torchvision": { + "blocked_by": [ + "python-torch", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-tornado": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-towncrier": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-tox": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tox-current-env": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tox-uv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tpm2-pytss": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tqdm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-trailrunner": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-traitlets": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-traitsui": { + "blocked_by": [ + "python-pyface", + "python-pyqt6", + "python-qt5" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-trampoline": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-transaction": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-transforms3d": { + "blocked_by": [ + "python-matplotlib", + "python-numpydoc", + "python-texext", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-translationstring": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-translitcodec": { + "blocked_by": [], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-treq": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-trezor": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-trie": { + "blocked_by": [ + "python-cytoolz", + "python-eth-utils", + "python-hexbytes", + "python-pydantic", + "python-pydantic-core", + "python-rlp" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-trimesh": { + "blocked_by": [ + "blender", + "python-ezdxf", + "python-matplotlib", + "python-scikit-image", + "python-shapely", + "sympy", + "usd" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-trio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-trio-websocket": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-triton": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-trml2pdf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-trololio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-trove-classifiers": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-troveclient": { + "blocked_by": [ + "python-cinderclient", + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-keystoneclient", + "python-mistralclient", + "python-openstackclient", + "python-openstacksdk", + "python-osc-lib", + "python-oslo-config", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-reno", + "python-stestr", + "python-swiftclient" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-trustme": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-truststore": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-trx-python": { + "blocked_by": [ + "python-deepdiff" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ttfautohint-py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tubes": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-tvb-data": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tvb-gdist": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tw2-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tw2-forms": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-twiggy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-twilio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-twine": { + "blocked_by": [ + "python-readme-renderer" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-twisted": { + "blocked_by": [], + "blocks_count": 48, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-twomemo": { + "blocked_by": [ + "python-doubleratchet", + "python-pydantic", + "python-pydantic-core", + "python-x3dh" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-txaio": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-txredisapi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-txws": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-txzmq": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-typecode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-typecode-libmagic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-typeguard": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-typepy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-typer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-boto": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-cryptography": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-decorator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-docutils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-enum34": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-ipaddress": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-mock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-psutil": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-pygments": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-pyopenssl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-pyyaml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-requests": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-setuptools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-types-six": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-typing-extensions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-typing-inspect": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-typing-inspection": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-typogrify": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-tzlocal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-u-boot-pylib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-u-msgpack-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ua-parser": { + "blocked_by": [ + "python-ua-parser-builtins" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ua-parser-builtins": { + "blocked_by": [ + "python-versioningit" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-uc-micro-py": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ufo2ft": { + "blocked_by": [ + "fonttools", + "python-defcon", + "python-ufoLib2" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-ufoLib2": { + "blocked_by": [ + "fonttools", + "python-cattrs", + "python-orjson" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-uharfbuzz": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-uhashring": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-uinput": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ujson": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ukkonen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-uncertainties": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-unicode-segmentation-rs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-unicodedata2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-unidecode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-unidiff": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-unipath": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-unique-log-filter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-unix-ar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-unpaddedbase64": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-untangle": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-uptime": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-uranium": { + "blocked_by": [ + "python-pyqt6", + "python-shapely", + "python-twisted" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-uri-template": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-uritemplate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-uritools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-url-normalize": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-urlgrabber": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-urllib-gssapi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-urllib3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-urlpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-urwid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-urwid-readline": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-urwidtrees": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-usbsdmux": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-user-agents": { + "blocked_by": [ + "python-ua-parser", + "python-ua-parser-builtins" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-userpath": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-usort": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-uswid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-utils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-utmp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-uv-build": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-uv-dynamic-versioning": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-uvicorn": { + "blocked_by": [ + "python-watchfiles", + "python-websockets" + ], + "blocks_count": 10, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-validator-collection": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-validators": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-valkey": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-varint": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-varlink": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-vascpy": { + "blocked_by": [ + "morphio", + "python-Bottleneck", + "python-igraph" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-vatnumber": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-vcrpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-vcs2l": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-vcstool": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-vdf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-vedo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-venusian": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-verboselogs": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-versioneer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-versioningit": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 8, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-vhacdx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-vine": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-virt-firmware": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-virtualbmc": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyghmi", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-virtualenv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "bootstrap" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-virtualenv-api": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-virtualenv-clone": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-virtualenvwrapper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-visitor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-visvis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-vkbasalt-cli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-vobject": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-volatile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-voluptuous": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-vsts": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-vsts-cd-manager": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-vulture": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-vvm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-w3lib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wadllib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-waitress": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-walkdir": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wand": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-warlock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-watchdog": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-watchfiles": { + "blocked_by": [ + "python-dirty-equals" + ], + "blocks_count": 8, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-wavio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wcag-contrast-ratio": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wcmatch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wcwidth": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-webcolors": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-webdav4": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-webencodings": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-webob": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-webrtcvad": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-webscrapbook": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-websocket-client": { + "blocked_by": [ + "python-websockets" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-websockets": { + "blocked_by": [], + "blocks_count": 17, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "python-websockify": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-webtest": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-werkzeug": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-whatthepatch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wheel": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-whisper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-whitenoise": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-whois": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-whoosh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-widgetsnbextension": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wikipedia": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wikitcms": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-willow": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-winrm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wordcloud": { + "blocked_by": [ + "python-matplotlib", + "python-readme-renderer", + "python-twine" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-wrapt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wsgidav": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wsproto": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wtf-peewee": { + "blocked_by": [ + "python-peewee" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-wtforms": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wurlitzer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-www-authenticate": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-wxnatpy": { + "blocked_by": [ + "python-fsleyes-widgets", + "python-matplotlib", + "python-xnat" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-wxpython4": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-x2go": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-x3dh": { + "blocked_by": [ + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-xapian-haystack": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xarray": { + "blocked_by": [ + "python-Bottleneck", + "python-dask", + "python-matplotlib", + "python-numcodecs", + "python-numpydoc", + "python-partd", + "python-pint", + "python-rasterio", + "python-seaborn", + "python-zarr" + ], + "blocks_count": 7, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-xarray-einstats": { + "blocked_by": [ + "python-Bottleneck", + "python-xarray" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-xattr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xbout": { + "blocked_by": [ + "python-Bottleneck", + "python-animatplot", + "python-boutdata", + "python-dask", + "python-matplotlib", + "python-partd", + "python-xarray", + "sympy" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-xcffib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xdfile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xdot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xeddsa": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xkbcommon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xkbregistry": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xlib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xlrd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xlrd2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xlsxwriter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xlwt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xml2rfc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xmlschema": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xmlsec": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xmltodict": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xmltramp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xmp-toolkit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xnat": { + "blocked_by": [ + "python-versioningit" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "tests" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-xnat4tests": { + "blocked_by": [ + "python-xnat" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-xrst": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xvfbwrapper": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xword-dl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xxhash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-xyzservices": { + "blocked_by": [ + "python-mercantile" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-yaml2ical": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-yamlloader": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-yapf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-yapsy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-yaql": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-yara": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-yarl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-yattag": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-yfinance": { + "blocked_by": [ + "python-Bottleneck", + "python-peewee" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-yte": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-ytmusicapi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-yubico": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zaqarclient": { + "blocked_by": [ + "python-cliff", + "python-cmd2", + "python-debtcollector", + "python-keystoneauth1", + "python-openstacksdk", + "python-osc-lib", + "python-oslo-config", + "python-oslo-context", + "python-oslo-log", + "python-oslo-serialization", + "python-oslo-utils", + "python-pyperclip", + "python-stestr" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-zarr": { + "blocked_by": [ + "python-numcodecs" + ], + "blocks_count": 9, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-zarr-checksum": { + "blocked_by": [ + "python-numcodecs", + "python-zarr" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-zc-lockfile": { + "blocked_by": [ + "python-zope-testrunner" + ], + "blocks_count": 5, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-zeep": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zeroconf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zhon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zict": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zipp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zipstream": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zlib-ng": { + "blocked_by": [], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-zmq": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zoidberg": { + "blocked_by": [ + "python-boutdata", + "python-matplotlib", + "sympy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-zombie-imp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zope-component": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zope-configuration": { + "blocked_by": [ + "python-zope-i18nmessageid", + "python-zope-schema", + "python-zope-testrunner" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-zope-deprecation": { + "blocked_by": [ + "python-zope-testrunner" + ], + "blocks_count": 7, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-zope-event": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "docs" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zope-exceptions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "tests" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zope-hookable": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zope-i18nmessageid": { + "blocked_by": [ + "python-zope-testrunner" + ], + "blocks_count": 4, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-zope-interface": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zope-schema": { + "blocked_by": [ + "python-zope-i18nmessageid", + "python-zope-testrunner" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-zope-sqlalchemy": { + "blocked_by": [ + "python-sqlalchemy" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-zope-testing": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zope-testrunner": { + "blocked_by": [], + "blocks_count": 11, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python-zopfli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zstandard": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zstarfile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zstd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zuul-sphinx": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python-zxcvbn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python3-cangjie": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python3-discid": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python3-lxc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python3-mallard-ducktype": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python3-mypy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python3-openid": { + "blocked_by": [ + "python-psycopg2" + ], + "blocks_count": 12, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python3-poppler-qt5": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "python3-py3dns": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python3-saml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "python3-simpletal": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pythran": { + "blocked_by": [ + "python-nbsphinx" + ], + "blocks_count": 3, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "pytz": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyusb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pywbem": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pywebdav": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pywhispercpp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyxattr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyxdg": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "pyzor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "qgis": { + "blocked_by": [ + "python-pyqt6", + "qscintilla" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "qhexedit2": { + "blocked_by": [ + "python-pyqt6", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "qpid-proton": { + "blocked_by": [], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "qr-code-generator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "qscintilla": { + "blocked_by": [ + "python-pyqt6", + "python-qt5" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "qtile": { + "blocked_by": [ + "python-mpd2", + "python-readme-renderer", + "python-twine" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "qtile-extras": { + "blocked_by": [ + "qtile" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "quearcode": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "quisk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "quodlibet": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "qutebrowser": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "radicale": { + "blocked_by": [ + "python-pika" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "ramalama": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ranger": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rapidyaml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rb_libtorrent": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rdiff-backup": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rdma-core": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "re2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "realtime-tests": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rebase-helper": { + "blocked_by": [ + "python-specfile", + "rpkg", + "rpmlint" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "recoll": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "redhat-internal-test-package": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rednotebook": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "redshift": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "relval": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "remmina": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "renderdoc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "reprotest": { + "blocked_by": [ + "python-rstr" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "resalloc": { + "blocked_by": [ + "python-alembic", + "python-psycopg2", + "python-sqlalchemy" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "resalloc-ibm-cloud": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "resalloc-openstack": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "resultsdb_conventions": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "retis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "retrace-server": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "reuse": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "revelation": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rhythmbox-ampache": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rig": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rmlint": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rmol": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "roca-detect": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rofimoji": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "root": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "rpkg": { + "blocked_by": [ + "rpmlint" + ], + "blocks_count": 6, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "rpkg-util": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rpl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rpm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rpm-head-signing": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rpm-spec-language-server": { + "blocked_by": [ + "python-cattrs", + "python-lsprotocol", + "python-pygls", + "python-specfile" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "rpmconf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rpmdeplint": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rpmlint": { + "blocked_by": [], + "blocks_count": 7, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "rpmspectool": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rpy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rrdtool": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rss2email": { + "blocked_by": [ + "poetry", + "python-CacheControl", + "python-cleo", + "python-rapidfuzz" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "rst2pdf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rteval": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rtlsdr-scanner": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rubber": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ruff": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "rust2rpm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ruyi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "s-tui": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "s3cmd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "salt": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "salt-lint": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "samba": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sanlock": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sasutils": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "satyr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "scancode-toolkit": { + "blocked_by": [ + "python-beartype", + "python-ftfy", + "python-spdx-tools" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "scapy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "scidavis": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "scipy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [ + "pythran" + ], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "scons": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "screenkey": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "scribus": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "seadrive-daemon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "seafile": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sen": { + "blocked_by": [ + "python-flexmock" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "sentencepiece": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sepolicy_analysis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "setconf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "setools": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "setroubleshoot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "setzer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sherlock-project": { + "blocked_by": [ + "python-Bottleneck" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "showcert": { + "blocked_by": [ + "python-pem" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "showtime": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "shyaml": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "shybrid": { + "blocked_by": [ + "python-matplotlib", + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "sigil": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "simple-ccsm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sip": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sip6": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "skf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "slingshot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "slowloris": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "smbcmp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "smoldyn": { + "blocked_by": [ + "python-matplotlib" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "snakemake": { + "blocked_by": [ + "python-google-api-core", + "python-google-cloud-core", + "python-google-cloud-storage", + "python-proto-plus", + "python-smart_open" + ], + "blocks_count": 22, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [ + "bootstrap" + ], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "snapm": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "snowball": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "solaar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "solarwolf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sos": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "soundconverter": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "spec2nii": { + "blocked_by": [ + "python-Bottleneck", + "python-fslpy", + "python-matplotlib", + "python-nifti-mrs", + "python-pymapvbvd" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "spec2scl": { + "blocked_by": [ + "python-flexmock" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "spectrographic": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "speech-dispatcher": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "speedtest-cli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "spglib": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "spyder": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "ssh-audit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sshuttle": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sssd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "stomppy": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "stp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "stratis-cli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "subscription-manager": { + "blocked_by": [], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "subunit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "subversion": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sudo": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sugar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sugar-datastore": { + "blocked_by": [ + "xapian-bindings" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "sugar-toolkit-gtk3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sundials": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "supervisor": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "swig": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sword": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "sympy": { + "blocked_by": [ + "llvm", + "python-matplotlib" + ], + "blocks_count": 29, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "syncplay": { + "blocked_by": [ + "python-pem", + "python-pyside6", + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "syncstar": { + "blocked_by": [ + "python-celery", + "python-kombu" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "syndication-domination": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "syslog-ng": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "system-config-printer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "system-storage-manager": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "systemd-coredump-python": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "systemtap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "targetcli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "targetd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "tbb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "tcl-snack": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "teampulls": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "terminator": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "testcloud": { + "blocked_by": [ + "python-peewee" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "texworks": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "thefuck": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "theme-switcher": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "thonny": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "thrift": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "tiled": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "timeline": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "tito": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "tldr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "tlsh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "tmt": { + "blocked_by": [ + "python-pint", + "python-pydantic", + "python-pydantic-core" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "todocli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "tomcli": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "toot": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "torbrowser-launcher": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "tortoisehg": { + "blocked_by": [ + "python-pyqt6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "tpm2-pkcs11": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "trac": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "trac-monotone-plugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "trac-tracnav-plugin": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "tracer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "trademgen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "translate-toolkit": { + "blocked_by": [ + "python-Levenshtein", + "python-rapidfuzz" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "trash-cli": { + "blocked_by": [ + "python-flexmock" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "tre": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "trelby": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "trellis": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "tuna": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "tuned": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "txt2tags": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ty": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ubertooth": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "udica": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "udiskie": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "uflash": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ufw": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "uhd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ulauncher": { + "blocked_by": [ + "python-Levenshtein", + "python-rapidfuzz" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "unbound": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "unicorn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "units-llnl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "urh": { + "blocked_by": [ + "python-pyqt6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "urjtag": { + "blocked_by": [ + "libftdi" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "urlscan": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "urlwatch": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ursa-major": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "usbrelay": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "usd": { + "blocked_by": [ + "python-pyside6" + ], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "ustreamer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "util-linux": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "uv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "uwsgi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "vapoursynth": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "variety": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "vdirsyncer": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "vdr-epg-daemon": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "vdr-epg2vdr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "veusz": { + "blocked_by": [ + "python-pyqt6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "vex": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "vigra": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "vim-jedi": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "vimiv": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "vimiv-qt": { + "blocked_by": [ + "python-qt5" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "virt-bootstrap": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "virt-lightning": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "virt-who": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "virtme-ng": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "virtnbdbackup": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "visidata": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "vit": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "volk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "volume_key": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "vorta": { + "blocked_by": [ + "python-peewee", + "python-pyqt6" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "vtk": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "vyper": { + "blocked_by": [ + "python-cytoolz", + "python-eth-abi", + "python-eth-keys", + "python-eth-utils", + "python-pydantic", + "python-pydantic-core", + "python-rlp" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "waf": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "wafw00f": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "weasyprint": { + "blocked_by": [ + "fonttools" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "weechat": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "wesnoth": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "whatip": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "whipper": { + "blocked_by": [ + "python-twisted" + ], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "winpdb": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "wordxtr": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "wult": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "xapian-bindings": { + "blocked_by": [], + "blocks_count": 2, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "xapps": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "xcb-proto": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "xcfun": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "xen": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "xmms2": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "xonsh": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "xpra": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "xrootd": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "xwayland-run": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "yamllint": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "yawn": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "ydiff": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "yle-dl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "youtube-dl": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "yt-dlp": { + "blocked_by": [ + "python-websockets" + ], + "blocks_count": 1, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": false + }, + "yubikey-manager": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "z3": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "zbar": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "zeitgeist": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "zfp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": false, + "is_resolvable": false, + "non_buildable_bconds": [], + "prerel_abi_compatible": false, + "was_already_built": false + }, + "zinnia": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "znc": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + }, + "zxing-cpp": { + "blocked_by": [], + "blocks_count": 0, + "buildable_bconds": [], + "can_build_regular": true, + "is_resolvable": true, + "non_buildable_bconds": [], + "prerel_abi_compatible": true, + "was_already_built": true + } +} \ No newline at end of file