Skip to content

Commit

Permalink
Test with GHC 9.10.1, drop 9.4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkkrp committed Jun 13, 2024
1 parent fa697f4 commit c1aaff3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
cabal: ["3.10"]
ghc: ["9.4.7", "9.6.3", "9.8.1"]
ghc: ["9.6.3", "9.8.2", "9.10.1"]
env:
CONFIG: "--enable-tests --enable-benchmarks --flags=dev"
steps:
Expand Down
10 changes: 6 additions & 4 deletions req.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license: BSD-3-Clause
license-file: LICENSE.md
maintainer: Mark Karpov <[email protected]>
author: Mark Karpov <[email protected]>
tested-with: ghc ==9.4.7 ghc ==9.6.3 ghc ==9.8.1
tested-with: ghc ==9.6.3 ghc ==9.8.2 ghc ==9.10.1
homepage: https://github.com/mrkkrp/req
bug-reports: https://github.com/mrkkrp/req/issues
synopsis: HTTP client library
Expand Down Expand Up @@ -51,14 +51,16 @@ library
monad-control >=1.0 && <1.1,
mtl >=2.0 && <3.0,
retry >=0.8 && <0.10,
template-haskell >=2.19 && <2.22,
template-haskell >=2.19 && <2.23,
text >=0.2 && <2.2,
transformers >=0.5.3.0 && <0.7,
transformers-base,
unliftio-core >=0.1.1 && <0.3

if flag(dev)
ghc-options: -Wall -Werror -Wpartial-fields -Wunused-packages
ghc-options:
-Wall -Werror -Wpartial-fields -Wunused-packages
-Wno-unused-imports

else
ghc-options: -O2 -Wall
Expand All @@ -85,7 +87,7 @@ test-suite pure-tests
modern-uri >=0.3 && <0.4,
req,
retry >=0.8 && <0.10,
template-haskell >=2.19 && <2.22,
template-haskell >=2.19 && <2.23,
text >=0.2 && <2.2,
time >=1.2 && <1.13

Expand Down

0 comments on commit c1aaff3

Please sign in to comment.