Make it build with ghc-9.8

This commit is contained in:
Erik de Castro Lopo 2023-11-24 15:18:15 +11:00 committed by Ivan Gromakovskii
parent 1c7297492e
commit 0561267c35
No known key found for this signature in database
GPG Key ID: D0180FB62ABC8AA7
2 changed files with 8 additions and 8 deletions

View File

@ -37,8 +37,8 @@ ghc-options:
- -Wredundant-constraints
dependencies:
- base >= 4.10 && < 4.19
- text >= 0.7 && < 2.1
- base >= 4.10 && < 4.20
- text >= 0.7 && < 2.2
library:
source-dirs: lib

View File

@ -48,9 +48,9 @@ library
lib
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
build-depends:
base >=4.10 && <4.19
base >=4.10 && <4.20
, safe-exceptions ==0.1.*
, text >=0.7 && <2.1
, text >=0.7 && <2.2
default-language: Haskell2010
executable utf8-troubleshoot
@ -63,12 +63,12 @@ executable utf8-troubleshoot
c-sources:
app/utf8-troubleshoot/cbits/locale.c
build-depends:
base >=4.10 && <4.19
base >=4.10 && <4.20
, directory >=1.2.5.0 && <1.4
, filepath >=1.0 && <1.5
, process >=1.0.1.1 && <1.7
, safe-exceptions
, text >=0.7 && <2.1
, text >=0.7 && <2.2
, th-env >=0.1.0.0 && <0.2
default-language: Haskell2010
@ -89,7 +89,7 @@ test-suite with-utf8-test
tasty-discover:tasty-discover
build-depends:
HUnit
, base >=4.10 && <4.19
, base >=4.10 && <4.20
, deepseq
, hedgehog
, safe-exceptions
@ -97,7 +97,7 @@ test-suite with-utf8-test
, tasty-hedgehog
, tasty-hunit
, temporary
, text >=0.7 && <2.1
, text >=0.7 && <2.2
, unix
, with-utf8
default-language: Haskell2010