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

Fix build with ghc 9.6.x and ghc-9.8.x #138

Open
wants to merge 3 commits 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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,7 +12,8 @@

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 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 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.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 / 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.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.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.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 / macos-latest / GHC latest / Cabal

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

import Network.MPD.Util
Expand Down