From e98bcb8d86583e2820f319a587087df597ba5fa5 Mon Sep 17 00:00:00 2001 From: Mark Karpov Date: Tue, 21 Jan 2025 10:37:37 +0100 Subject: [PATCH] Test with GHC 9.12.1 --- .github/workflows/ci.yaml | 2 +- Text/Megaparsec/Error.hs | 7 ------- megaparsec.cabal | 2 +- 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 456621ca..87c407ca 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,7 +19,7 @@ jobs: strategy: matrix: cabal: ["3.10"] - ghc: ["9.6.3", "9.8.2", "9.10.1"] + ghc: ["9.8.4", "9.10.1", "9.12.1"] env: CONFIG: "--enable-tests --enable-benchmarks --flags=dev" steps: diff --git a/Text/Megaparsec/Error.hs b/Text/Megaparsec/Error.hs index 61e462d7..429cc837 100644 --- a/Text/Megaparsec/Error.hs +++ b/Text/Megaparsec/Error.hs @@ -269,13 +269,6 @@ deriving instance ) => Eq (ParseErrorBundle s e) -deriving instance - ( Typeable s, - Typeable (Token s), - Typeable e - ) => - Typeable (ParseErrorBundle s e) - deriving instance ( Data s, Data (Token s), diff --git a/megaparsec.cabal b/megaparsec.cabal index b8d8aefe..f83ed922 100644 --- a/megaparsec.cabal +++ b/megaparsec.cabal @@ -9,7 +9,7 @@ author: Paolo Martini , Daan Leijen -tested-with: ghc ==9.6.3 ghc ==9.8.2 ghc ==9.10.1 +tested-with: ghc ==9.8.4 ghc ==9.10.1 ghc ==9.12.1 homepage: https://github.com/mrkkrp/megaparsec bug-reports: https://github.com/mrkkrp/megaparsec/issues synopsis: Monadic parser combinators