Merge pull request #42 from tfausak/gh-41-ghc-9.2.1

This commit is contained in:
Taylor Fausak 2021-11-25 08:28:07 -05:00 committed by GitHub
commit 2f257d10d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View File

@ -14,6 +14,7 @@ jobs:
strategy:
matrix:
include:
- { os: ubuntu-20.04, ghc: 9.2.1, cabal: 3.6.2.0 }
- { os: ubuntu-20.04, ghc: 9.0.1, cabal: 3.4.0.0 }
- { os: macos-10.15, ghc: 9.0.1, cabal: 3.4.0.0 }
- { os: windows-2019, ghc: 9.0.1, cabal: 3.4.0.0 }

View File

@ -18,7 +18,7 @@ source-repository head
common basics
build-depends:
, base >= 4.10.0 && < 4.16
, base >= 4.10.0 && < 4.17
, bytestring >= 0.10.8 && < 0.12
, containers >= 0.5.10 && < 0.7
, text >= 1.2.3 && < 1.3
@ -46,12 +46,16 @@ common basics
ghc-options:
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
if impl(ghc >= 9.2)
ghc-options:
-Wno-missing-kind-signatures
library
import: basics
build-depends:
, template-haskell >= 2.12.0 && < 2.18
, template-haskell >= 2.12.0 && < 2.19
exposed-modules:
Witch
Witch.From