Skip to content
This repository has been archived by the owner on May 29, 2021. It is now read-only.

Commit

Permalink
allow async 2.2, ghc 8.4 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmichael authored and joelburget committed Mar 25, 2018
1 parent 4acfad5 commit 6c20c18
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion easytest.cabal
Expand Up @@ -83,7 +83,7 @@ library

-- these bounds could probably be made looser
build-depends:
async >= 2.1 && <= 2.2,
async >= 2.1 && <= 2.3,
base >= 4.5 && <= 5,
mtl >= 2.0.1 && < 2.3,
containers >= 0.4.0 && < 0.6,
Expand Down
2 changes: 2 additions & 0 deletions src/EasyTest/Internal.hs
Expand Up @@ -29,7 +29,9 @@ import Control.Monad
import Control.Monad.IO.Class
import Control.Monad.Reader
import Data.List (isPrefixOf)
#if !(MIN_VERSION_base(4,11,0))
import Data.Semigroup
#endif
import Data.String (IsString(..))
import Data.Text (Text)
import qualified Data.Text as T
Expand Down
2 changes: 2 additions & 0 deletions src/EasyTest/Porcelain.hs
Expand Up @@ -34,7 +34,9 @@ import Control.Exception
import Control.Monad
import Control.Monad.IO.Class
import Control.Monad.Reader
#if !(MIN_VERSION_base(4,11,0))
import Data.Semigroup
#endif
import Data.Text (Text)
import qualified Data.Text as T
import qualified Data.Text.IO as T
Expand Down

0 comments on commit 6c20c18

Please sign in to comment.