From d74bba244d9d7c83b3a0ef5159b4e2e0fa7df07b Mon Sep 17 00:00:00 2001 From: Tom Ellis Date: Sat, 11 May 2024 18:15:31 +0100 Subject: [PATCH] Bump to base < 4.21 (to support GHC 9.10) --- .github/workflows/tests.yml | 1 + process.cabal | 2 +- test/process-tests.cabal | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 95f37f8d..97c08095 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,6 +20,7 @@ jobs: - { os: windows-latest, arch: x64 } ghc-version: - 'latest' + - '9.10' - '9.8' - '9.6' - '9.4' diff --git a/process.cabal b/process.cabal index fe37632b..5a593781 100644 --- a/process.cabal +++ b/process.cabal @@ -90,7 +90,7 @@ library ghc-options: -Wall - build-depends: base >= 4.10 && < 4.20, + build-depends: base >= 4.10 && < 4.21, directory >= 1.1 && < 1.4, filepath >= 1.2 && < 1.6, deepseq >= 1.1 && < 1.6 diff --git a/test/process-tests.cabal b/test/process-tests.cabal index 1fae173c..fb7c7fca 100644 --- a/test/process-tests.cabal +++ b/test/process-tests.cabal @@ -22,7 +22,7 @@ common process-dep custom-setup setup-depends: - base >= 4.10 && < 4.20, + base >= 4.10 && < 4.21, directory >= 1.1 && < 1.4, filepath >= 1.2 && < 1.6, Cabal >= 2.4 && < 3.12,