Skip to content

Commit

Permalink
Merge pull request #138 from peti/master
Browse files Browse the repository at this point in the history
Fix build with ghc 9.6.x and ghc-9.8.x
  • Loading branch information
joachifm authored Jun 16, 2024
2 parents 95d3b3b + f1cbf24 commit fbefee5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libmpd.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Library
, containers >= 0.3 && < 1
, filepath >= 1 && < 2
, mtl >= 2.2.2 && < 3
, text >= 0.11 && < 2
, text >= 0.11 && < 2.2
, time >= 1.5 && < 2

-- Additional dependencies
Expand Down
1 change: 1 addition & 0 deletions src/Network/MPD/Commands/Parse.hs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module Network.MPD.Commands.Parse where

import Network.MPD.Commands.Types

import Control.Monad
import Control.Monad.Except

Check warning on line 16 in src/Network/MPD/Commands/Parse.hs

View workflow job for this annotation

GitHub Actions / ubuntu-latest / Stack nightly

The import of ‘Control.Monad.Except’ is redundant

Check warning on line 16 in src/Network/MPD/Commands/Parse.hs

View workflow job for this annotation

GitHub Actions / ubuntu-latest / GHC 8.8 / Cabal 2.4

The import of ‘Control.Monad.Except’ is redundant

Check warning on line 16 in src/Network/MPD/Commands/Parse.hs

View workflow job for this annotation

GitHub Actions / ubuntu-latest / GHC 8.4 / Cabal latest

The import of ‘Control.Monad.Except’ is redundant

Check warning on line 16 in src/Network/MPD/Commands/Parse.hs

View workflow job for this annotation

GitHub Actions / ubuntu-latest / GHC 8.4 / Cabal 2.4

The import of ‘Control.Monad.Except’ is redundant

Check warning on line 16 in src/Network/MPD/Commands/Parse.hs

View workflow job for this annotation

GitHub Actions / ubuntu-latest / GHC 8.10 / Cabal 2.4

The import of ‘Control.Monad.Except’ is redundant

Check warning on line 16 in src/Network/MPD/Commands/Parse.hs

View workflow job for this annotation

GitHub Actions / ubuntu-latest / GHC 8.6 / Cabal latest

The import of ‘Control.Monad.Except’ is redundant

Check warning on line 16 in src/Network/MPD/Commands/Parse.hs

View workflow job for this annotation

GitHub Actions / ubuntu-latest / GHC 8.6 / Cabal 2.4

The import of ‘Control.Monad.Except’ is redundant

Check warning on line 16 in src/Network/MPD/Commands/Parse.hs

View workflow job for this annotation

GitHub Actions / ubuntu-latest / GHC 8.8 / Cabal latest

The import of ‘Control.Monad.Except’ is redundant

Check warning on line 16 in src/Network/MPD/Commands/Parse.hs

View workflow job for this annotation

GitHub Actions / ubuntu-latest / GHC 8.10 / Cabal latest

The import of ‘Control.Monad.Except’ is redundant

Check warning on line 16 in src/Network/MPD/Commands/Parse.hs

View workflow job for this annotation

GitHub Actions / macos-latest / GHC latest / Cabal

The import of ‘Control.Monad.Except’ is redundant
import Data.Maybe (fromMaybe)

Expand Down

0 comments on commit fbefee5

Please # to comment.