File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,8 @@ script:
164
164
- ${CABAL} v2-build $WITHCOMPILER --disable-tests --disable-benchmarks --constraint='reflex -use-template-haskell' all | color_cabal_output
165
165
# Constraint set old-these
166
166
- ${CABAL} v2-build $WITHCOMPILER --disable-tests --disable-benchmarks --constraint='these <1' all | color_cabal_output
167
+ # Constraint set old-witherable
168
+ - ${CABAL} v2-build $WITHCOMPILER --disable-tests --disable-benchmarks --constraint='witherable <0.3.2' all | color_cabal_output
167
169
168
170
# REGENDATA ["--config=cabal.haskell-ci","cabal.project"]
169
171
# EOF
Original file line number Diff line number Diff line change @@ -11,3 +11,6 @@ constraint-set no-th
11
11
12
12
constraint-set old-these
13
13
constraints: these <1
14
+
15
+ constraint-set old-witherable
16
+ constraints: witherable <0.3.2
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ library
74
74
time >= 1.4 && < 1.9 ,
75
75
transformers >= 0.5.6.0 && < 0.6 ,
76
76
unbounded-delays >= 0.1.0.0 && < 0.2 ,
77
- witherable >= 0.2 && < 0.3
77
+ witherable >= 0.2 && < 0.4
78
78
79
79
if flag(split-these)
80
80
build-depends : these >= 1 && < 1.1 ,
Original file line number Diff line number Diff line change @@ -46,8 +46,10 @@ _unAppendMap = getMonoidalMap
46
46
pattern AppendMap :: Map k v -> MonoidalMap k v
47
47
pattern AppendMap m = MonoidalMap m
48
48
49
+ #if !MIN_VERSION_witherable(0,3,2)
49
50
instance W. Filterable (MonoidalMap k ) where
50
51
mapMaybe = mapMaybe
52
+ #endif
51
53
52
54
-- | Deletes a key, returning 'Nothing' if the result is empty.
53
55
nonEmptyDelete :: Ord k => k -> MonoidalMap k a -> Maybe (MonoidalMap k a )
You can’t perform that action at this time.
0 commit comments