Skip to content

Commit 6a16bde

Browse files
pepeiborraandys8
authored andcommitted
Drop compatibility with GHC 8.6.5
1 parent 07f14e3 commit 6a16bde

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
@@ -64,7 +64,6 @@ jobs:
6464
, "9.0.2"
6565
, "8.10.7"
6666
, "8.8.4"
67-
, "8.6.5"
6867
]
6968
os: [ "ubuntu-latest"
7069
, "macOS-latest"
@@ -86,9 +85,6 @@ jobs:
8685
- os: ubuntu-latest
8786
ghc: '8.8.4'
8887
test: true
89-
- os: ubuntu-latest
90-
ghc: '8.6.5'
91-
test: true
9288
- os: windows-latest
9389
ghc: '9.4.2'
9490
test: true
@@ -101,9 +97,6 @@ jobs:
10197
- os: windows-latest
10298
ghc: '8.10.7'
10399
test: true
104-
- os: windows-latest
105-
ghc: '8.6.5'
106-
test: true
107100
# only build rest of supported ghc versions for windows
108101
- os: windows-latest
109102
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.3 || == 9.2.4
16+
tested-with: GHC == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.3 || == 9.2.4
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.3 || == 9.2.4
17+
tested-with: GHC == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.3 || == 9.2.4
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)