Skip to content

Commit 2031d91

Browse files
authored
Merge pull request #212 from haskell/ghc-8.6
Drop support for GHC < 8.6
2 parents b06157b + d5c333d commit 2031d91

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest]
17-
ghc: ['8.0.2', '8.2.2', '8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.7', '9.4.5', '9.6.1']
17+
ghc: ['8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8']
1818
cabal: ['3.8.1.0']
1919
include:
2020
- os: macOS-latest
21-
ghc: '9.4.5'
21+
ghc: '9.4'
2222
cabal: '3.8.1.0'
2323
- os: macOS-latest
24-
ghc: '9.6.1'
24+
ghc: '9.6'
2525
cabal: '3.8.1.0'
2626
- os: windows-latest
27-
ghc: '9.4.5'
27+
ghc: '9.4'
2828
cabal: '3.8.1.0'
2929
- os: windows-latest
30-
ghc: '9.6.1'
30+
ghc: '9.6'
3131
cabal: '3.8.1.0'
3232
steps:
3333
- uses: actions/checkout@v3
@@ -48,7 +48,6 @@ jobs:
4848
- name: Build
4949
run: |
5050
set -eux
51-
[ "$(ghc --numeric-version)" = "${{ matrix.ghc }}" ]
5251
cabal update
5352
cabal build --enable-tests --enable-benchmarks
5453
cabal test

filepath.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ category: System
1616
build-type: Simple
1717
synopsis: Library for manipulating FilePaths in a cross platform way.
1818
tested-with:
19-
GHC ==8.0.2
20-
|| ==8.2.2
21-
|| ==8.4.4
22-
|| ==8.6.5
19+
GHC ==8.6.5
2320
|| ==8.8.4
2421
|| ==8.10.7
2522
|| ==9.0.2
26-
|| ==9.2.3
23+
|| ==9.2.8
24+
|| ==9.4.8
25+
|| ==9.6.3
26+
|| ==9.8.1
2727

2828
description:
2929
This package provides functionality for manipulating @FilePath@ values, and is shipped with <https://www.haskell.org/ghc/ GHC>. It provides two variants for filepaths:
@@ -91,7 +91,7 @@ library
9191

9292
default-language: Haskell2010
9393
build-depends:
94-
, base >=4.9 && <4.20
94+
, base >=4.12.0.0 && <4.20
9595
, bytestring >=0.11.3.0
9696
, deepseq
9797
, exceptions

0 commit comments

Comments
 (0)