diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-01-05 13:57:12 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-01-05 13:57:35 -0800 |
commit | a81b0932e54b7170bcf262d566b35446ed442506 (patch) | |
tree | e086bacb77b9483ae45391833426b0d1aa48b47f | |
parent | e792920d4a8d440010e1208b28239b7811090583 (diff) | |
download | pandoc-a81b0932e54b7170bcf262d566b35446ed442506.tar.gz |
Go back to testing with ghc 7.10.2.
Avoids the dreaded "the version of cabal being used has
changed" error.
https://www.reddit.com/r/haskell/comments/3f4bgr/the_version_of_cabal_being_used_has_changed/
-rw-r--r-- | .travis.yml | 6 | ||||
-rw-r--r-- | pandoc.cabal | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 4e2c3276f..2901288e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,9 +22,9 @@ matrix: - env: CABALVER=1.18 GHCVER=7.8.4 GHCOPTS=-Werror compiler: ": #GHC 7.8.4" addons: {apt: {packages: [cabal-install-1.18,ghc-7.8.4], sources: [hvr-ghc]}} - - env: CABALVER=1.22 GHCVER=7.10.3 GHCOPTS=-Werror - compiler: ": #GHC 7.10.3" - addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.3], sources: [hvr-ghc]}} + - env: CABALVER=1.22 GHCVER=7.10.2 GHCOPTS=-Werror + compiler: ": #GHC 7.10.2" + addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.2], sources: [hvr-ghc]}} before_install: - unset CC diff --git a/pandoc.cabal b/pandoc.cabal index 8df7923ab..e0b4f6021 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -11,7 +11,7 @@ Bug-Reports: https://github.com/jgm/pandoc/issues Stability: alpha Homepage: http://pandoc.org Category: Text -Tested-With: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3 +Tested-With: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2 Synopsis: Conversion between markup formats Description: Pandoc is a Haskell library for converting from one markup format to another, and a command-line tool that uses |