Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .ci/cabal.project.local-upper
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ constraints:
integer-gmp installed,
template-haskell installed

allow-newer:
containers,

constraints:
containers == 0.8,
attoparsec >= 0.14.4,
hashable >= 1.4.0.1,
2 changes: 1 addition & 1 deletion .ci/stack-9.10.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
resolver: nightly-2025-03-06
resolver: lts-24.26
ghc-options:
"$locals": -Werror -Wall -Wcompat -Wno-name-shadowing
3 changes: 3 additions & 0 deletions .ci/stack-9.12.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
resolver: nightly-2025-12-30
ghc-options:
"$locals": -Werror -Wall -Wcompat -Wno-name-shadowing
2 changes: 1 addition & 1 deletion .ci/stack-9.6.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
resolver: lts-22.43
resolver: lts-22.44
ghc-options:
"$locals": -Werror -Wall -Wcompat -Wno-name-shadowing
2 changes: 1 addition & 1 deletion .ci/stack-9.8.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
resolver: lts-23.11
resolver: lts-23.28
ghc-options:
"$locals": -Werror -Wall -Wcompat -Wno-name-shadowing
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
# TODO: "8.0", "8.2", "8.4", "8.6"
ghc: ["8.8", "8.10", "9.0", "9.2", "9.4", "9.6", "9.8", "9.10"]
ghc: ["8.8", "8.10", "9.0", "9.2", "9.4", "9.6", "9.8", "9.10", "9.12"]
fail-fast: false
steps:
- name: Checkout
Expand Down Expand Up @@ -86,15 +86,15 @@ jobs:
- "9.0.2"
- "9.2.8"
- "9.4.8"
- "9.6.6"
- "9.6.7"
- "9.8.4"
- "9.10.1"
- "9.12.1"
- "9.10.3"
- "9.12.2"
project-variant: [""]
include:
- ghc: 8.0.2
project-variant: -lower
- ghc: 9.12.1
- ghc: 9.14.1
project-variant: -upper

fail-fast: false
Expand Down
11 changes: 6 additions & 5 deletions docopt.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ tested-with:
GHC == 9.0.2,
GHC == 9.2.8,
GHC == 9.4.8,
GHC == 9.6.6,
GHC == 9.6.7,
GHC == 9.8.4,
GHC == 9.10.1,
GHC == 9.12.1
GHC == 9.10.4,
GHC == 9.12.2,
GHC == 9.14.1

category: Console

Expand All @@ -44,7 +45,7 @@ source-repository head
source-repository this
type: git
location: https://github.com/docopt/docopt.hs.git
tag: v0.7.0.8+r2
tag: v0.7.0.8+r3

library
exposed-modules: System.Console.Docopt.NoTH
Expand All @@ -62,7 +63,7 @@ library
build-depends: base >= 4.9 && < 5.0,
parsec >= 3.1.14 && < 3.2,
containers >= 0.6.2 && < 0.9,
template-haskell >= 2.11.0 && < 2.24
template-haskell >= 2.11.0 && < 2.25

ghc-options: -Wall -Wno-name-shadowing

Expand Down