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

Relax base bound for GHC 9.12; bump CI to GHC 9.10 #421

Merged
merged 1 commit into from
Oct 22, 2024
Merged
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
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
Loading