remove upper bounds (#171)

* remove upper bounds

* work with stackage nightly

* Add nightly build
This commit is contained in:
Matt Parsons 2020-01-24 13:23:26 -07:00 committed by GitHub
parent 3fcc965de7
commit 951bb21c1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 29 additions and 6 deletions

View File

@ -21,6 +21,11 @@ env:
- GHCVER=8.2 - GHCVER=8.2
- GHCVER=8.4 - GHCVER=8.4
- GHCVER=8.6 - GHCVER=8.6
- GHCVER=nightly
jobs:
allow_failures:
- GHCVER=nightly
install: install:
- export STACK_YAML=stack-$GHCVER.yaml - export STACK_YAML=stack-$GHCVER.yaml

View File

@ -95,7 +95,7 @@ test-suite mysql
, resourcet >=1.2 , resourcet >=1.2
, tagged >=0.2 , tagged >=0.2
, text >=0.11 && <1.3 , text >=0.11 && <1.3
, time >=1.5.0.1 && <=1.8.0.2 , time
, transformers >=0.2 , transformers >=0.2
, unliftio , unliftio
, unordered-containers >=0.2 , unordered-containers >=0.2
@ -132,7 +132,7 @@ test-suite postgresql
, resourcet >=1.2 , resourcet >=1.2
, tagged >=0.2 , tagged >=0.2
, text >=0.11 && <1.3 , text >=0.11 && <1.3
, time >=1.5.0.1 && <=1.8.0.2 , time
, transformers >=0.2 , transformers >=0.2
, unliftio , unliftio
, unordered-containers >=0.2 , unordered-containers >=0.2
@ -166,7 +166,7 @@ test-suite sqlite
, resourcet >=1.2 , resourcet >=1.2
, tagged >=0.2 , tagged >=0.2
, text >=0.11 && <1.3 , text >=0.11 && <1.3
, time >=1.5.0.1 && <=1.8.0.2 , time
, transformers >=0.2 , transformers >=0.2
, unliftio , unliftio
, unordered-containers >=0.2 , unordered-containers >=0.2

View File

@ -1,4 +1,4 @@
{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE DerivingStrategies, FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GADTs #-} {-# LANGUAGE GADTs #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-}

4
stack-nightly.yaml Normal file
View File

@ -0,0 +1,4 @@
resolver: nightly-2020-01-24
packages:
- '.'
- 'examples'

12
stack-nightly.yaml.lock Normal file
View File

@ -0,0 +1,12 @@
# This file was autogenerated by Stack.
# You should not edit this file by hand.
# For more information, please see the documentation at:
# https://docs.haskellstack.org/en/stable/lock_files
packages: []
snapshots:
- completed:
size: 467884
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/nightly/2020/1/24.yaml
sha256: 55c1a4fc9222bc3b8cf91461f38e2641da675a7296f06528f47340c19d0c6e85
original: nightly-2020-01-24

View File

@ -1,7 +1,7 @@
{-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-deprecations #-} {-# OPTIONS_GHC -fno-warn-deprecations #-}
{-# LANGUAGE ConstraintKinds {-# LANGUAGE ConstraintKinds
, CPP , CPP, DerivingStrategies, StandaloneDeriving
, TypeApplications , TypeApplications
, PartialTypeSignatures , PartialTypeSignatures
, UndecidableInstances , UndecidableInstances

View File

@ -1,6 +1,8 @@
{-# LANGUAGE FlexibleContexts {-# LANGUAGE FlexibleContexts
, GADTs , GADTs
, GeneralizedNewtypeDeriving , GeneralizedNewtypeDeriving
, DerivingStrategies
, StandaloneDeriving
, MultiParamTypeClasses , MultiParamTypeClasses
, OverloadedStrings , OverloadedStrings
, QuasiQuotes , QuasiQuotes

View File

@ -1,4 +1,4 @@
{-# LANGUAGE UndecidableInstances #-} {-# LANGUAGE UndecidableInstances, DerivingStrategies #-}
module Lib where module Lib where
import Control.Monad.IO.Class (MonadIO) import Control.Monad.IO.Class (MonadIO)