Skip to content

Commit 147a1fa

Browse files
committed
Drop compatibility with GHC 8.6.5
1 parent 524ef15 commit 147a1fa

File tree

6 files changed

+2
-13
lines changed

6 files changed

+2
-13
lines changed

.github/workflows/flags.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ jobs:
4848
, "9.0.2"
4949
, "8.10.7"
5050
, "8.8.4"
51-
, "8.6.5"
5251
]
5352
os: [ "ubuntu-latest"
5453
]

.github/workflows/test.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ jobs:
6262
, "9.0.2"
6363
, "8.10.7"
6464
, "8.8.4"
65-
, "8.6.5"
6665
]
6766
os: [ "ubuntu-latest"
6867
, "macOS-latest"
@@ -81,9 +80,6 @@ jobs:
8180
- os: ubuntu-latest
8281
ghc: '8.8.4'
8382
test: true
84-
- os: ubuntu-latest
85-
ghc: '8.6.5'
86-
test: true
8783
- os: windows-latest
8884
ghc: '9.2.3'
8985
test: true
@@ -93,9 +89,6 @@ jobs:
9389
- os: windows-latest
9490
ghc: '8.10.7'
9591
test: true
96-
- os: windows-latest
97-
ghc: '8.6.5'
98-
test: true
9992
# only build rest of supported ghc versions for windows
10093
- os: windows-latest
10194
ghc: '8.8.4'

.gitpod.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ RUN sudo install-packages build-essential curl libffi-dev libffi7 libgmp-dev lib
77
echo 'export PATH=$HOME/.cabal/bin:$HOME/.local/bin:$PATH' >> $HOME/.bashrc && \
88
. /home/gitpod/.ghcup/env && \
99
# Install all verions of GHC that HLS supports. Putting GHC into Docker image makes workspace start much faster.
10-
ghcup install ghc 8.6.5 && \
1110
ghcup install ghc 8.8.4 && \
1211
ghcup install ghc 8.10.7 && \
1312
ghcup install ghc 9.0.2 && \

ghcide/ghcide.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description:
1313
A library for building Haskell IDE's on top of the GHC API.
1414
homepage: https://github.com/haskell/haskell-language-server/tree/master/ghcide#readme
1515
bug-reports: https://github.com/haskell/haskell-language-server/issues
16-
tested-with: GHC == 8.6.5 || == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.2 || == 9.2.3
16+
tested-with: GHC == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.2 || == 9.2.3
1717
extra-source-files: README.md CHANGELOG.md
1818
test/data/**/*.project
1919
test/data/**/*.cabal

haskell-language-server.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ copyright: The Haskell IDE Team
1414
license: Apache-2.0
1515
license-file: LICENSE
1616
build-type: Simple
17-
tested-with: GHC == 8.6.5 || == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.2 || == 9.2.3
17+
tested-with: GHC == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.2 || == 9.2.3
1818
extra-source-files:
1919
README.md
2020
ChangeLog.md

hls-graph/src/Development/IDE/Graph/Internal/Types.hs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ module Development.IDE.Graph.Internal.Types where
1313
import Control.Applicative
1414
import Control.Monad.Catch
1515
#if __GLASGOW_HASKELL__ < 808
16-
-- Needed in GHC 8.6.5
1716
import Control.Concurrent.STM.Stats (TVar, atomically)
18-
import Control.Monad.Fail
1917
#else
2018
import GHC.Conc (TVar, atomically)
2119
#endif

0 commit comments

Comments
 (0)