Skip to content

Commit

Permalink
Relax mtl requirement
Browse files Browse the repository at this point in the history
This let's `tasty` compile with bundled `transformers-0.3` with GHC-7.8.*.
That's important for packages using e.g. `doctest` in their (other)
test-suites, as then `transformers` cannot be re-installed.
  • Loading branch information
phadej committed Jan 9, 2018
1 parent 09990c9 commit 43f177e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/Test/Tasty/Patterns/Eval.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module Test.Tasty.Patterns.Eval (eval, withFields, asB) where

import Prelude hiding (Ordering(..))
import Control.Monad.Reader
import Control.Monad.Except
import Control.Monad.Error.Class
import qualified Data.Sequence as Seq
import Data.Foldable
import Data.List
Expand Down
2 changes: 1 addition & 1 deletion core/tasty.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ library
base >= 4.5 && < 5,
stm >= 2.3,
containers,
mtl >= 2.2.1,
mtl >= 2.1.3.1,
tagged >= 0.5,
optparse-applicative >= 0.11,
deepseq >= 1.3,
Expand Down

0 comments on commit 43f177e

Please sign in to comment.