-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #88 from andreasabel/ghc-9.8
Bump deepseq, primitive, text, and CI for GHC 9.8
- Loading branch information
Showing
3 changed files
with
55 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
branches: master ci* | ||
branches: master | ||
|
||
constraint-set bytestring-0.12 | ||
-- bytestring-0.12 requires base >=4.9 (GHC 8.0) | ||
ghc: >= 8.0 | ||
constraints: bytestring >= 0.12 | ||
-- | ||
-- The following is silently ignored here: | ||
-- | ||
-- raw-project | ||
-- allow-newer: bytestring | ||
-- | ||
tests: True | ||
run-tests: True | ||
|
||
-- The following is meant to be for constraint-set bytestring-0.12 only, | ||
-- but there is currently no way to enable `allow-newer: bytestring` | ||
-- just for the constraint set. | ||
-- | ||
-- Since core library `bytestring` is constrained to `installed`, | ||
-- it is not harmful to allow newer `bytestring` in the default runs | ||
-- as well---it will have no effect there. | ||
-- constraint-set bytestring-0.12 | ||
-- -- bytestring-0.12 requires base >=4.9 (GHC 8.0) | ||
-- ghc: >= 8.0 | ||
-- constraints: bytestring >= 0.12 | ||
-- -- | ||
-- -- The following is silently ignored here: | ||
-- -- | ||
-- -- raw-project | ||
-- -- allow-newer: bytestring | ||
-- -- | ||
-- tests: True | ||
-- run-tests: True | ||
-- | ||
raw-project | ||
allow-newer: bytestring | ||
-- -- The following is meant to be for constraint-set bytestring-0.12 only, | ||
-- -- but there is currently no way to enable `allow-newer: bytestring` | ||
-- -- just for the constraint set. | ||
-- -- | ||
-- -- Since core library `bytestring` is constrained to `installed`, | ||
-- -- it is not harmful to allow newer `bytestring` in the default runs | ||
-- -- as well---it will have no effect there. | ||
-- -- | ||
-- raw-project | ||
-- allow-newer: bytestring |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,9 @@ Maintainer: Gregory Collins <[email protected]> | |
Cabal-version: >= 1.10 | ||
Synopsis: Simple, composable, and easy-to-use stream I/O | ||
Tested-With: | ||
GHc == 9.6.2 | ||
GHC == 9.4.5 | ||
GHc == 9.8.1 | ||
GHc == 9.6.3 | ||
GHC == 9.4.7 | ||
GHC == 9.2.8 | ||
GHC == 9.0.2 | ||
GHC == 8.10.7 | ||
|
@@ -19,9 +20,9 @@ Tested-With: | |
GHC == 8.2.2 | ||
GHC == 8.0.2 | ||
GHC == 7.10.3 | ||
GHC == 7.8.4 | ||
GHC == 7.6.3 | ||
GHC == 7.4.2 | ||
-- GHC == 7.8.4 | ||
-- GHC == 7.6.3 | ||
-- GHC == 7.4.2 | ||
|
||
Bug-Reports: https://github.com/snapframework/io-streams/issues | ||
Description: | ||
|
@@ -142,9 +143,9 @@ Library | |
Build-depends: base >= 4 && <5, | ||
attoparsec >= 0.10 && <0.15, | ||
bytestring >= 0.9 && <0.13, | ||
primitive >= 0.2 && <0.9, | ||
primitive >= 0.2 && <0.10, | ||
process >= 1.1 && <1.7, | ||
text >=0.10 && <1.3 || >= 2.0 && <2.1, | ||
text >=0.10 && <1.3 || >= 2.0 && <2.2, | ||
time >= 1.2 && <1.13, | ||
transformers >= 0.2 && <0.7, | ||
vector >= 0.7 && <0.14 | ||
|
@@ -244,7 +245,7 @@ Test-suite testsuite | |
Build-depends: base, | ||
attoparsec, | ||
bytestring, | ||
deepseq >= 1.2 && <1.5, | ||
deepseq >= 1.2 && <1.6, | ||
directory >= 1.1 && <2, | ||
filepath >= 1.2 && <2, | ||
mtl >= 2 && <3, | ||
|