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

Make it build with ghc 9.10 #188

Open
wants to merge 2 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,19 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.8.0.20230919
- compiler: ghc-9.10.1
compilerKind: ghc
compilerVersion: 9.8.0.20230919
compilerVersion: 9.10.1
setup-method: ghcup
allow-failure: true
- compiler: ghc-9.6.3
- compiler: ghc-9.8.2
compilerKind: ghc
compilerVersion: 9.6.3
compilerVersion: 9.8.2
setup-method: ghcup
allow-failure: true
- compiler: ghc-9.6.5
compilerKind: ghc
compilerVersion: 9.6.5
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.4.7
Expand Down
2 changes: 1 addition & 1 deletion haskeline.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Library
-- We require ghc>=7.4.1 (base>=4.5) to use the base library encodings, even
-- though it was implemented in earlier releases, due to GHC bug #5436 which
-- wasn't fixed until 7.4.1
Build-depends: base >=4.9 && < 4.20, containers>=0.4 && < 0.8,
Build-depends: base >=4.9 && < 4.21, containers>=0.4 && < 0.8,
directory>=1.1 && < 1.4, bytestring>=0.9 && < 0.13,
filepath >= 1.2 && < 1.6, transformers >= 0.2 && < 0.7,
process >= 1.0 && < 1.7, stm >= 2.4 && < 2.6,
Expand Down
Loading