Skip to content

Commit 0a11b0e

Browse files
authored
Merge pull request #36 from TeofilC/relax-bounds
Relax bounds
2 parents 6975eaf + f5bf887 commit 0a11b0e

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

decision-diagrams.cabal

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ library
5050
ViewPatterns
5151
build-depends:
5252
base >=4.11.0.0 && <5
53-
, containers >=0.5.11.0 && <0.7
54-
, hashable >=1.2.7.0 && <1.5
53+
, containers >=0.5.11.0 && <0.8
54+
, hashable >=1.2.7.0 && <1.6
5555
, hashtables >=1.2.3.1 && <1.4
5656
, intern >=0.9.1.2 && <1.0.0.0
5757
, mwc-random >=0.13.6.0 && <0.16
58-
, primitive >=0.6.3.0 && <0.8
58+
, primitive >=0.6.3.0 && <0.10
5959
, random >=1.1 && <1.3
6060
, reflection >=2.1.4 && <2.2
6161
, unordered-containers >=0.2.9.0 && <0.3
@@ -76,7 +76,7 @@ test-suite decision-diagrams-doctest
7676
ghc-options: -threaded -rtsopts -with-rtsopts=-N
7777
build-depends:
7878
base >=4.11.0.0 && <5
79-
, containers >=0.5.11.0 && <0.7
79+
, containers >=0.5.11.0 && <0.8
8080
, decision-diagrams
8181
, doctest
8282
, mwc-random >=0.13.6.0 && <0.16
@@ -101,17 +101,17 @@ test-suite decision-diagrams-test
101101
TemplateHaskell
102102
ghc-options: -threaded -rtsopts -with-rtsopts=-N
103103
build-depends:
104-
QuickCheck >=2.11.3 && <2.15
104+
QuickCheck >=2.11.3 && <2.16
105105
, base >=4.11.0.0 && <5
106-
, containers >=0.5.11.0 && <0.7
106+
, containers >=0.5.11.0 && <0.8
107107
, decision-diagrams
108-
, deepseq >=1.4.3.0 && <1.5
108+
, deepseq >=1.4.3.0 && <1.6
109109
, mwc-random >=0.13.6.0 && <0.16
110110
, quickcheck-instances >=0.3.19 && <0.4
111111
, statistics >=0.14.0.2 && <0.17
112-
, tasty >=1.1.0.4 && <1.5
112+
, tasty >=1.1.0.4 && <1.6
113113
, tasty-hunit >=0.10.0.1 && <0.11
114-
, tasty-quickcheck ==0.10.*
114+
, tasty-quickcheck >=0.10 && <0.12
115115
, tasty-th >=0.1.7 && <0.2
116116
, vector >=0.12.0.2 && <0.14
117117
default-language: Haskell2010

package.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ description: Please see the README on GitHub at <https://github.com/msak
2121

2222
dependencies:
2323
- base >=4.11.0.0 && <5
24-
- containers >=0.5.11.0 && <0.7
24+
- containers >=0.5.11.0 && <0.8
2525
- mwc-random >=0.13.6.0 && <0.16
2626

2727
other-extensions:
@@ -36,10 +36,10 @@ library:
3636
other-modules:
3737
- Data.DecisionDiagram.BDD.Internal.Node
3838
dependencies:
39-
- hashable >=1.2.7.0 && <1.5
39+
- hashable >=1.2.7.0 && <1.6
4040
- hashtables >=1.2.3.1 && <1.4
4141
- intern >=0.9.1.2 && <1.0.0.0
42-
- primitive >=0.6.3.0 && <0.9
42+
- primitive >=0.6.3.0 && <0.10
4343
- random >=1.1 && <1.3
4444
- reflection >=2.1.4 && <2.2
4545
- unordered-containers >=0.2.9.0 && <0.3
@@ -64,13 +64,13 @@ tests:
6464
- -with-rtsopts=-N
6565
dependencies:
6666
- decision-diagrams
67-
- deepseq >=1.4.3.0 && <1.5
68-
- QuickCheck >=2.11.3 && <2.15
67+
- deepseq >=1.4.3.0 && <1.6
68+
- QuickCheck >=2.11.3 && <2.16
6969
- quickcheck-instances >=0.3.19 && <0.4
7070
- statistics >=0.14.0.2 && <0.17
71-
- tasty >=1.1.0.4 && <1.5
71+
- tasty >=1.1.0.4 && <1.6
7272
- tasty-hunit >=0.10.0.1 && <0.11
73-
- tasty-quickcheck >=0.10 && <0.11
73+
- tasty-quickcheck >=0.10 && <0.12
7474
- tasty-th >=0.1.7 && <0.2
7575
- vector >=0.12.0.2 && <0.14
7676
other-extensions:

0 commit comments

Comments
 (0)