Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for GHC < 8.6 #212

Merged
merged 2 commits into from
Dec 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
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']
ghc: ['8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8']
cabal: ['3.8.1.0']
include:
- os: macOS-latest
ghc: '9.4.5'
ghc: '9.4'
cabal: '3.8.1.0'
- os: macOS-latest
ghc: '9.6.1'
ghc: '9.6'
cabal: '3.8.1.0'
- os: windows-latest
ghc: '9.4.5'
ghc: '9.4'
cabal: '3.8.1.0'
- os: windows-latest
ghc: '9.6.1'
ghc: '9.6'
cabal: '3.8.1.0'
steps:
- uses: actions/checkout@v3
Expand All @@ -48,7 +48,6 @@ jobs:
- name: Build
run: |
set -eux
[ "$(ghc --numeric-version)" = "${{ matrix.ghc }}" ]
cabal update
cabal build --enable-tests --enable-benchmarks
cabal test
Expand Down
12 changes: 6 additions & 6 deletions filepath.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ category: System
build-type: Simple
synopsis: Library for manipulating FilePaths in a cross platform way.
tested-with:
GHC ==8.0.2
|| ==8.2.2
|| ==8.4.4
|| ==8.6.5
GHC ==8.6.5
|| ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.3
|| ==9.2.8
|| ==9.4.8
|| ==9.6.3
|| ==9.8.1

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

default-language: Haskell2010
build-depends:
, base >=4.9 && <4.20
, base >=4.12.0.0 && <4.20
, bytestring >=0.11.3.0
, deepseq
, exceptions
Expand Down
Loading