Skip to content

Commit

Permalink
Support GHC 9.8 (#13)
Browse files Browse the repository at this point in the history
* Bump base and template-haskell for GHC 9.8

* CI: add GHC 9.8
  • Loading branch information
amesgen authored Apr 4, 2024
1 parent f647d37 commit a8e1c7b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6']
ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: haskell/actions/setup@v2
- uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: latest
Expand Down
19 changes: 13 additions & 6 deletions vector-th-unbox.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,17 @@ category: Data
build-type: Simple
cabal-version: >= 1.10
tested-with:
GHC == 8.0.2,
GHC == 8.2.2,
GHC == 8.4.4,
GHC == 8.6.5, GHC == 8.8.3, GHC == 8.10.1, GHC == 9.0.1, GHC ==9.2.1
GHC == 9.8,
GHC == 9.6,
GHC == 9.4,
GHC == 9.2,
GHC == 9.0,
GHC == 8.10,
GHC == 8.8,
GHC == 8.6,
GHC == 8.4,
GHC == 8.2,
GHC == 8.0
extra-source-files:
CHANGELOG.md
README.md
Expand All @@ -35,8 +42,8 @@ library
Data.Vector.Unboxed.Deriving

build-depends:
base >= 4.9 && < 4.19,
template-haskell >= 2.5 && <2.21,
base >= 4.9 && < 4.20,
template-haskell >= 2.5 && <2.22,
vector >= 0.7.1 && <0.14

test-suite sanity
Expand Down

0 comments on commit a8e1c7b

Please sign in to comment.