Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Support GHC 9.8 #1627

Merged
merged 1 commit into from
Mar 1, 2024
Merged
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
10 changes: 5 additions & 5 deletions haddock-library/haddock-library.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ common lib-defaults
default-language: Haskell2010

build-depends:
, base >= 4.5 && < 4.17
, base >= 4.5 && < 4.20
, containers ^>= 0.4.2.1 || ^>= 0.5.0.0 || ^>= 0.6.0.1
, text ^>= 1.2.3.0 || ^>= 2.0
, text ^>= 1.2.3.0 || ^>= 2.0 || ^>= 2.1
, parsec ^>= 3.1.13.0

ghc-options: -funbox-strict-fields -Wall
Expand Down Expand Up @@ -88,17 +88,17 @@ test-suite spec
build-depends:
, base-compat ^>= 0.12.0
, QuickCheck ^>= 2.11 || ^>= 2.13.2 || ^>= 2.14
, deepseq ^>= 1.3.0.0 || ^>= 1.4.0.0
, deepseq ^>= 1.3.0.0 || ^>= 1.4.0.0 || ^>= 1.5.0.0

-- NB: build-depends & build-tool-depends have independent
-- install-plans, so it's best to limit to a single major
-- version of `hspec` & `hspec-discover` to ensure
-- intercompatibility
build-depends:
, hspec >= 2.4.4 && < 2.10
, hspec >= 2.4.4 && < 2.12

build-tool-depends:
, hspec-discover:hspec-discover >= 2.4.4 && < 2.10
, hspec-discover:hspec-discover >= 2.4.4 && < 2.12

test-suite fixtures
type: exitcode-stdio-1.0
Expand Down
Loading