Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
Packages
parsec
Commits
f1171a4b
Unverified
Commit
f1171a4b
authored
May 10, 2022
by
Oleg Grenrus
Committed by
GitHub
May 10, 2022
Browse files
Merge pull request #154 from haskell/mtl-2.3
Allow mtl-2.3
parents
4031676e
0ada72f7
Changes
3
Show whitespace changes
Inline
Side-by-side
.github/workflows/haskell-ci.yml
View file @
f1171a4b
...
...
@@ -259,3 +259,11 @@ jobs:
run
:
|
rm -f cabal.project.local
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
-
name
:
prepare for constraint sets
run
:
|
rm -f cabal.project.local
-
name
:
constraint set mtl-2.3
run
:
|
if [ $((HCNUMVER >= 80600)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='mtl ^>=2.3' --dependencies-only -j2 all ; fi
if [ $((HCNUMVER >= 80600)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='mtl ^>=2.3' all ; fi
if [ $((HCNUMVER >= 80600)) -ne 0 ] ; then $CABAL v2-test $ARG_COMPILER --enable-tests --disable-benchmarks --constraint='mtl ^>=2.3' all ; fi
cabal.haskell-ci
View file @
f1171a4b
branches: master
constraint-set mtl-2.3
ghc: >=8.6
constraints: mtl ^>=2.3
tests: True
run-tests: True
parsec.cabal
View file @
f1171a4b
cabal-version: 1.12
name: parsec
version: 3.1.15.
0
version: 3.1.15.
1
synopsis: Monadic parser combinators
description: Parsec is designed from scratch as an industrial-strength parser
...
...
@@ -65,7 +65,7 @@ library
build-depends:
base >= 4.5.1.0 && < 4.18,
mtl >= 2.1.3.1 && < 2.
3
,
mtl >= 2.1.3.1 && < 2.
4
,
bytestring >= 0.9.2.1 && < 0.12,
text (>= 1.2.3.0 && < 1.3)
|| (>= 2.0 && < 2.1)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment