conda / conda

A system-level, binary package and environment manager running on all major operating systems and platforms.
https://docs.conda.io/projects/conda/
Other
6.42k stars 1.66k forks source link

conda create -n test pandas=0.12 is unsatisfiable #558

Closed asmeurer closed 10 years ago

asmeurer commented 10 years ago

From the mailing list:

$conda create -n test pandas=0.12.0
Error: Unsatisfiable package specifications
Hint: pandas 0.12|0.12.0* has a conflict with the remaining packages

The problem is that it only tries the latest scipy, which doesn't have a numpy 17 version, but that version of pandas only has a numpy 17 version.

Until we can figure out how to fix the SAT solver, I recommend building all new versions of packages against NumPy 1.7.

asmeurer commented 10 years ago

Another way would be to go in and require older scipy versions for older package versions, so that get_max_dists doesn't pick the newest one.

ilanschnell commented 10 years ago

This is fixed now by munging the metadata, the pseudo boolean SAT solver will fix it for good.

github-actions[bot] commented 2 years ago

Hi there, thank you for your contribution to Conda!

This issue has been automatically locked since it has not had recent activity after it was closed.

Please open a new issue if needed.