From a9dd329c2f65fbd5aa18cf9f3d5b2e0785a730be Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Wed, 19 Jul 2023 12:33:23 +0200 Subject: [PATCH] Fix lower bounds of HUnit and base Fixes #65. Fixes #66. --- hspec-expectations.cabal | 4 ++-- package.yaml | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/hspec-expectations.cabal b/hspec-expectations.cabal index c9e3ea5..4bfad9a 100644 --- a/hspec-expectations.cabal +++ b/hspec-expectations.cabal @@ -27,7 +27,7 @@ library src ghc-options: -Wall build-depends: - HUnit + HUnit >=1.5.0.0 , base ==4.* , call-stack exposed-modules: @@ -47,7 +47,7 @@ test-suite spec ghc-options: -Wall build-depends: HUnit >=1.5.0.0 - , base ==4.* + , base >=4.8 , call-stack , nanospec other-modules: diff --git a/package.yaml b/package.yaml index 9b879fd..534a5eb 100644 --- a/package.yaml +++ b/package.yaml @@ -15,11 +15,10 @@ ghc-options: -Wall dependencies: - base == 4.* - call-stack + - HUnit >= 1.5.0.0 library: source-dirs: src - dependencies: - - HUnit exposed-modules: - Test.Hspec.Expectations - Test.Hspec.Expectations.Contrib @@ -31,5 +30,5 @@ tests: - test - src dependencies: + - base >= 4.8 - nanospec - - HUnit >= 1.5.0.0