Skip to content

Commit 2e95fd0

Browse files
andreasabelandrewthad
authored andcommitted
Relax base bound for GHC 9.12; bump CI to GHC 9.10
Also relax QuickCheck bound.
1 parent efde5a7 commit 2e95fd0

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest]
19-
ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8']
19+
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']
2020
include:
2121
- os: windows-latest
2222
ghc: 'latest'

primitive.cabal

+4-3
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ Tested-With:
2828
GHC == 9.0.2
2929
GHC == 9.2.8
3030
GHC == 9.4.8
31-
GHC == 9.6.4
31+
GHC == 9.6.6
3232
GHC == 9.8.2
33+
GHC == 9.10.1
3334

3435
Library
3536
Default-Language: Haskell2010
@@ -57,7 +58,7 @@ Library
5758
Data.Primitive.Internal.Operations
5859
Data.Primitive.Internal.Read
5960

60-
Build-Depends: base >= 4.9 && < 4.21
61+
Build-Depends: base >= 4.9 && < 4.22
6162
, deepseq >= 1.1 && < 1.6
6263
, transformers >= 0.5 && < 0.7
6364
, template-haskell >= 2.11
@@ -90,7 +91,7 @@ test-suite test-qc
9091
, ghc-prim
9192
, primitive
9293
, quickcheck-classes-base >= 0.6 && <0.7
93-
, QuickCheck >= 2.13 && < 2.15
94+
, QuickCheck >= 2.13 && < 2.16
9495
, tasty >= 1.2 && < 1.6
9596
, tasty-quickcheck
9697
, tagged

0 commit comments

Comments
 (0)