Skip to content

Commit

Permalink
Drop support of GHC 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodigrim committed Dec 24, 2023
1 parent dc02249 commit cd949eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 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: true
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.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8']
include:
- os: windows-latest
ghc: 'latest'
Expand Down
5 changes: 2 additions & 3 deletions chimera.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ copyright: 2017-2019 Bodigrim
maintainer: [email protected]
author: Bodigrim
tested-with:
ghc ==9.8.1 ghc ==9.6.3 ghc ==9.4.7 ghc ==9.2.8 ghc ==9.0.2
ghc ==9.8.1 ghc ==9.6.3 ghc ==9.4.8 ghc ==9.2.8 ghc ==9.0.2
ghc ==8.10.7 ghc ==8.8.4 ghc ==8.6.5 ghc ==8.4.4 ghc ==8.2.2
ghc ==8.0.2

homepage: https://github.com/Bodigrim/chimera#readme
synopsis:
Expand Down Expand Up @@ -69,7 +68,7 @@ library
default-language: Haskell2010
ghc-options: -Wall -Wcompat
build-depends:
base >=4.9 && <5,
base >=4.10 && <5,
infinite-list <0.2,
primitive <0.10,
transformers <0.7,
Expand Down
2 changes: 0 additions & 2 deletions src/Data/Chimera.hs
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,7 @@ instance Applicative (Chimera V.Vector) where
A.arrayFromListN (bits + 1) $
G.singleton a : map (\k -> G.replicate (1 `shiftL` k) a) [0 .. bits - 1]
(<*>) = zipWithSubvectors (<*>)
#if __GLASGOW_HASKELL__ > 801
liftA2 f = zipWithSubvectors (liftA2 f)
#endif

-- | @since 0.3.1.0
instance Monad (Chimera V.Vector) where
Expand Down

0 comments on commit cd949eb

Please sign in to comment.