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

Remove old GHC version from travis and document policy #249

Merged
merged 3 commits into from
May 22, 2017
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
11 changes: 0 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,6 @@ before_cache:

matrix:
include:
- env: CABALVER=1.16 GHCVER=7.0.4
compiler: ": #GHC 7.0.4"
addons: {apt: {packages: [cabal-install-1.16,ghc-7.0.4], sources: [hvr-ghc]}}
- env: CABALVER=1.16 GHCVER=7.4.2
compiler: ": #GHC 7.4.2"
addons: {apt: {packages: [cabal-install-1.16,ghc-7.4.2], sources: [hvr-ghc]}}
- env: CABALVER=1.16 GHCVER=7.6.3
compiler: ": #GHC 7.6.3"
addons: {apt: {packages: [cabal-install-1.16,ghc-7.6.3], sources: [hvr-ghc]}}
- env: CABALVER=1.18 GHCVER=7.8.4
compiler: ": #GHC 7.8.4"
addons: {apt: {packages: [cabal-install-1.18,ghc-7.8.4], sources: [hvr-ghc]}}
Expand All @@ -41,8 +32,6 @@ matrix:
compiler: ": #GHC head"
addons: {apt: {packages: [cabal-install-1.24,ghc-head], sources: [hvr-ghc]}}
allow_failures:
- env: CABALVER=1.16 GHCVER=7.0.4
- env: CABALVER=1.16 GHCVER=7.4.2
- env: CABALVER=1.24 GHCVER=head


Expand Down
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# [`network`](http://hackage.haskell.org/package/network) [![Build Status](https://travis-ci.org/haskell/network.svg?branch=master)](https://travis-ci.org/haskell/network) [![Build status](https://ci.appveyor.com/api/projects/status/5erq63o4m29bhl57/branch/master?svg=true)](https://ci.appveyor.com/project/eborden/network/branch/master)



To build this package using Cabal directly from git, you must run
`autoreconf` before the usual Cabal build steps
(configure/build/install). `autoreconf` is included in the
[GNU Autoconf](http://www.gnu.org/software/autoconf/) tools. There is
no need to run the `configure` script: the `setup configure` step will
do this for you.

## Support Policy

### GHC

`network`'s GHC policy supports 3 [stable](https://downloads.haskell.org/~ghc/8.0.2/docs/html/users_guide/intro.html#ghc-version-numbering-policy) versions. The current stable
version and two previous stable versions are supported.

### Hugs, JHC, UHC

`network` does not officially support these compilers.
2 changes: 1 addition & 1 deletion network.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ extra-source-files:
cbits/winSockErr.c
homepage: https://github.com/haskell/network
bug-reports: https://github.com/haskell/network/issues
tested-with: GHC == 7.0.4, GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.1, GHC == 7.10.2, GHC == 8.0.1
tested-with: GHC == 7.8.4, GHC == 7.10.1, GHC == 7.10.2, GHC == 8.0.1, GHC == 8.0.2

library
exposed-modules:
Expand Down