Skip to content

Commit

Permalink
Relax base bound for GHC 9.12; bump CI to GHC 9.10
Browse files Browse the repository at this point in the history
Also relax QuickCheck bound.
  • Loading branch information
andreasabel authored and andrewthad committed Oct 22, 2024
1 parent efde5a7 commit 2e95fd0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8']
ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8', '9.10']
include:
- os: windows-latest
ghc: 'latest'
Expand Down
7 changes: 4 additions & 3 deletions primitive.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ Tested-With:
GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.8
GHC == 9.6.4
GHC == 9.6.6
GHC == 9.8.2
GHC == 9.10.1

Library
Default-Language: Haskell2010
Expand Down Expand Up @@ -57,7 +58,7 @@ Library
Data.Primitive.Internal.Operations
Data.Primitive.Internal.Read

Build-Depends: base >= 4.9 && < 4.21
Build-Depends: base >= 4.9 && < 4.22
, deepseq >= 1.1 && < 1.6
, transformers >= 0.5 && < 0.7
, template-haskell >= 2.11
Expand Down Expand Up @@ -90,7 +91,7 @@ test-suite test-qc
, ghc-prim
, primitive
, quickcheck-classes-base >= 0.6 && <0.7
, QuickCheck >= 2.13 && < 2.15
, QuickCheck >= 2.13 && < 2.16
, tasty >= 1.2 && < 1.6
, tasty-quickcheck
, tagged
Expand Down

0 comments on commit 2e95fd0

Please sign in to comment.