Skip to content

Commit

Permalink
Allow building with GHC 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanGlScott committed May 24, 2016
1 parent ecbf5dc commit 948d8f3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,15 @@ matrix:
- env: CABALVER=1.22 GHCVER=7.10.3
compiler: ": #GHC 7.10.3"
addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.3], sources: [hvr-ghc]}}
- env: CABALVER=1.24 GHCVER=8.0.1
compiler: ": #GHC 8.0.1"
addons: {apt: {packages: [cabal-install-1.24,ghc-8.0.1], sources: [hvr-ghc]}}
- env: CABALVER=head GHCVER=head
compiler: ": #GHC head"
addons: {apt: {packages: [cabal-install-head,ghc-head], sources: [hvr-ghc]}}

allow_failures:
- env: CABALVER=1.24 GHCVER=8.0.1
- env: CABALVER=head GHCVER=head

before_install:
Expand Down
2 changes: 1 addition & 1 deletion example/kansas-comet-example.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ data-files:

Executable kansas-comet-example
Other-Modules: Paths_kansas_comet_example
Build-Depends: base >= 4.6 && < 4.9,
Build-Depends: base >= 4.6 && < 4.10,
aeson >= 0.9 && < 0.12,
data-default-class >= 0.0.1 && < 0.2,
scotty >= 0.10 && < 0.12,
Expand Down
6 changes: 3 additions & 3 deletions kansas-comet.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ Library
other-modules: Paths_kansas_comet
default-language: Haskell2010
build-depends: aeson >= 0.9 && < 0.12,
base >= 4.6 && < 4.9,
base >= 4.6 && < 4.10,
containers >= 0.4 && < 0.6,
data-default-class >= 0.0.1 && < 0.2,
scotty >= 0.10 && < 0.12,
stm >= 2.2 && < 2.5,
text >= 0.11.3.1 && < 1.6,
time >= 1.2 && < 1.6,
transformers >= 0.3 && < 0.5,
time >= 1.2 && < 1.7,
transformers >= 0.3 && < 0.6,
unordered-containers >= 0.2.3 && < 0.3

GHC-options: -Wall
Expand Down

0 comments on commit 948d8f3

Please sign in to comment.