Skip to content

Commit

Permalink
Merge pull request #36 from haskellari/ghc-9.8
Browse files Browse the repository at this point in the history
Support GHC-9.8
  • Loading branch information
phadej committed Oct 13, 2023
2 parents 493368e + c38929f commit a8eb0b2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/simple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:

- name: Set up Haskell
id: setup-haskell
uses: haskell/actions/setup@v1
uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: '3.8.1.0'
cabal-version: '3.10.1.0'

- name: Cache
uses: actions/cache@v2.1.3
Expand Down
17 changes: 9 additions & 8 deletions lukko.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 2.2
name: lukko
version: 0.1.1.3
x-revision: 4
x-revision: 5
synopsis: File locking
category: System, Concurrency
description:
Expand Down Expand Up @@ -60,9 +60,10 @@ tested-with:
|| ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.7
|| ==9.4.4
|| ==9.6.1
|| ==9.2.8
|| ==9.4.7
|| ==9.6.3
|| ==9.8.1

source-repository head
type: git
Expand All @@ -77,7 +78,7 @@ flag ofd-locking
library
default-language: Haskell2010
hs-source-dirs: src
build-depends: base >=4.5 && <4.19
build-depends: base >=4.5 && <4.20
build-tool-depends: hsc2hs:hsc2hs >=0.67 && <0.69

-- Main library module
Expand Down Expand Up @@ -126,10 +127,10 @@ test-suite test-thread
build-depends:
, async ^>=2.2.2
, base
, filepath ^>=1.3.0.0 || ^>=1.4.0.0
, filepath ^>=1.3.0.0 || ^>=1.4.0.0
, lukko
, singleton-bool ^>=0.1.5
, tasty ^>=1.4.0.1
, tasty >=1.4.0.1 && <1.5 || ^>=1.5
, tasty-expected-failure ^>=0.11.1.2 || ^>=0.12.2
, tasty-hunit ^>=0.10.0.2
, temporary ^>=1.3
Expand All @@ -155,7 +156,7 @@ test-suite test-process
ghc-options: -threaded
build-depends:
, base
, bytestring >=0.9.2.1 && <0.12
, bytestring >=0.9.2.1 && <0.13
, lukko

if os(windows)
Expand Down

0 comments on commit a8eb0b2

Please sign in to comment.