web-dev-qa-db-fra.com

Stack n'a pas été testé avec les versions GHC et Cabal

Dans mon projet Haskell quand je stack run, il montre ce qui suit, mais fonctionne toujours. De quel avertissement s'agit-il? Comment puis-je m'en débarrasser?

Stack has not been tested with GHC versions above 8.6, and using 8.8.2, this may fail
Stack has not been tested with Cabal versions above 2.4, but version 3.0.1.0 was found, this may fail
15
tmz13

Vous pouvez spécifier un résolveur lors de la création d'un projet pour supprimer cet avertissement:

stack new hello-world simple --resolver=lts-14.27
0
Emi