Skip to content

Commit 98bd939

Browse files
authored
Merge pull request #10672 from haskell/mergify/bp/3.14.1.1/pr-10656
Backport #10656: Support `ghc-9.12.*`
2 parents 269fd80 + 96ae701 commit 98bd939

File tree

1 file changed

+3
-3
lines changed
  • Cabal/src/Distribution/Simple

1 file changed

+3
-3
lines changed

Cabal/src/Distribution/Simple/GHC.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,14 @@ configure verbosity hcPath hcPkgPath conf0 = do
164164
(userMaybeSpecifyPath "ghc" hcPath conf0)
165165
let implInfo = ghcVersionImplInfo ghcVersion
166166

167-
-- Cabal currently supports ghc >= 7.0.1 && < 9.12
167+
-- Cabal currently supports ghc >= 7.0.1 && < 9.14
168168
-- ... and the following odd development version
169-
unless (ghcVersion < mkVersion [9, 12]) $
169+
unless (ghcVersion < mkVersion [9, 14]) $
170170
warn verbosity $
171171
"Unknown/unsupported 'ghc' version detected "
172172
++ "(Cabal "
173173
++ prettyShow cabalVersion
174-
++ " supports 'ghc' version < 9.12): "
174+
++ " supports 'ghc' version < 9.14): "
175175
++ programPath ghcProg
176176
++ " is version "
177177
++ prettyShow ghcVersion

0 commit comments

Comments
 (0)