Skip to content

Commit

Permalink
relax bytestring upper bound and update CI (#352)
Browse files Browse the repository at this point in the history
Co-authored-by: Marco Zocca <[email protected]>
  • Loading branch information
ocramz and Marco Zocca authored Dec 1, 2023
1 parent 9e39efe commit e4d8a12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ jobs:
- { cabal: "3.10", os: ubuntu-latest, ghc: "8.10.7" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.0.2" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.2.8" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.4.6", allow-failure: true }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.6.2", allow-failure: true }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.4.6" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.6.2" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.6.3" }
fail-fast: false

steps:
Expand Down
3 changes: 2 additions & 1 deletion scotty.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ tested-with: GHC == 8.10.7
, GHC == 9.2.8
, GHC == 9.4.6
, GHC == 9.6.2
, GHC == 9.6.3
Extra-source-files:
README.md
changelog.md
Expand All @@ -72,7 +73,7 @@ Library
build-depends: aeson >= 0.6.2.1 && < 2.3,
base >= 4.14 && < 5,
blaze-builder >= 0.3.3.0 && < 0.5,
bytestring >= 0.10.0.2 && < 0.12,
bytestring >= 0.10.0.2 && < 0.13,
case-insensitive >= 1.0.0.1 && < 1.3,
cookie >= 0.4,
data-default-class >= 0.1,
Expand Down

0 comments on commit e4d8a12

Please sign in to comment.