@@ -1077,6 +1077,7 @@ planPackages verbosity comp platform solver SolverSettings{..}
1077
1077
-- respective major Cabal version bundled with the respective GHC
1078
1078
-- release).
1079
1079
--
1080
+ -- GHC 8.8 needs Cabal >= 3.0
1080
1081
-- GHC 8.6 needs Cabal >= 2.4
1081
1082
-- GHC 8.4 needs Cabal >= 2.2
1082
1083
-- GHC 8.2 needs Cabal >= 2.0
@@ -1089,11 +1090,8 @@ planPackages verbosity comp platform solver SolverSettings{..}
1089
1090
-- TODO: long-term, this compatibility matrix should be
1090
1091
-- stored as a field inside 'Distribution.Compiler.Compiler'
1091
1092
setupMinCabalVersionConstraint
1092
- | isGHC, compVer >= mkVersion [8 ,6 ,1 ] = mkVersion [2 ,4 ]
1093
- -- GHC 8.6alpha2 (GHC 8.6.0.20180714) still shipped with a
1094
- -- devel snapshot of Cabal-2.3.0.0; the rule below can be
1095
- -- dropped at some point
1096
- | isGHC, compVer >= mkVersion [8 ,6 ] = mkVersion [2 ,3 ]
1093
+ | isGHC, compVer >= mkVersion [8 ,8 ] = mkVersion [3 ,0 ]
1094
+ | isGHC, compVer >= mkVersion [8 ,6 ] = mkVersion [2 ,4 ]
1097
1095
| isGHC, compVer >= mkVersion [8 ,4 ] = mkVersion [2 ,2 ]
1098
1096
| isGHC, compVer >= mkVersion [8 ,2 ] = mkVersion [2 ,0 ]
1099
1097
| isGHC, compVer >= mkVersion [8 ,0 ] = mkVersion [1 ,24 ]
0 commit comments