diff options
author | Daniel Gröber <dxld@darkboxed.org> | 2018-10-13 23:38:31 +0200 |
---|---|---|
committer | Daniel Gröber <dxld@darkboxed.org> | 2018-10-26 04:33:07 +0200 |
commit | fac92997d71efdf33f0843e22da61c105ece2594 (patch) | |
tree | 0d862a2fc3586751b27bd9bee4264f860d09041f /tests | |
parent | aee8bd2da76f932eb7df244008bfed5949dadbc4 (diff) |
Drop GHC<7.8 support
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CompileTest.hs | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/tests/CompileTest.hs b/tests/CompileTest.hs index 9eb6175..da75198 100644 --- a/tests/CompileTest.hs +++ b/tests/CompileTest.hs @@ -76,12 +76,7 @@ allCabalVersions :: Version -> [Version] allCabalVersions ghc_ver = let cabal_versions :: [Version] cabal_versions = map parseVer - -- "1.14.0" -- not supported at runtime - [ "1.16.0" - , "1.16.0.1" - , "1.16.0.2" - , "1.16.0.3" - , "1.18.0" + [ "1.18.0" , "1.18.1" , "1.18.1.1" , "1.18.1.2" @@ -124,9 +119,7 @@ allCabalVersions ghc_ver = let constraint_table = map (parseVer *** runReadP'Dist parse) $ - [ ("7.4" , ">= 1.14 && < 2") - , ("7.6" , ">= 1.16 && < 2") - , ("7.8" , ">= 1.18 && < 2") + [ ("7.8" , ">= 1.18 && < 2") , ("7.10" , ">= 1.22.2 && < 2") , ("8.0.1", ">= 1.24 ") , ("8.0.2", ">= 1.24.2 ") |