Skip to content

Commit

Permalink
Set base lower bound to 4.14
Browse files Browse the repository at this point in the history
Set base lower bound to 4.14, corresponding to ghc-8.10, which is the
oldest supported ghc version.
  • Loading branch information
pgujjula committed Apr 11, 2024
1 parent 54abc58 commit 66052bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ default-extensions:
- ScopedTypeVariables

dependencies:
- base ^>= {4.7, 4.8, 4.9, 4.10, 4.11, 4.12, 4.13, 4.14, 4.15, 4.16, 4.17, 4.18, 4.19}
- base ^>= {4.14, 4.15, 4.16, 4.17, 4.18, 4.19}

library:
source-dirs: src
Expand Down
6 changes: 3 additions & 3 deletions primecount.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ library
extra-libraries:
primecount
build-depends:
base >=4.7 && <4.8 || >=4.8 && <4.9 || >=4.9 && <4.10 || >=4.10 && <4.11 || >=4.11 && <4.12 || >=4.12 && <4.13 || >=4.13 && <4.14 || >=4.14 && <4.15 || >=4.15 && <4.16 || >=4.16 && <4.17 || >=4.17 && <4.18 || >=4.18 && <4.19 || >=4.19 && <4.20
base >=4.14 && <4.15 || >=4.15 && <4.16 || >=4.16 && <4.17 || >=4.17 && <4.18 || >=4.18 && <4.19 || >=4.19 && <4.20
default-language: Haskell2010

test-suite primecount-tests
Expand All @@ -53,7 +53,7 @@ test-suite primecount-tests
ScopedTypeVariables
ghc-options: -Wall -Wcompat -Wmissing-export-lists -Wincomplete-record-updates -Wpartial-fields -Wmissing-home-modules -Werror=missing-home-modules -Widentities -Wredundant-constraints -Wmissing-export-lists
build-depends:
base >=4.7 && <4.8 || >=4.8 && <4.9 || >=4.9 && <4.10 || >=4.10 && <4.11 || >=4.11 && <4.12 || >=4.12 && <4.13 || >=4.13 && <4.14 || >=4.14 && <4.15 || >=4.15 && <4.16 || >=4.16 && <4.17 || >=4.17 && <4.18 || >=4.18 && <4.19 || >=4.19 && <4.20
base >=4.14 && <4.15 || >=4.15 && <4.16 || >=4.16 && <4.17 || >=4.17 && <4.18 || >=4.18 && <4.19 || >=4.19 && <4.20
, primecount
, silently ==1.2.*
, tasty >=1.4 && <1.5 || >=1.5 && <1.6
Expand All @@ -69,7 +69,7 @@ benchmark primecount-bench
ScopedTypeVariables
ghc-options: -Wall -Wcompat -Wmissing-export-lists -Wincomplete-record-updates -Wpartial-fields -Wmissing-home-modules -Werror=missing-home-modules -Widentities -Wredundant-constraints -Wmissing-export-lists
build-depends:
base >=4.7 && <4.8 || >=4.8 && <4.9 || >=4.9 && <4.10 || >=4.10 && <4.11 || >=4.11 && <4.12 || >=4.12 && <4.13 || >=4.13 && <4.14 || >=4.14 && <4.15 || >=4.15 && <4.16 || >=4.16 && <4.17 || >=4.17 && <4.18 || >=4.18 && <4.19 || >=4.19 && <4.20
base >=4.14 && <4.15 || >=4.15 && <4.16 || >=4.16 && <4.17 || >=4.17 && <4.18 || >=4.18 && <4.19 || >=4.19 && <4.20
, primecount
, tasty-bench ==0.3.*
default-language: Haskell2010

0 comments on commit 66052bb

Please sign in to comment.