Skip to content

Commit aa60929

Browse files
committed
Proposed revision 2: move process constraint from Cabal to cabal-install
Fixes #8554
1 parent 2beee0b commit aa60929

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Cabal/Cabal.cabal

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
cabal-version: 1.22
22
name: Cabal
33
version: 3.8.1.0
4+
x-revision: 2
45
copyright: 2003-2022, Cabal Development Team (see AUTHORS file)
56
license: BSD3
67
license-file: LICENSE
@@ -48,7 +49,7 @@ library
4849

4950
-- pull in process version with fixed waitForProcess error
5051
if impl(ghc >=8.2)
51-
build-depends: process >= 1.6.14.0
52+
build-depends: process >= 1.2.1.0
5253

5354
if os(windows)
5455
build-depends: Win32 >= 2.3.0.0 && < 2.14

cabal-install/cabal-install.cabal

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Cabal-Version: 2.2
22

33
Name: cabal-install
44
Version: 3.8.1.0
5+
x-revision: 3
56
Synopsis: The command-line interface for Cabal and Hackage.
67
Description:
78
The \'cabal\' command-line program simplifies the process of managing
@@ -216,7 +217,8 @@ library
216217
mtl >= 2.0 && < 2.3,
217218
network-uri >= 2.6.0.2 && < 2.7,
218219
pretty >= 1.1 && < 1.2,
219-
process >= 1.2.3.0 && < 1.7,
220+
-- process lower bound moved from Cabal-3.8.1.0 to here:
221+
process >= 1.6.14.0 && < 1.7,
220222
random >= 1.2 && < 1.3,
221223
stm >= 2.0 && < 2.6,
222224
tar >= 0.5.0.3 && < 0.6,

0 commit comments

Comments
 (0)