From 6be1c4b187313904b7d8ee2ee1ad2839fe62a208 Mon Sep 17 00:00:00 2001 From: Teo Camarasu Date: Wed, 30 Oct 2024 17:53:10 +0000 Subject: [PATCH 1/2] Relax bounds --- decision-diagrams.cabal | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/decision-diagrams.cabal b/decision-diagrams.cabal index 123eac5..62d4208 100644 --- a/decision-diagrams.cabal +++ b/decision-diagrams.cabal @@ -50,12 +50,12 @@ library ViewPatterns build-depends: base >=4.11.0.0 && <5 - , containers >=0.5.11.0 && <0.7 - , hashable >=1.2.7.0 && <1.5 + , containers >=0.5.11.0 && <0.8 + , hashable >=1.2.7.0 && <1.6 , hashtables >=1.2.3.1 && <1.4 , intern >=0.9.1.2 && <1.0.0.0 , mwc-random >=0.13.6.0 && <0.16 - , primitive >=0.6.3.0 && <0.8 + , primitive >=0.6.3.0 && <0.10 , random >=1.1 && <1.3 , reflection >=2.1.4 && <2.2 , unordered-containers >=0.2.9.0 && <0.3 @@ -76,7 +76,7 @@ test-suite decision-diagrams-doctest ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base >=4.11.0.0 && <5 - , containers >=0.5.11.0 && <0.7 + , containers >=0.5.11.0 && <0.8 , decision-diagrams , doctest , mwc-random >=0.13.6.0 && <0.16 @@ -101,17 +101,17 @@ test-suite decision-diagrams-test TemplateHaskell ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: - QuickCheck >=2.11.3 && <2.15 + QuickCheck >=2.11.3 && <2.16 , base >=4.11.0.0 && <5 , containers >=0.5.11.0 && <0.7 , decision-diagrams - , deepseq >=1.4.3.0 && <1.5 + , deepseq >=1.4.3.0 && <1.6 , mwc-random >=0.13.6.0 && <0.16 , quickcheck-instances >=0.3.19 && <0.4 , statistics >=0.14.0.2 && <0.17 - , tasty >=1.1.0.4 && <1.5 + , tasty >=1.1.0.4 && <1.6 , tasty-hunit >=0.10.0.1 && <0.11 - , tasty-quickcheck ==0.10.* + , tasty-quickcheck >=0.10 && <0.12 , tasty-th >=0.1.7 && <0.2 , vector >=0.12.0.2 && <0.14 default-language: Haskell2010 From f5bf887302f4b62d60a0574da05ef3eb2ce1f76a Mon Sep 17 00:00:00 2001 From: Masahiro Sakai Date: Tue, 26 Nov 2024 09:19:29 +0900 Subject: [PATCH 2/2] Relax bounds (update package.yaml) --- decision-diagrams.cabal | 2 +- package.yaml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/decision-diagrams.cabal b/decision-diagrams.cabal index 62d4208..5228680 100644 --- a/decision-diagrams.cabal +++ b/decision-diagrams.cabal @@ -103,7 +103,7 @@ test-suite decision-diagrams-test build-depends: QuickCheck >=2.11.3 && <2.16 , base >=4.11.0.0 && <5 - , containers >=0.5.11.0 && <0.7 + , containers >=0.5.11.0 && <0.8 , decision-diagrams , deepseq >=1.4.3.0 && <1.6 , mwc-random >=0.13.6.0 && <0.16 diff --git a/package.yaml b/package.yaml index fd7ea29..715fd3a 100644 --- a/package.yaml +++ b/package.yaml @@ -21,7 +21,7 @@ description: Please see the README on GitHub at =4.11.0.0 && <5 -- containers >=0.5.11.0 && <0.7 +- containers >=0.5.11.0 && <0.8 - mwc-random >=0.13.6.0 && <0.16 other-extensions: @@ -36,10 +36,10 @@ library: other-modules: - Data.DecisionDiagram.BDD.Internal.Node dependencies: - - hashable >=1.2.7.0 && <1.5 + - hashable >=1.2.7.0 && <1.6 - hashtables >=1.2.3.1 && <1.4 - intern >=0.9.1.2 && <1.0.0.0 - - primitive >=0.6.3.0 && <0.9 + - primitive >=0.6.3.0 && <0.10 - random >=1.1 && <1.3 - reflection >=2.1.4 && <2.2 - unordered-containers >=0.2.9.0 && <0.3 @@ -64,13 +64,13 @@ tests: - -with-rtsopts=-N dependencies: - decision-diagrams - - deepseq >=1.4.3.0 && <1.5 - - QuickCheck >=2.11.3 && <2.15 + - deepseq >=1.4.3.0 && <1.6 + - QuickCheck >=2.11.3 && <2.16 - quickcheck-instances >=0.3.19 && <0.4 - statistics >=0.14.0.2 && <0.17 - - tasty >=1.1.0.4 && <1.5 + - tasty >=1.1.0.4 && <1.6 - tasty-hunit >=0.10.0.1 && <0.11 - - tasty-quickcheck >=0.10 && <0.11 + - tasty-quickcheck >=0.10 && <0.12 - tasty-th >=0.1.7 && <0.2 - vector >=0.12.0.2 && <0.14 other-extensions: