conda / conda-lock

Lightweight lockfile for conda environments
https://conda.github.io/conda-lock/
Other
457 stars 102 forks source link

CI failing with RuntimeError about no install candidates for drjit #522

Closed maresb closed 8 months ago

maresb commented 8 months ago

Checklist

What happened?


self = <conda_lock._vendor.poetry.installation.chooser.Chooser object at 0x7f10d1ded310>
package = Package('drjit', '0.4.3')

    def choose_for(self, package):  # type: (Package) -> Link
        """
        Return the url of the selected archive for a given package.
        """
        links = []
        for link in self._get_links(package):
            if link.is_wheel and not Wheel(link.filename).is_supported_by_environment(
                self._env
            ):
                continue

            if link.ext in {".egg", ".exe", ".msi", ".rpm", ".srpm"}:
                continue

            links.append(link)

        if not links:
>           raise RuntimeError(
                "Unable to find installation candidates for {}".format(package)
            )
E           RuntimeError: Unable to find installation candidates for drjit (0.4.3)

Conda Info

No response

Conda Config

No response

Conda list

No response

Additional Context

No response