Skip to content

Commit

Permalink
Drop GHC <=7.4.x
Browse files Browse the repository at this point in the history
Seeing as 7.8 is coming out and 7.6 has been out for a long time, we're
dropping 7.4. The motivation is that having to consider multiple
versions of ‘base’ and not being able to use no-longer-new language
extensions is not cool. You shouldn't really be hacking on current
Haskell software with a few-years-old compiler anyway.
  • Loading branch information
Fuuzetsu committed Dec 24, 2013
1 parent 0e85094 commit dd3ba34
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ matrix:
- env: GHCVER=head

env:
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=head

Expand Down
2 changes: 1 addition & 1 deletion yi-contrib/yi-contrib.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ maintainer: yi-devel@googlegroups.com
homepage: http://haskell.org/haskellwiki/Yi
bug-reports: http://code.google.com/p/yi-editor/issues/list
Cabal-Version: >= 1.6
tested-with: GHC==7.4.2
tested-with: GHC==7.6.3
build-type: Simple

library
Expand Down
9 changes: 4 additions & 5 deletions yi/yi.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ maintainer: yi-devel@googlegroups.com
homepage: http://haskell.org/haskellwiki/Yi
bug-reports: http://code.google.com/p/yi-editor/issues/list
Cabal-Version: >= 1.10
tested-with: GHC==7.4.2, GHC==7.6.1
tested-with: GHC==7.6.3
build-type: Simple
data-files:
art/*.png
Expand Down Expand Up @@ -343,14 +343,14 @@ library
cpp-options: -DSCION
exposed-modules: Yi.Scion
build-depends: scion == 0.1.*,
ghc >= 7,
ghc >= 7.6,
ghc-syb-utils

if flag (ghcAPI)
cpp-options: -DGHC_API

build-depends:
ghc >= 7,
ghc >= 7.6,
ghc-paths ==0.1.*,
old-time >= 1.1.0.0,
rosezipper >= 0.1 && < 0.3,
Expand Down Expand Up @@ -415,7 +415,7 @@ executable yi

if flag(dochack)
buildable: False

if flag(profiling)
cpp-options: -DPROFILING

Expand Down Expand Up @@ -443,4 +443,3 @@ Test-Suite test-suite
filepath,
directory,
yi

0 comments on commit dd3ba34

Please sign in to comment.