Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump GHC version to latest stack LTS #28

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions cyp.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ library
, Test.Info2.Cyp.Util
build-depends:
base ==4.*
, containers ==0.5.*
, containers ==0.6.*
, directory ==1.3.*
, filepath ==1.4.*
, haskell-src-exts ==1.20.*
, haskell-src-exts ==1.23.*
, mtl ==2.2.*
, parsec ==3.1.*
, pretty ==1.1.*
, pretty-show ==1.7.*
, pretty-show ==1.10.*
, tagged ==0.8.*
, tasty ==1.1.*
, tasty ==1.4.*

executable cyp
main-is: Main.hs
Expand All @@ -48,4 +48,4 @@ test-suite test
build-depends:
base ==4.*
, cyp
, tasty ==1.1.*
, tasty ==1.4.*
5 changes: 5 additions & 0 deletions src/Test/Info2/Cyp/Util.hs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{-# LANGUAGE FlexibleInstances #-}

module Test.Info2.Cyp.Util
( Err
, debug
Expand All @@ -17,6 +19,9 @@ import Text.PrettyPrint (Doc, (<+>), (<>), ($+$), colon, empty, int, nest, text)

type Err = Either Doc

instance MonadFail (Either Doc) where
fail = errStr

err :: Doc -> Err a
err = Left

Expand Down
5 changes: 2 additions & 3 deletions stack.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
resolver: lts-12.26

packages:
- '.'
- .
resolver: lts-18.27