microbiomedata / nmdc-schema

National Microbiome Data Collaborative (NMDC) unified data model
https://microbiomedata.github.io/nmdc-schema/
Creative Commons Zero v1.0 Universal
27 stars 8 forks source link

GitHub Actions workflow is failing due to inability to install `bioregistry` #1932

Closed eecavanna closed 3 months ago

eecavanna commented 3 months ago

The GitHub Actions workflow defined in .github/workflows/main.yaml is failing with the following error:

  RuntimeError

  Unable to find installation candidates for bioregistry (0.10.157)

  at ~/.local/venv/lib/python3.10/site-packages/poetry/installation/chooser.py:74 in choose_for
       70│ 
       71│             links.append(link)
       72│ 
       73│         if not links:
    →  74│             raise RuntimeError(f"Unable to find installation candidates for {package}")
       75│ 
       76│         # Get the best link
       77│         chosen = max(links, key=lambda link: self._sort_key(package, link))
       78│ 

Cannot install bioregistry.

Here's a link to an example run (in the berkeley-schema-fy24 repo) that has the above error message in its logs:

eecavanna commented 3 months ago

This failure is happening in this repository (i.e. nmdc-schema) also; for example, here:

The same workflow ran successfully a couple days ago (and before that).

image