Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relax safe bounds, Fixes #3543. #3549

Merged
merged 3 commits into from
Dec 6, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ before_install:
fi

install:
- which cabal
- which ghc
- cabal --version
- echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"
- if [ -f $HOME/.cabal/packages/hackage.haskell.org/00-index.tar.gz ];
Expand Down
9 changes: 8 additions & 1 deletion idris.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,6 @@ Library
, vector < 0.12
, vector-binary-instances < 0.3
, zip-archive > 0.2.3.5 && < 0.4
, safe == 0.3.9
, fsnotify >= 0.2 && < 2.2
, async < 2.2

Expand All @@ -302,6 +301,14 @@ Library
else
build-depends: process < 1.5

-- safe 0.3.10 is having issues with cabal 1.20 and ghc 7.6.3, the
-- hvr ghc ppa doesn't provide a new enough cabal library. Temporary
-- fix until hvr ghc ppa is fixed or we deprecate support for 7.6.3.
if impl(ghc < 7.8.4)
build-depends: safe == 0.3.9
else
build-depends: safe >= 0.3.9

Extensions: MultiParamTypeClasses
, DeriveFoldable
, DeriveTraversable
Expand Down